Before beginning any data analysis, it is imperative for you to load all of the packages you plan to use. The tidyverse package includes many other r packages that are commonly used such a ggplot and dplyr. We will use Leaflet as well when we create a map later on.
The first step in the data curation process is to actually get the data. Kaggle is a great resource for datasets and is where we procured this dataset. It is also possible to scrape datasets from the web, and this dataset was originally made from scrapped data of wine reviews from https://www.winemag.com/. Once you find a dataset you like, download the CSV and put it in your project folder. Once you have done this you can load it using the read.csv command used below.
winedata = read.csv("winemag-data-130k-v2.csv")
Lets explore our data set. Our data set consists of over 100,000 wine reviews with attributes such as country, region, rating, and price. To display the entire data set, simply type the name of your data set, which in our case is winedata. We will be using syntactical sugar available from the dplyr package. This allows us to use piping by doing “%>%” and includes many of the operations we will be using later such as select and filter. For more information on the dplyr package and its features you can refer to the documentation at https://www.rdocumentation.org/packages/dplyr/versions/0.7.8 The code below prints the first few elements of our dataset.
winedata %>%
head()
## X country
## 1 0 Italy
## 2 1 Portugal
## 3 2 US
## 4 3 US
## 5 4 US
## 6 5 Spain
## description
## 1 Aromas include tropical fruit, broom, brimstone and dried herb. The palate isn't overly expressive, offering unripened apple, citrus and dried sage alongside brisk acidity.
## 2 This is ripe and fruity, a wine that is smooth while still structured. Firm tannins are filled out with juicy red berry fruits and freshened with acidity. It's already drinkable, although it will certainly be better from 2016.
## 3 Tart and snappy, the flavors of lime flesh and rind dominate. Some green pineapple pokes through, with crisp acidity underscoring the flavors. The wine was all stainless-steel fermented.
## 4 Pineapple rind, lemon pith and orange blossom start off the aromas. The palate is a bit more opulent, with notes of honey-drizzled guava and mango giving way to a slightly astringent, semidry finish.
## 5 Much like the regular bottling from 2012, this comes across as rather rough and tannic, with rustic, earthy, herbal characteristics. Nonetheless, if you think of it as a pleasantly unfussy country wine, it's a good companion to a hearty winter stew.
## 6 Blackberry and raspberry aromas show a typical Navarran whiff of green herbs and, in this case, horseradish. In the mouth, this is fairly full bodied, with tomatoey acidity. Spicy, herbal flavors complement dark plum fruit, while the finish is fresh but grabby.
## designation points price province
## 1 Vulkà Bianco 87 NA Sicily & Sardinia
## 2 Avidagos 87 15 Douro
## 3 87 14 Oregon
## 4 Reserve Late Harvest 87 13 Michigan
## 5 Vintner's Reserve Wild Child Block 87 65 Oregon
## 6 Ars In Vitro 87 15 Northern Spain
## region_1 region_2 taster_name
## 1 Etna Kerin O’Keefe
## 2 Roger Voss
## 3 Willamette Valley Willamette Valley Paul Gregutt
## 4 Lake Michigan Shore Alexander Peartree
## 5 Willamette Valley Willamette Valley Paul Gregutt
## 6 Navarra Michael Schachner
## taster_twitter_handle
## 1 @kerinokeefe
## 2 @vossroger
## 3 @paulgwine
## 4
## 5 @paulgwine
## 6 @wineschach
## title
## 1 Nicosia 2013 Vulkà Bianco (Etna)
## 2 Quinta dos Avidagos 2011 Avidagos Red (Douro)
## 3 Rainstorm 2013 Pinot Gris (Willamette Valley)
## 4 St. Julian 2013 Reserve Late Harvest Riesling (Lake Michigan Shore)
## 5 Sweet Cheeks 2012 Vintner's Reserve Wild Child Block Pinot Noir (Willamette Valley)
## 6 Tandem 2011 Ars In Vitro Tempranillo-Merlot (Navarra)
## variety winery
## 1 White Blend Nicosia
## 2 Portuguese Red Quinta dos Avidagos
## 3 Pinot Gris Rainstorm
## 4 Riesling St. Julian
## 5 Pinot Noir Sweet Cheeks
## 6 Tempranillo-Merlot Tandem
We notice that our dataset has some unwanted information, which we remove with select.
winedata = winedata %>%
select(-taster_twitter_handle) %>%
select(-description)
Lets take a look at the distribution of wine ratings (rated from 80 to 100). We use group_by and summarize to count the number of wines for each rating value.
winedata %>%
group_by(points) %>%
summarize(n = n()) %>%
ggplot(mapping=aes(x=points, y=n)) +
geom_bar(stat="identity")
What if we want to display only wine reviews from a certain country or a certain province? We can filter our dataset based on attribute values. We can then select certain attributes using the select keyword. Below is an example of filtering our dataset by country (only selecting reviews where the country of origin is Spain) and by points (where the number of points are >90). We then use the select keyword to select only certain attributes to display. Since we filtered based on country and points we will select those attributes as well as identifying attributes to display.
winedata %>%
filter(country == "Spain") %>%
filter(points > 90) %>%
select(country, points, variety, winery) %>%
head()
## country points variety winery
## 1 Spain 91 Graciano Marques de Griñon
## 2 Spain 92 Carignan-Grenache Acústic
## 3 Spain 93 Tempranillo Resalte
## 4 Spain 92 Viura Marqués de Murrieta
## 5 Spain 92 Tempranillo Bodegas Riojanas
## 6 Spain 91 Red Blend Cellers Unió
Let’s start summarizing our dataset in order to get more useful information we can use for data analysis. We are going to need to extract the year from the “title” column in the data set in order to use it with our summarization and plotting. First, we use str_extract to extract the year using regular expressions from the title. https://www.rdocumentation.org/packages/stringr/versions/1.4.0/topics/str_extract is a link to the documentation on the extract method. In the same line we create a new column, year, to store the extracted string. Next, we need to convert the year, which is still a string, to an integer, so we use type_convert. https://www.rdocumentation.org/packages/utils/versions/3.6.0/topics/type.convert is a link to read more on type convert. Next, we filter out all of the NA values and then finally summarize the price and points columns in order to make an average of them - we will be using this average later in our graphs.
winedata
## X country
## 1 0 Italy
## 2 1 Portugal
## 3 2 US
## 4 3 US
## 5 4 US
## 6 5 Spain
## 7 6 Italy
## 8 7 France
## 9 8 Germany
## 10 9 France
## 11 10 US
## 12 11 France
## 13 12 US
## 14 13 Italy
## 15 14 US
## 16 15 Germany
## 17 16 Argentina
## 18 17 Argentina
## 19 18 Spain
## 20 19 US
## 21 20 US
## 22 21 US
## 23 22 Italy
## 24 23 US
## 25 24 Italy
## 26 25 US
## 27 26 Italy
## 28 27 Italy
## 29 28 Italy
## 30 29 US
## 31 30 France
## 32 31 Italy
## 33 32 Italy
## 34 33 US
## 35 34 US
## 36 35 US
## 37 36 Chile
## 38 37 Italy
## 39 38 Italy
## 40 39 Italy
## 41 40 Italy
## 42 41 US
## 43 42 France
## 44 43 US
## 45 44 Chile
## 46 45 US
## 47 46 Italy
## 48 47 US
## 49 48 US
## 50 49 France
## 51 50 Italy
## 52 51 Chile
## 53 52 Italy
## 54 53 France
## 55 54 Italy
## 56 55 US
## 57 56 US
## 58 57 Italy
## 59 58 Chile
## 60 59 US
## 61 60 US
## 62 61 Italy
## 63 62 US
## 64 63 France
## 65 64 US
## 66 65 France
## 67 66 France
## 68 67 US
## 69 68 US
## 70 69 France
## 71 70 US
## 72 71 US
## 73 72 Italy
## 74 73 US
## 75 74 US
## 76 75 US
## 77 76 Germany
## 78 77 Australia
## 79 78 US
## 80 79 Portugal
## 81 80 Chile
## 82 81 Spain
## 83 82 France
## 84 83 Australia
## 85 84 US
## 86 85 Germany
## 87 86 US
## 88 87 US
## 89 88 Italy
## 90 89 Italy
## 91 90 US
## 92 91 US
## 93 92 US
## 94 93 Austria
## 95 94 US
## 96 95 France
## 97 96 France
## 98 97 US
## 99 98 Italy
## 100 99 US
## 101 100 US
## 102 101 US
## 103 102 US
## 104 103 Chile
## 105 104 Italy
## 106 105 Italy
## 107 106 Italy
## 108 107 Italy
## 109 108 US
## 110 109 Italy
## 111 110 France
## 112 111 US
## 113 112 Italy
## 114 113 Italy
## 115 114 US
## 116 115 US
## 117 116 US
## 118 117 US
## 119 118 Italy
## 120 119 France
## 121 120 Italy
## 122 121 US
## 123 122 US
## 124 123 Australia
## 125 124 US
## 126 125 South Africa
## 127 126 France
## 128 127 France
## 129 128 France
## 130 129 South Africa
## 131 130 Italy
## 132 131 France
## 133 132 South Africa
## 134 133 Italy
## 135 134 US
## 136 135 Italy
## 137 136 France
## 138 137 South Africa
## 139 138 France
## 140 139 France
## 141 140 Italy
## 142 141 Italy
## 143 142 US
## 144 143 France
## 145 144 US
## 146 145 US
## 147 146 US
## 148 147 US
## 149 148 Germany
## 150 149 US
## 151 150 US
## 152 151 Portugal
## 153 152 US
## 154 153 US
## 155 154 Spain
## 156 155 US
## 157 156 Germany
## 158 157 Portugal
## 159 158 Italy
## 160 159 Italy
## 161 160 France
## 162 161 US
## 163 162 US
## 164 163 France
## 165 164 Chile
## 166 165 Chile
## 167 166 France
## 168 167 US
## 169 168 US
## 170 169 US
## 171 170 Germany
## 172 171 Germany
## 173 172 Chile
## 174 173 US
## 175 174 New Zealand
## 176 175 Italy
## 177 176 Chile
## 178 177 Italy
## 179 178 US
## 180 179 France
## 181 180 US
## 182 181 US
## 183 182 Italy
## 184 183 Argentina
## 185 184 US
## 186 185 Chile
## 187 186 US
## 188 187 Italy
## 189 188 Chile
## 190 189 Chile
## 191 190 Italy
## 192 191 Australia
## 193 192 Italy
## 194 193 France
## 195 194 Italy
## 196 195 Italy
## 197 196 Italy
## 198 197 South Africa
## 199 198 US
## 200 199 US
## 201 200 Italy
## 202 201 Italy
## 203 202 Israel
## 204 203 Portugal
## 205 204 US
## 206 205 US
## 207 206 US
## 208 207 US
## 209 208 South Africa
## 210 209 France
## 211 210 South Africa
## 212 211 France
## 213 212 Spain
## 214 213 US
## 215 214 US
## 216 215 Israel
## 217 216 Italy
## 218 217 Portugal
## 219 218 US
## 220 219 Hungary
## 221 220 US
## 222 221 Italy
## 223 222 Italy
## 224 223 Italy
## 225 224 Argentina
## 226 225 South Africa
## 227 226 South Africa
## 228 227 US
## 229 228 US
## 230 229 US
## 231 230 US
## 232 231 Argentina
## 233 232 Australia
## 234 233 US
## 235 234 Italy
## 236 235 US
## 237 236 US
## 238 237 Italy
## 239 238 Australia
## 240 239 US
## 241 240 France
## 242 241 US
## 243 242 US
## 244 243 US
## 245 244 Spain
## 246 245 Argentina
## 247 246 Australia
## 248 247 US
## 249 248 US
## 250 249 US
## 251 250 US
## 252 251 US
## 253 252 US
## 254 253 Argentina
## 255 254 US
## 256 255 US
## 257 256 South Africa
## 258 257 South Africa
## 259 258 South Africa
## 260 259 France
## 261 260 US
## 262 261 Argentina
## 263 262 US
## 264 263 US
## 265 264 South Africa
## 266 265 South Africa
## 267 266 Argentina
## 268 267 Italy
## 269 268 Italy
## 270 269 Austria
## 271 270 Italy
## 272 271 Greece
## 273 272 Italy
## 274 273 Argentina
## 275 274 Italy
## 276 275 Argentina
## 277 276 US
## 278 277 US
## 279 278 US
## 280 279 Italy
## 281 280 Austria
## 282 281 US
## 283 282 Italy
## 284 283 US
## 285 284 Argentina
## 286 285 Austria
## 287 286 US
## 288 287 Spain
## 289 288 Austria
## 290 289 US
## 291 290 France
## 292 291 Italy
## 293 292 France
## 294 293 Australia
## 295 294 Argentina
## 296 295 US
## 297 296 Chile
## 298 297 US
## 299 298 Chile
## 300 299 Italy
## 301 300 US
## 302 301 US
## 303 302 Italy
## 304 303 Italy
## 305 304 Italy
## 306 305 US
## 307 306 Romania
## 308 307 France
## 309 308 Greece
## 310 309 Italy
## 311 310 Italy
## 312 311 New Zealand
## 313 312 US
## 314 313 Italy
## 315 314 US
## 316 315 Italy
## 317 316 France
## 318 317 France
## 319 318 Chile
## 320 319 Italy
## 321 320 Italy
## 322 321 Italy
## 323 322 Italy
## 324 323 Chile
## 325 324 Italy
## 326 325 US
## 327 326 Italy
## 328 327 Chile
## 329 328 US
## 330 329 US
## 331 330 US
## 332 331 Chile
## 333 332 Italy
## 334 333 Italy
## 335 334 France
## 336 335 Italy
## 337 336 Chile
## 338 337 France
## 339 338 France
## 340 339 Spain
## 341 340 France
## 342 341 US
## 343 342 Spain
## 344 343 Chile
## 345 344 Chile
## 346 345 Australia
## 347 346 Australia
## 348 347 Germany
## 349 348 Australia
## 350 349 Australia
## 351 350 Italy
## 352 351 Hungary
## 353 352 US
## 354 353 France
## 355 354 Germany
## 356 355 US
## 357 356 Australia
## 358 357 France
## 359 358 Germany
## 360 359 France
## 361 360 Australia
## 362 361 Italy
## 363 362 US
## 364 363 France
## 365 364 US
## 366 365 Australia
## 367 366 Italy
## 368 367 Chile
## 369 368 Italy
## 370 369 Italy
## 371 370 US
## 372 371 Italy
## 373 372 Italy
## 374 373 Italy
## 375 374 US
## 376 375 Italy
## 377 376 Italy
## 378 377 Greece
## 379 378 Mexico
## 380 379 Italy
## 381 380 Chile
## 382 381 Italy
## 383 382 Chile
## 384 383 Italy
## 385 384 Italy
## 386 385 US
## 387 386 US
## 388 387 US
## 389 388 US
## 390 389 Italy
## 391 390 Chile
## 392 391 Chile
## 393 392 US
## 394 393 Chile
## 395 394 Chile
## 396 395 Italy
## 397 396 US
## 398 397 Chile
## 399 398 Chile
## 400 399 Italy
## 401 400 Italy
## 402 401 Italy
## 403 402 Chile
## 404 403 US
## 405 404 US
## 406 405 Italy
## 407 406 France
## 408 407 Chile
## 409 408 Italy
## 410 409 US
## 411 410 US
## 412 411 US
## 413 412 Italy
## 414 413 Italy
## 415 414 Italy
## 416 415 US
## 417 416 Italy
## 418 417 Italy
## 419 418 Austria
## 420 419 France
## 421 420 France
## 422 421 US
## 423 422 US
## 424 423 Austria
## 425 424 US
## 426 425 US
## 427 426 Spain
## 428 427 US
## 429 428 Austria
## 430 429 US
## 431 430 US
## 432 431 US
## 433 432 US
## 434 433 US
## 435 434 Italy
## 436 435 Austria
## 437 436 Italy
## 438 437 US
## 439 438 Spain
## 440 439 Spain
## 441 440 US
## 442 441 Austria
## 443 442 US
## 444 443 US
## 445 444 Austria
## 446 445 Italy
## 447 446 US
## 448 447 France
## 449 448 France
## 450 449 Italy
## 451 450 France
## 452 451 Italy
## 453 452 France
## 454 453 France
## 455 454 Canada
## 456 455 US
## 457 456 US
## 458 457 US
## 459 458 Italy
## 460 459 France
## 461 460 US
## 462 461 US
## 463 462 France
## 464 463 France
## 465 464 Germany
## 466 465 Italy
## 467 466 France
## 468 467 US
## 469 468 Germany
## 470 469 Germany
## 471 470 France
## 472 471 France
## 473 472 France
## 474 473 Portugal
## 475 474 France
## 476 475 US
## 477 476 US
## 478 477 France
## 479 478 France
## 480 479 Italy
## 481 480 US
## 482 481 Italy
## 483 482 US
## 484 483 South Africa
## 485 484 South Africa
## 486 485 France
## 487 486 US
## 488 487 Italy
## 489 488 Italy
## 490 489 Italy
## 491 490 Spain
## 492 491 Austria
## 493 492 US
## 494 493 US
## 495 494 US
## 496 495 US
## 497 496 Spain
## 498 497 US
## 499 498 US
## 500 499 France
## 501 500 Spain
## 502 501 US
## 503 502 Austria
## 504 503 US
## 505 504 France
## 506 505 Spain
## 507 506 Italy
## 508 507 US
## 509 508 US
## 510 509 US
## 511 510 US
## 512 511 France
## 513 512 France
## 514 513 US
## 515 514 Chile
## 516 515 US
## 517 516 US
## 518 517 US
## 519 518 France
## 520 519 US
## 521 520 US
## 522 521 US
## 523 522 US
## 524 523 US
## 525 524 US
## 526 525 US
## 527 526 US
## 528 527 Germany
## 529 528 France
## 530 529 US
## 531 530 Chile
## 532 531 US
## 533 532 US
## 534 533 US
## 535 534 US
## 536 535 Germany
## 537 536 US
## 538 537 US
## 539 538 US
## 540 539 US
## 541 540 US
## 542 541 US
## 543 542 Italy
## 544 543 US
## 545 544 US
## 546 545 US
## 547 546 US
## 548 547 US
## 549 548 US
## 550 549 Italy
## 551 550 US
## 552 551 US
## 553 552 France
## 554 553 Argentina
## 555 554 France
## 556 555 US
## 557 556 Spain
## 558 557 US
## 559 558 US
## 560 559 US
## 561 560 US
## 562 561 US
## 563 562 US
## 564 563 US
## 565 564 US
## 566 565 US
## 567 566 US
## 568 567 Argentina
## 569 568 US
## 570 569 US
## 571 570 US
## 572 571 US
## 573 572 Italy
## 574 573 France
## 575 574 France
## 576 575 France
## 577 576 France
## 578 577 US
## 579 578 France
## 580 579 US
## 581 580 US
## 582 581 US
## 583 582 US
## 584 583 US
## 585 584 Austria
## 586 585 US
## 587 586 Austria
## 588 587 Austria
## 589 588 US
## 590 589 Austria
## 591 590 US
## 592 591 Austria
## 593 592 US
## 594 593 Austria
## 595 594 France
## 596 595 US
## 597 596 Greece
## 598 597 Austria
## 599 598 US
## 600 599 US
## 601 600 Italy
## 602 601 Mexico
## 603 602 US
## 604 603 US
## 605 604 Spain
## 606 605 Argentina
## 607 606 US
## 608 607 US
## 609 608 Portugal
## 610 609 US
## 611 610 US
## 612 611 US
## 613 612 US
## 614 613 Portugal
## 615 614 Italy
## 616 615 Argentina
## 617 616 US
## 618 617 Italy
## 619 618 US
## 620 619 Italy
## 621 620 Italy
## 622 621 US
## 623 622 US
## 624 623 US
## 625 624 US
## 626 625 Italy
## 627 626 Italy
## 628 627 Italy
## 629 628 Australia
## 630 629 US
## 631 630 US
## 632 631 France
## 633 632 France
## 634 633 Australia
## 635 634 US
## 636 635 Spain
## 637 636 Australia
## 638 637 France
## 639 638 France
## 640 639 France
## 641 640 US
## 642 641 US
## 643 642 Portugal
## 644 643 US
## 645 644 US
## 646 645 US
## 647 646 Portugal
## 648 647 Portugal
## 649 648 Germany
## 650 649 US
## 651 650 Italy
## 652 651 France
## 653 652 Australia
## 654 653 US
## 655 654 France
## 656 655 US
## 657 656 US
## 658 657 South Africa
## 659 658 US
## 660 659 US
## 661 660 US
## 662 661 US
## 663 662 Italy
## 664 663 US
## 665 664 Italy
## 666 665 Italy
## 667 666 US
## 668 667 Spain
## 669 668 US
## 670 669 US
## 671 670 US
## 672 671 US
## 673 672 US
## 674 673 US
## 675 674 US
## 676 675 US
## 677 676 US
## 678 677 Italy
## 679 678 Italy
## 680 679 US
## 681 680 Spain
## 682 681 US
## 683 682 Italy
## 684 683 Italy
## 685 684 US
## 686 685 US
## 687 686 Italy
## 688 687 US
## 689 688 US
## 690 689 US
## 691 690 Austria
## 692 691 US
## 693 692 Italy
## 694 693 US
## 695 694 South Africa
## 696 695 Italy
## 697 696 New Zealand
## 698 697 Austria
## 699 698 US
## 700 699 South Africa
## 701 700 Argentina
## 702 701 France
## 703 702 France
## 704 703 France
## 705 704 France
## 706 705 New Zealand
## 707 706 France
## 708 707 France
## 709 708 France
## 710 709 US
## 711 710 New Zealand
## 712 711 US
## 713 712 US
## 714 713 US
## 715 714 New Zealand
## 716 715 Argentina
## 717 716 New Zealand
## 718 717 France
## 719 718 Portugal
## 720 719 France
## 721 720 Portugal
## 722 721 Argentina
## 723 722 Argentina
## 724 723 Portugal
## 725 724 US
## 726 725 Italy
## 727 726 Portugal
## 728 727 US
## 729 728 Argentina
## 730 729 Portugal
## 731 730 US
## 732 731 France
## 733 732 France
## 734 733 France
## 735 734 Argentina
## 736 735 Argentina
## 737 736 US
## 738 737 Portugal
## 739 738 Argentina
## 740 739 Italy
## 741 740 US
## 742 741 France
## 743 742 France
## 744 743 US
## 745 744 Italy
## 746 745 Portugal
## 747 746 Australia
## 748 747 US
## 749 748 US
## 750 749 France
## 751 750 US
## 752 751 Chile
## 753 752 France
## 754 753 US
## 755 754 Spain
## 756 755 US
## 757 756 US
## 758 757 US
## 759 758 US
## 760 759 US
## 761 760 US
## 762 761 Chile
## 763 762 Spain
## 764 763 Spain
## 765 764 US
## 766 765 US
## 767 766 Australia
## 768 767 Spain
## 769 768 Australia
## 770 769 Italy
## 771 770 France
## 772 771 US
## 773 772 France
## 774 773 Portugal
## 775 774 US
## 776 775 US
## 777 776 France
## 778 777 Italy
## 779 778 US
## 780 779 France
## 781 780 Italy
## 782 781 Italy
## 783 782 US
## 784 783 US
## 785 784 Portugal
## 786 785 Argentina
## 787 786 Portugal
## 788 787 US
## 789 788 Argentina
## 790 789 Germany
## 791 790 US
## 792 791 US
## 793 792 France
## 794 793 US
## 795 794 US
## 796 795 France
## 797 796 France
## 798 797 France
## 799 798 France
## 800 799 France
## 801 800 US
## 802 801 US
## 803 802 France
## 804 803 US
## 805 804 US
## 806 805 US
## 807 806 US
## 808 807 Australia
## 809 808 Italy
## 810 809 Spain
## 811 810 US
## 812 811 Germany
## 813 812 US
## 814 813 Australia
## 815 814 Italy
## 816 815 US
## 817 816 US
## 818 817 Chile
## 819 818 France
## 820 819 France
## 821 820 Spain
## 822 821 Spain
## 823 822 Italy
## 824 823 US
## 825 824 US
## 826 825 Italy
## 827 826 Italy
## 828 827 Chile
## 829 828 France
## 830 829 US
## 831 830 France
## 832 831 France
## 833 832 France
## 834 833 Italy
## 835 834 Chile
## 836 835 France
## 837 836 Spain
## 838 837 Spain
## 839 838 US
## 840 839 US
## 841 840 France
## 842 841 US
## 843 842 France
## 844 843 US
## 845 844 Italy
## 846 845 Italy
## 847 846 France
## 848 847 France
## 849 848 France
## 850 849 France
## 851 850 France
## 852 851 France
## 853 852 France
## 854 853 Germany
## 855 854 US
## 856 855 US
## 857 856 Italy
## 858 857 US
## 859 858 US
## 860 859 US
## 861 860 US
## 862 861 Italy
## 863 862 Italy
## 864 863 US
## 865 864 Germany
## 866 865 Italy
## 867 866 Australia
## 868 867 US
## 869 868 Chile
## 870 869 US
## 871 870 US
## 872 871 US
## 873 872 US
## 874 873 Hungary
## 875 874 Portugal
## 876 875 Portugal
## 877 876 Spain
## 878 877 Italy
## 879 878 France
## 880 879 France
## 881 880 US
## 882 881 Spain
## 883 882 US
## 884 883 Italy
## 885 884 US
## 886 885 US
## 887 886 France
## 888 887 Portugal
## 889 888 US
## 890 889 US
## 891 890 US
## 892 891 US
## 893 892 US
## 894 893 Australia
## 895 894 Italy
## 896 895 Italy
## 897 896 US
## 898 897 US
## 899 898 Italy
## 900 899 Italy
## 901 900 Spain
## 902 901 Portugal
## 903 902 US
## 904 903 Germany
## 905 904 Italy
## 906 905 US
## 907 906 US
## 908 907 Portugal
## 909 908 Italy
## 910 909 Italy
## 911 910 Argentina
## 912 911 France
## 913 912 US
## 914 913
## 915 914 Argentina
## 916 915 US
## 917 916 US
## 918 917 Italy
## 919 918 Italy
## 920 919 Argentina
## 921 920 Australia
## 922 921 Portugal
## 923 922 Argentina
## 924 923 Portugal
## 925 924 Australia
## 926 925 US
## 927 926 Argentina
## 928 927 Portugal
## 929 928 Italy
## 930 929 US
## 931 930 Argentina
## 932 931 Italy
## 933 932 France
## 934 933 France
## 935 934 France
## 936 935 France
## 937 936 US
## 938 937 US
## 939 938 Spain
## 940 939 US
## 941 940 France
## 942 941 Spain
## 943 942 US
## 944 943 Spain
## 945 944 US
## 946 945 US
## 947 946 US
## 948 947 Portugal
## 949 948 Portugal
## 950 949 Italy
## 951 950 US
## 952 951 US
## 953 952 Spain
## 954 953 US
## 955 954 US
## 956 955 Italy
## 957 956 Italy
## 958 957 US
## 959 958 Spain
## 960 959 France
## 961 960 France
## 962 961 France
## 963 962 France
## 964 963 France
## 965 964 Italy
## 966 965 Italy
## 967 966 New Zealand
## 968 967 Chile
## 969 968 Italy
## 970 969 Chile
## 971 970 US
## 972 971 France
## 973 972 US
## 974 973 US
## 975 974 US
## 976 975 Italy
## 977 976 US
## 978 977 US
## 979 978 US
## 980 979 France
## 981 980 Italy
## 982 981 France
## 983 982 Italy
## 984 983 US
## 985 984 Romania
## 986 985 Argentina
## 987 986 Portugal
## 988 987 Australia
## 989 988 US
## 990 989 Spain
## 991 990 US
## 992 991 France
## 993 992 France
## 994 993 France
## 995 994 France
## 996 995 Italy
## 997 996 Italy
## 998 997 Australia
## 999 998 US
## 1000 999 US
## 1001 1000 US
## 1002 1001 Italy
## 1003 1002 US
## 1004 1003 France
## 1005 1004 France
## 1006 1005 France
## 1007 1006 US
## 1008 1007 France
## 1009 1008 Australia
## 1010 1009 Chile
## 1011 1010 US
## 1012 1011 US
## 1013 1012 Italy
## 1014 1013 Italy
## 1015 1014 US
## 1016 1015 US
## 1017 1016 Italy
## 1018 1017 Italy
## 1019 1018 France
## 1020 1019 US
## 1021 1020 US
## 1022 1021 Argentina
## 1023 1022 Italy
## 1024 1023 Israel
## 1025 1024 France
## 1026 1025 US
## 1027 1026 US
## 1028 1027 US
## 1029 1028 Spain
## 1030 1029 Spain
## 1031 1030 US
## 1032 1031 Spain
## 1033 1032 New Zealand
## 1034 1033 US
## 1035 1034 France
## 1036 1035 Italy
## 1037 1036 Italy
## 1038 1037 US
## 1039 1038 New Zealand
## 1040 1039 Spain
## 1041 1040 Argentina
## 1042 1041 New Zealand
## 1043 1042 Spain
## 1044 1043 Austria
## 1045 1044 Italy
## 1046 1045 US
## 1047 1046 Italy
## 1048 1047 US
## 1049 1048 France
## 1050 1049 France
## 1051 1050 US
## 1052 1051 Spain
## 1053 1052 US
## 1054 1053 Spain
## 1055 1054 Italy
## 1056 1055 Austria
## 1057 1056 Austria
## 1058 1057 Chile
## 1059 1058 US
## 1060 1059 Italy
## 1061 1060 France
## 1062 1061 France
## 1063 1062 Italy
## 1064 1063 South Africa
## 1065 1064 Italy
## 1066 1065 Portugal
## 1067 1066 US
## 1068 1067 US
## 1069 1068 US
## 1070 1069 US
## 1071 1070 US
## 1072 1071 Italy
## 1073 1072 Portugal
## 1074 1073 Portugal
## 1075 1074 Australia
## 1076 1075 US
## 1077 1076 France
## 1078 1077 Italy
## 1079 1078 US
## 1080 1079 US
## 1081 1080 US
## 1082 1081 US
## 1083 1082 US
## 1084 1083 US
## 1085 1084 France
## 1086 1085 US
## 1087 1086 US
## 1088 1087 US
## 1089 1088 US
## 1090 1089 US
## 1091 1090 Portugal
## 1092 1091 US
## 1093 1092 US
## 1094 1093 France
## 1095 1094 US
## 1096 1095 US
## 1097 1096 Chile
## 1098 1097 US
## 1099 1098 US
## 1100 1099 US
## 1101 1100 Chile
## 1102 1101 Austria
## 1103 1102 US
## 1104 1103 US
## 1105 1104 France
## 1106 1105 Italy
## 1107 1106 US
## 1108 1107 US
## 1109 1108 US
## 1110 1109 Italy
## 1111 1110 Spain
## 1112 1111 Spain
## 1113 1112 France
## 1114 1113 US
## 1115 1114 Italy
## 1116 1115 Spain
## 1117 1116 US
## 1118 1117 US
## 1119 1118 Italy
## 1120 1119 France
## 1121 1120 France
## 1122 1121 France
## 1123 1122 US
## 1124 1123 US
## 1125 1124 US
## 1126 1125 US
## 1127 1126 France
## 1128 1127 France
## 1129 1128 France
## 1130 1129 Chile
## 1131 1130 US
## 1132 1131 New Zealand
## 1133 1132 France
## 1134 1133 France
## 1135 1134 France
## 1136 1135 Chile
## 1137 1136 US
## 1138 1137 Italy
## 1139 1138 Italy
## 1140 1139 US
## 1141 1140 US
## 1142 1141 Chile
## 1143 1142 US
## 1144 1143 US
## 1145 1144 US
## 1146 1145 France
## 1147 1146 Italy
## 1148 1147 US
## 1149 1148 Italy
## 1150 1149 France
## 1151 1150 Chile
## 1152 1151 US
## 1153 1152 US
## 1154 1153 Austria
## 1155 1154 Australia
## 1156 1155 Greece
## 1157 1156 Austria
## 1158 1157 US
## 1159 1158 Austria
## 1160 1159 Austria
## 1161 1160 Greece
## 1162 1161 Italy
## 1163 1162 Italy
## 1164 1163 Italy
## 1165 1164 Italy
## 1166 1165 US
## 1167 1166 US
## 1168 1167 Italy
## 1169 1168 US
## 1170 1169 Italy
## 1171 1170 Argentina
## 1172 1171 Germany
## 1173 1172 US
## 1174 1173 US
## 1175 1174 Argentina
## 1176 1175 Austria
## 1177 1176 Italy
## 1178 1177 Portugal
## 1179 1178 Argentina
## 1180 1179 France
## 1181 1180 US
## 1182 1181 Italy
## 1183 1182 Australia
## 1184 1183 Italy
## 1185 1184 Italy
## 1186 1185 Portugal
## 1187 1186 France
## 1188 1187 Turkey
## 1189 1188 France
## 1190 1189 France
## 1191 1190 US
## 1192 1191 France
## 1193 1192 France
## 1194 1193 Argentina
## 1195 1194 Argentina
## 1196 1195 Argentina
## 1197 1196 US
## 1198 1197 Italy
## 1199 1198 Australia
## 1200 1199 Australia
## 1201 1200 Germany
## 1202 1201 France
## 1203 1202 US
## 1204 1203 US
## 1205 1204 Portugal
## 1206 1205 Italy
## 1207 1206 US
## 1208 1207 Italy
## 1209 1208 Portugal
## 1210 1209 US
## 1211 1210 US
## 1212 1211 US
## 1213 1212 US
## 1214 1213 US
## 1215 1214 US
## 1216 1215 Portugal
## 1217 1216 US
## 1218 1217 Italy
## 1219 1218 Italy
## 1220 1219 US
## 1221 1220 France
## 1222 1221 US
## 1223 1222 US
## 1224 1223 US
## 1225 1224 Portugal
## 1226 1225 US
## 1227 1226 US
## 1228 1227 US
## 1229 1228 US
## 1230 1229 Portugal
## 1231 1230 US
## 1232 1231 US
## 1233 1232 US
## 1234 1233 US
## 1235 1234 US
## 1236 1235 US
## 1237 1236 US
## 1238 1237 Italy
## 1239 1238 France
## 1240 1239 Italy
## 1241 1240 France
## 1242 1241 US
## 1243 1242 South Africa
## 1244 1243 Germany
## 1245 1244 US
## 1246 1245 South Africa
## 1247 1246 US
## 1248 1247 South Africa
## 1249 1248 US
## 1250 1249 US
## 1251 1250 Italy
## 1252 1251 Germany
## 1253 1252 Germany
## 1254 1253 US
## 1255 1254 US
## 1256 1255 South Africa
## 1257 1256 US
## 1258 1257 Spain
## 1259 1258 Italy
## 1260 1259 Spain
## 1261 1260 Italy
## 1262 1261 Italy
## 1263 1262 US
## 1264 1263 US
## 1265 1264 US
## 1266 1265 Israel
## 1267 1266 US
## 1268 1267 US
## 1269 1268 Italy
## 1270 1269 Spain
## 1271 1270 US
## 1272 1271 US
## 1273 1272 Italy
## 1274 1273 US
## 1275 1274 Italy
## 1276 1275 US
## 1277 1276 US
## 1278 1277 US
## 1279 1278 Italy
## 1280 1279 Portugal
## 1281 1280 Spain
## 1282 1281 Spain
## 1283 1282 US
## 1284 1283 Italy
## 1285 1284 France
## 1286 1285 New Zealand
## 1287 1286 Italy
## 1288 1287 US
## 1289 1288 Italy
## 1290 1289 Germany
## 1291 1290 Italy
## 1292 1291 Italy
## 1293 1292 Italy
## 1294 1293 US
## 1295 1294 Spain
## 1296 1295 US
## 1297 1296 France
## 1298 1297 Italy
## 1299 1298 US
## 1300 1299 Italy
## 1301 1300 US
## 1302 1301 France
## 1303 1302 France
## 1304 1303 Germany
## 1305 1304 Germany
## 1306 1305 Spain
## 1307 1306 Spain
## 1308 1307 US
## 1309 1308 Portugal
## 1310 1309 US
## 1311 1310 US
## 1312 1311 US
## 1313 1312 Italy
## 1314 1313 US
## 1315 1314 Italy
## 1316 1315 Italy
## 1317 1316 Italy
## 1318 1317 US
## 1319 1318 US
## 1320 1319 New Zealand
## 1321 1320 Austria
## 1322 1321 Spain
## 1323 1322 Austria
## 1324 1323 Spain
## 1325 1324 US
## 1326 1325 US
## 1327 1326 Spain
## 1328 1327 New Zealand
## 1329 1328 US
## 1330 1329 France
## 1331 1330 France
## 1332 1331 France
## 1333 1332 France
## 1334 1333 US
## 1335 1334 US
## 1336 1335 US
## 1337 1336 US
## 1338 1337 Italy
## 1339 1338 France
## 1340 1339 France
## 1341 1340 France
## 1342 1341 Austria
## 1343 1342 US
## 1344 1343 US
## 1345 1344 Italy
## 1346 1345 US
## 1347 1346 Argentina
## 1348 1347 Italy
## 1349 1348 US
## 1350 1349 Italy
## 1351 1350 Italy
## 1352 1351 France
## 1353 1352 France
## 1354 1353 France
## 1355 1354 US
## 1356 1355 US
## 1357 1356 France
## 1358 1357 Spain
## 1359 1358 Spain
## 1360 1359 US
## 1361 1360 US
## 1362 1361 Italy
## 1363 1362 US
## 1364 1363 Italy
## 1365 1364 France
## 1366 1365 France
## 1367 1366 Chile
## 1368 1367 France
## 1369 1368 US
## 1370 1369 Italy
## 1371 1370 US
## 1372 1371 US
## 1373 1372 Italy
## 1374 1373 US
## 1375 1374 US
## 1376 1375 France
## 1377 1376 US
## 1378 1377 Portugal
## 1379 1378 US
## 1380 1379 France
## 1381 1380 US
## 1382 1381 US
## 1383 1382 Chile
## 1384 1383 US
## 1385 1384 Italy
## 1386 1385 Germany
## 1387 1386 US
## 1388 1387 Italy
## 1389 1388 US
## 1390 1389 South Africa
## 1391 1390 South Africa
## 1392 1391 Italy
## 1393 1392 US
## 1394 1393 US
## 1395 1394 Argentina
## 1396 1395 US
## 1397 1396 US
## 1398 1397 Portugal
## 1399 1398 Germany
## 1400 1399 Italy
## 1401 1400 Portugal
## 1402 1401 US
## 1403 1402 Italy
## 1404 1403 Italy
## 1405 1404 Italy
## 1406 1405 US
## 1407 1406 US
## 1408 1407 Italy
## 1409 1408 Italy
## 1410 1409 US
## 1411 1410 Germany
## 1412 1411 Portugal
## 1413 1412 Portugal
## 1414 1413 US
## 1415 1414 France
## 1416 1415 France
## 1417 1416 France
## 1418 1417 US
## 1419 1418 US
## 1420 1419 US
## 1421 1420 US
## 1422 1421 France
## 1423 1422 Austria
## 1424 1423 US
## 1425 1424 US
## 1426 1425 Austria
## 1427 1426 France
## 1428 1427 France
## 1429 1428 US
## 1430 1429 US
## 1431 1430 US
## 1432 1431 US
## 1433 1432 France
## 1434 1433 France
## 1435 1434 South Africa
## 1436 1435 US
## 1437 1436 US
## 1438 1437 France
## 1439 1438 Austria
## 1440 1439 US
## 1441 1440 US
## 1442 1441 Austria
## 1443 1442 Austria
## 1444 1443 US
## 1445 1444 US
## 1446 1445 France
## 1447 1446 France
## 1448 1447 Portugal
## 1449 1448 US
## 1450 1449 France
## 1451 1450 France
## 1452 1451 France
## 1453 1452 Italy
## 1454 1453 France
## 1455 1454 Italy
## 1456 1455 US
## 1457 1456 US
## 1458 1457 Germany
## 1459 1458 France
## 1460 1459 US
## 1461 1460 Italy
## 1462 1461 US
## 1463 1462 Italy
## 1464 1463 France
## 1465 1464 US
## 1466 1465 Portugal
## 1467 1466 US
## 1468 1467 US
## 1469 1468 US
## 1470 1469 US
## 1471 1470 US
## 1472 1471 Italy
## 1473 1472 US
## 1474 1473 Chile
## 1475 1474 Italy
## 1476 1475 Italy
## 1477 1476 US
## 1478 1477 Chile
## 1479 1478 Australia
## 1480 1479 Chile
## 1481 1480 Chile
## 1482 1481 US
## 1483 1482 Argentina
## 1484 1483 France
## 1485 1484 New Zealand
## 1486 1485 US
## 1487 1486 Hungary
## 1488 1487 US
## 1489 1488 Italy
## 1490 1489 Italy
## 1491 1490 New Zealand
## 1492 1491 Italy
## 1493 1492 New Zealand
## 1494 1493 Argentina
## 1495 1494 US
## 1496 1495 US
## 1497 1496 Argentina
## 1498 1497 Argentina
## 1499 1498 Italy
## 1500 1499 Chile
## 1501 1500 Italy
## 1502 1501 US
## 1503 1502 US
## 1504 1503 Italy
## 1505 1504 US
## 1506 1505 Austria
## 1507 1506 France
## 1508 1507 France
## 1509 1508 France
## 1510 1509 Chile
## 1511 1510 US
## 1512 1511 Italy
## 1513 1512 France
## 1514 1513 Italy
## 1515 1514 US
## 1516 1515 US
## 1517 1516 France
## 1518 1517 France
## 1519 1518 France
## 1520 1519 Chile
## 1521 1520 France
## 1522 1521 Chile
## 1523 1522 Italy
## 1524 1523 US
## 1525 1524 Chile
## 1526 1525 US
## 1527 1526 Italy
## 1528 1527 Portugal
## 1529 1528 Portugal
## 1530 1529 US
## 1531 1530 Spain
## 1532 1531 Spain
## 1533 1532 Spain
## 1534 1533 US
## 1535 1534 France
## 1536 1535 France
## 1537 1536 France
## 1538 1537 France
## 1539 1538 France
## 1540 1539 US
## 1541 1540 Spain
## 1542 1541 Portugal
## 1543 1542 Portugal
## 1544 1543 Romania
## 1545 1544 Italy
## 1546 1545 Spain
## 1547 1546 Chile
## 1548 1547 Portugal
## 1549 1548 Chile
## 1550 1549 Chile
## 1551 1550 Italy
## 1552 1551 Portugal
## 1553 1552 Portugal
## 1554 1553 Italy
## 1555 1554 US
## 1556 1555 Portugal
## 1557 1556 US
## 1558 1557 US
## 1559 1558 France
## 1560 1559 France
## 1561 1560 US
## 1562 1561 Italy
## 1563 1562 France
## 1564 1563 Italy
## 1565 1564 Italy
## 1566 1565 US
## 1567 1566 France
## 1568 1567 US
## 1569 1568 France
## 1570 1569 France
## 1571 1570 Italy
## 1572 1571 France
## 1573 1572 France
## 1574 1573 France
## 1575 1574 US
## 1576 1575 France
## 1577 1576 France
## 1578 1577 US
## 1579 1578 France
## 1580 1579 US
## 1581 1580 France
## 1582 1581 France
## 1583 1582 France
## 1584 1583 US
## 1585 1584 US
## 1586 1585 US
## 1587 1586 US
## 1588 1587 US
## 1589 1588 Italy
## 1590 1589 France
## 1591 1590 France
## 1592 1591 US
## 1593 1592 France
## 1594 1593 France
## 1595 1594 France
## 1596 1595 France
## 1597 1596 France
## 1598 1597 France
## 1599 1598 US
## 1600 1599 France
## 1601 1600 US
## 1602 1601 US
## 1603 1602 US
## 1604 1603 Italy
## 1605 1604 US
## 1606 1605 New Zealand
## 1607 1606 US
## 1608 1607 US
## 1609 1608 US
## 1610 1609 Italy
## 1611 1610 US
## 1612 1611 France
## 1613 1612 France
## 1614 1613 France
## 1615 1614 France
## 1616 1615 France
## 1617 1616 France
## 1618 1617 Portugal
## 1619 1618 Argentina
## 1620 1619 Portugal
## 1621 1620 Portugal
## 1622 1621 Argentina
## 1623 1622 Argentina
## 1624 1623 France
## 1625 1624 France
## 1626 1625 US
## 1627 1626 Argentina
## 1628 1627 US
## 1629 1628 France
## 1630 1629 Portugal
## 1631 1630 Portugal
## 1632 1631 US
## 1633 1632 France
## 1634 1633 Portugal
## 1635 1634 Argentina
## 1636 1635 US
## 1637 1636 Australia
## 1638 1637 US
## 1639 1638 France
## 1640 1639 Portugal
## 1641 1640 Portugal
## 1642 1641 US
## 1643 1642 Italy
## 1644 1643 US
## 1645 1644 US
## 1646 1645 Spain
## 1647 1646 Argentina
## 1648 1647 US
## 1649 1648 Argentina
## 1650 1649 Australia
## 1651 1650 Portugal
## 1652 1651 Argentina
## 1653 1652 US
## 1654 1653 Portugal
## 1655 1654 Portugal
## 1656 1655 Portugal
## 1657 1656 France
## 1658 1657 France
## 1659 1658 France
## 1660 1659 US
## 1661 1660 US
## 1662 1661 US
## 1663 1662 Italy
## 1664 1663 Portugal
## 1665 1664 US
## 1666 1665 Argentina
## 1667 1666 Australia
## 1668 1667 US
## 1669 1668 Italy
## 1670 1669 France
## 1671 1670 France
## 1672 1671 US
## 1673 1672 US
## 1674 1673 US
## 1675 1674 France
## 1676 1675 France
## 1677 1676 Italy
## 1678 1677 US
## 1679 1678 US
## 1680 1679 US
## 1681 1680 Argentina
## 1682 1681 Austria
## 1683 1682 Italy
## 1684 1683 US
## 1685 1684 Austria
## 1686 1685 Italy
## 1687 1686 US
## 1688 1687 Italy
## 1689 1688 US
## 1690 1689 US
## 1691 1690 US
## 1692 1691 France
## 1693 1692 US
## 1694 1693 Austria
## 1695 1694 US
## 1696 1695 Argentina
## 1697 1696 Italy
## 1698 1697 Israel
## 1699 1698 Italy
## 1700 1699 Italy
## 1701 1700 Portugal
## 1702 1701 Spain
## 1703 1702 US
## 1704 1703 US
## 1705 1704 Israel
## 1706 1705 Italy
## 1707 1706 Australia
## 1708 1707 Australia
## 1709 1708 Spain
## 1710 1709 Italy
## 1711 1710 US
## 1712 1711 Spain
## 1713 1712 Australia
## 1714 1713 Italy
## 1715 1714 Portugal
## 1716 1715 Israel
## 1717 1716 US
## 1718 1717 Portugal
## 1719 1718 Spain
## 1720 1719 US
## 1721 1720 Spain
## 1722 1721 Spain
## 1723 1722 Spain
## 1724 1723 Australia
## 1725 1724 US
## 1726 1725 US
## 1727 1726 Spain
## 1728 1727 France
## 1729 1728 US
## 1730 1729 US
## 1731 1730 US
## 1732 1731 US
## 1733 1732 Italy
## 1734 1733 France
## 1735 1734 US
## 1736 1735 US
## 1737 1736 Italy
## 1738 1737 US
## 1739 1738 Italy
## 1740 1739 US
## 1741 1740 Italy
## 1742 1741 US
## 1743 1742 US
## 1744 1743 Italy
## 1745 1744 France
## 1746 1745 France
## 1747 1746 France
## 1748 1747 France
## 1749 1748 France
## 1750 1749 US
## 1751 1750 France
## 1752 1751 Spain
## 1753 1752 US
## 1754 1753 Spain
## 1755 1754 France
## 1756 1755 Spain
## 1757 1756 US
## 1758 1757 France
## 1759 1758 France
## 1760 1759 Spain
## 1761 1760 France
## 1762 1761 US
## 1763 1762 US
## 1764 1763 US
## 1765 1764 Spain
## 1766 1765 France
## 1767 1766 US
## 1768 1767 France
## 1769 1768 France
## 1770 1769 Chile
## 1771 1770 France
## 1772 1771 US
## 1773 1772 France
## 1774 1773 Chile
## 1775 1774 US
## 1776 1775 France
## 1777 1776 France
## 1778 1777 France
## 1779 1778 France
## 1780 1779 France
## 1781 1780 US
## 1782 1781 Italy
## 1783 1782 Spain
## 1784 1783 France
## 1785 1784 France
## 1786 1785 France
## 1787 1786 US
## 1788 1787 US
## 1789 1788 US
## 1790 1789 US
## 1791 1790 Argentina
## 1792 1791 US
## 1793 1792 US
## 1794 1793 Italy
## 1795 1794 US
## 1796 1795 US
## 1797 1796 US
## 1798 1797 Italy
## 1799 1798 Italy
## 1800 1799 France
## 1801 1800 France
## 1802 1801 Portugal
## 1803 1802 Portugal
## 1804 1803 France
## 1805 1804 France
## 1806 1805 US
## 1807 1806 Spain
## 1808 1807 France
## 1809 1808 US
## 1810 1809 Spain
## 1811 1810 Spain
## 1812 1811 US
## 1813 1812 Portugal
## 1814 1813 Portugal
## 1815 1814 Spain
## 1816 1815 Argentina
## 1817 1816 Spain
## 1818 1817 US
## 1819 1818 France
## 1820 1819 France
## 1821 1820 France
## 1822 1821 Portugal
## 1823 1822 Argentina
## 1824 1823 France
## 1825 1824 France
## 1826 1825 US
## 1827 1826 France
## 1828 1827 Spain
## 1829 1828 Spain
## 1830 1829 US
## 1831 1830 US
## 1832 1831 US
## 1833 1832 US
## 1834 1833 Spain
## 1835 1834 US
## 1836 1835 Spain
## 1837 1836 US
## 1838 1837 France
## 1839 1838 US
## 1840 1839 US
## 1841 1840 US
## 1842 1841 US
## 1843 1842 US
## 1844 1843 Spain
## 1845 1844 Argentina
## 1846 1845 Spain
## 1847 1846 Spain
## 1848 1847 Spain
## 1849 1848 Spain
## 1850 1849 US
## 1851 1850 US
## 1852 1851 Argentina
## 1853 1852 France
## 1854 1853 US
## 1855 1854 Spain
## 1856 1855 Argentina
## 1857 1856 US
## 1858 1857 US
## 1859 1858 US
## 1860 1859 Italy
## 1861 1860 France
## 1862 1861 France
## 1863 1862 France
## 1864 1863 US
## 1865 1864 Italy
## 1866 1865 Italy
## 1867 1866 US
## 1868 1867 US
## 1869 1868 US
## 1870 1869 Italy
## 1871 1870 Portugal
## 1872 1871 France
## 1873 1872 France
## 1874 1873 US
## 1875 1874 France
## 1876 1875 Italy
## 1877 1876 Italy
## 1878 1877 Italy
## 1879 1878 US
## 1880 1879 France
## 1881 1880 France
## 1882 1881 US
## 1883 1882 US
## 1884 1883 US
## 1885 1884 Portugal
## 1886 1885 Italy
## 1887 1886 Australia
## 1888 1887 US
## 1889 1888 US
## 1890 1889 France
## 1891 1890 Australia
## 1892 1891 Australia
## 1893 1892 Italy
## 1894 1893 US
## 1895 1894 Australia
## 1896 1895 Italy
## 1897 1896 US
## 1898 1897 Australia
## 1899 1898 Spain
## 1900 1899 Argentina
## 1901 1900 US
## 1902 1901 France
## 1903 1902 Argentina
## 1904 1903 Australia
## 1905 1904 Italy
## 1906 1905 US
## 1907 1906 Spain
## 1908 1907 Italy
## 1909 1908 Australia
## 1910 1909 Australia
## 1911 1910 US
## 1912 1911 US
## 1913 1912 Austria
## 1914 1913 US
## 1915 1914 US
## 1916 1915 Chile
## 1917 1916 Chile
## 1918 1917 Chile
## 1919 1918 France
## 1920 1919 France
## 1921 1920 France
## 1922 1921 US
## 1923 1922 Austria
## 1924 1923 US
## 1925 1924 Chile
## 1926 1925 Italy
## 1927 1926 US
## 1928 1927 France
## 1929 1928 Italy
## 1930 1929 US
## 1931 1930 Australia
## 1932 1931 Israel
## 1933 1932 Italy
## 1934 1933 France
## 1935 1934 Australia
## 1936 1935 Chile
## 1937 1936 US
## 1938 1937 Chile
## 1939 1938 Chile
## 1940 1939 US
## 1941 1940 France
## 1942 1941 Austria
## 1943 1942 US
## 1944 1943 US
## 1945 1944 France
## 1946 1945 US
## 1947 1946 US
## 1948 1947 US
## 1949 1948 US
## 1950 1949 Chile
## 1951 1950 US
## 1952 1951 France
## 1953 1952 US
## 1954 1953 US
## 1955 1954 Chile
## 1956 1955 Israel
## 1957 1956 US
## 1958 1957 France
## 1959 1958 US
## 1960 1959 US
## 1961 1960 Italy
## 1962 1961 Italy
## 1963 1962 US
## 1964 1963 US
## 1965 1964 France
## 1966 1965 Chile
## 1967 1966 US
## 1968 1967 Italy
## 1969 1968 France
## 1970 1969 France
## 1971 1970 France
## 1972 1971 France
## 1973 1972 Italy
## 1974 1973 US
## 1975 1974 US
## 1976 1975 Italy
## 1977 1976 France
## 1978 1977 Italy
## 1979 1978 Italy
## 1980 1979 US
## 1981 1980 US
## 1982 1981 Italy
## 1983 1982 US
## 1984 1983 Italy
## 1985 1984 US
## 1986 1985 US
## 1987 1986 France
## 1988 1987 Spain
## 1989 1988 Spain
## 1990 1989 US
## 1991 1990 France
## 1992 1991 Argentina
## 1993 1992 Argentina
## 1994 1993 Argentina
## 1995 1994 US
## 1996 1995 US
## 1997 1996 US
## 1998 1997 Italy
## 1999 1998 France
## 2000 1999 France
## 2001 2000 Italy
## 2002 2001 Spain
## 2003 2002 Argentina
## 2004 2003 France
## 2005 2004 US
## 2006 2005 Portugal
## 2007 2006 Portugal
## 2008 2007 France
## 2009 2008 US
## 2010 2009 France
## 2011 2010 France
## 2012 2011 US
## 2013 2012 Argentina
## 2014 2013 France
## 2015 2014 Spain
## 2016 2015 France
## 2017 2016 France
## 2018 2017 Portugal
## 2019 2018 US
## 2020 2019 US
## 2021 2020 US
## 2022 2021 US
## 2023 2022 Italy
## 2024 2023 Italy
## 2025 2024 US
## 2026 2025 Chile
## 2027 2026 France
## 2028 2027 Chile
## 2029 2028 Italy
## 2030 2029 Italy
## 2031 2030 Italy
## 2032 2031 US
## 2033 2032 Portugal
## 2034 2033 Portugal
## 2035 2034 US
## 2036 2035 US
## 2037 2036 Italy
## 2038 2037 Italy
## 2039 2038 France
## 2040 2039 Italy
## 2041 2040 France
## 2042 2041 France
## 2043 2042 US
## 2044 2043 Italy
## 2045 2044 Italy
## 2046 2045 Italy
## 2047 2046 Italy
## 2048 2047 Italy
## 2049 2048 Austria
## 2050 2049 Austria
## 2051 2050 Austria
## 2052 2051 Austria
## 2053 2052 US
## 2054 2053 US
## 2055 2054 Italy
## 2056 2055 Italy
## 2057 2056 Italy
## 2058 2057 Italy
## 2059 2058 Italy
## 2060 2059 Italy
## 2061 2060 Italy
## 2062 2061 Italy
## 2063 2062 US
## 2064 2063 France
## 2065 2064 US
## 2066 2065 US
## 2067 2066 US
## 2068 2067 US
## 2069 2068 US
## 2070 2069 US
## 2071 2070 US
## 2072 2071 France
## 2073 2072 Italy
## 2074 2073 US
## 2075 2074 Italy
## 2076 2075 Italy
## 2077 2076 France
## 2078 2077 US
## 2079 2078 Chile
## 2080 2079 France
## 2081 2080 US
## 2082 2081 US
## 2083 2082 US
## 2084 2083 Argentina
## 2085 2084 Chile
## 2086 2085 US
## 2087 2086 US
## 2088 2087 US
## 2089 2088 US
## 2090 2089 France
## 2091 2090 US
## 2092 2091 Portugal
## 2093 2092 Italy
## 2094 2093 Italy
## 2095 2094 Portugal
## 2096 2095 US
## 2097 2096 Italy
## 2098 2097 US
## 2099 2098 Italy
## 2100 2099 US
## 2101 2100 US
## 2102 2101 US
## 2103 2102 Italy
## 2104 2103 Italy
## 2105 2104 Portugal
## 2106 2105 Chile
## 2107 2106 Italy
## 2108 2107 US
## 2109 2108 Italy
## 2110 2109 US
## 2111 2110 Italy
## 2112 2111 France
## 2113 2112 France
## 2114 2113 France
## 2115 2114 France
## 2116 2115 Greece
## 2117 2116 US
## 2118 2117 US
## 2119 2118 US
## 2120 2119 US
## 2121 2120 US
## 2122 2121 France
## 2123 2122 France
## 2124 2123 France
## 2125 2124 France
## 2126 2125 US
## 2127 2126 US
## 2128 2127 US
## 2129 2128 US
## 2130 2129 Italy
## 2131 2130 France
## 2132 2131 US
## 2133 2132 France
## 2134 2133 Italy
## 2135 2134 Italy
## 2136 2135 Spain
## 2137 2136 US
## 2138 2137 Australia
## 2139 2138 Spain
## 2140 2139 Italy
## 2141 2140 Spain
## 2142 2141 Argentina
## 2143 2142 France
## 2144 2143 France
## 2145 2144 US
## 2146 2145 Spain
## 2147 2146 US
## 2148 2147 Italy
## 2149 2148 Italy
## 2150 2149 Portugal
## 2151 2150 US
## 2152 2151 Spain
## 2153 2152 US
## 2154 2153 Spain
## 2155 2154 Spain
## 2156 2155 Argentina
## 2157 2156 US
## 2158 2157 France
## 2159 2158 Portugal
## 2160 2159 Italy
## 2161 2160 Italy
## 2162 2161 US
## 2163 2162 Spain
## 2164 2163 US
## 2165 2164 US
## 2166 2165 US
## 2167 2166 Greece
## 2168 2167 US
## 2169 2168 US
## 2170 2169 US
## 2171 2170 Austria
## 2172 2171 Italy
## 2173 2172 US
## 2174 2173 Italy
## 2175 2174 US
## 2176 2175 Spain
## 2177 2176 US
## 2178 2177 US
## 2179 2178 Austria
## 2180 2179 Spain
## 2181 2180 France
## 2182 2181 Spain
## 2183 2182 US
## 2184 2183 Greece
## 2185 2184 US
## 2186 2185 Greece
## 2187 2186 Italy
## 2188 2187 US
## 2189 2188 US
## 2190 2189 US
## 2191 2190 US
## 2192 2191 US
## 2193 2192 US
## 2194 2193 US
## 2195 2194 Chile
## 2196 2195 US
## 2197 2196 US
## 2198 2197 US
## 2199 2198 Italy
## 2200 2199 France
## 2201 2200 US
## 2202 2201 US
## 2203 2202 US
## 2204 2203 US
## 2205 2204 US
## 2206 2205 Chile
## 2207 2206 US
## 2208 2207 France
## 2209 2208 US
## 2210 2209 US
## 2211 2210 US
## 2212 2211 US
## 2213 2212 France
## 2214 2213 Italy
## 2215 2214 France
## 2216 2215 US
## 2217 2216 New Zealand
## 2218 2217 France
## 2219 2218 Chile
## 2220 2219 Chile
## 2221 2220 US
## 2222 2221 US
## 2223 2222 US
## 2224 2223 US
## 2225 2224 Italy
## 2226 2225 Italy
## 2227 2226 Italy
## 2228 2227 France
## 2229 2228 Italy
## 2230 2229 US
## 2231 2230 Italy
## 2232 2231 US
## 2233 2232 Italy
## 2234 2233 Italy
## 2235 2234 Italy
## 2236 2235 US
## 2237 2236 Italy
## 2238 2237 Italy
## 2239 2238 US
## 2240 2239 Italy
## 2241 2240 Italy
## 2242 2241 US
## 2243 2242 US
## 2244 2243 Italy
## 2245 2244 France
## 2246 2245 France
## 2247 2246 US
## 2248 2247 Italy
## 2249 2248 Italy
## 2250 2249 Italy
## 2251 2250 US
## 2252 2251 US
## 2253 2252 US
## 2254 2253 US
## 2255 2254 Argentina
## 2256 2255 US
## 2257 2256 Australia
## 2258 2257 Italy
## 2259 2258 France
## 2260 2259 France
## 2261 2260 Italy
## 2262 2261 France
## 2263 2262 Italy
## 2264 2263 Italy
## 2265 2264 France
## 2266 2265 Austria
## 2267 2266 US
## 2268 2267 US
## 2269 2268 US
## 2270 2269 US
## 2271 2270 US
## 2272 2271 US
## 2273 2272 Czech Republic
## 2274 2273 Portugal
## 2275 2274 US
## 2276 2275 Italy
## 2277 2276 Italy
## 2278 2277 Argentina
## 2279 2278 US
## 2280 2279 France
## 2281 2280 US
## 2282 2281 US
## 2283 2282 Italy
## 2284 2283 US
## 2285 2284 Spain
## 2286 2285 Spain
## 2287 2286 US
## 2288 2287 Italy
## 2289 2288 Czech Republic
## 2290 2289 US
## 2291 2290 US
## 2292 2291 Argentina
## 2293 2292 Slovenia
## 2294 2293 Italy
## 2295 2294 Germany
## 2296 2295 Italy
## 2297 2296 Italy
## 2298 2297 US
## 2299 2298 US
## 2300 2299 Germany
## 2301 2300 Germany
## 2302 2301 US
## 2303 2302 South Africa
## 2304 2303 US
## 2305 2304 US
## 2306 2305 Italy
## 2307 2306 France
## 2308 2307 Italy
## 2309 2308 US
## 2310 2309 Spain
## 2311 2310 Germany
## 2312 2311 Germany
## 2313 2312 Australia
## 2314 2313 Italy
## 2315 2314 Italy
## 2316 2315 Italy
## 2317 2316 US
## 2318 2317 Italy
## 2319 2318 Italy
## 2320 2319 France
## 2321 2320 France
## 2322 2321 France
## 2323 2322 France
## 2324 2323 France
## 2325 2324 France
## 2326 2325 US
## 2327 2326 US
## 2328 2327 US
## 2329 2328 US
## 2330 2329 Italy
## 2331 2330 US
## 2332 2331 Chile
## 2333 2332 France
## 2334 2333 US
## 2335 2334 Spain
## 2336 2335 US
## 2337 2336 Chile
## 2338 2337 US
## 2339 2338 Chile
## 2340 2339 US
## 2341 2340 US
## 2342 2341 Chile
## 2343 2342 US
## 2344 2343 US
## 2345 2344 France
## 2346 2345 US
## 2347 2346 US
## 2348 2347 US
## 2349 2348 US
## 2350 2349 US
## 2351 2350 Italy
## 2352 2351 Argentina
## 2353 2352 US
## 2354 2353 US
## 2355 2354 US
## 2356 2355 US
## 2357 2356 Spain
## 2358 2357 US
## 2359 2358 US
## 2360 2359 France
## 2361 2360 France
## 2362 2361 France
## 2363 2362 Italy
## 2364 2363 US
## 2365 2364 France
## 2366 2365 Austria
## 2367 2366 US
## 2368 2367 US
## 2369 2368 France
## 2370 2369 Italy
## 2371 2370 US
## 2372 2371 France
## 2373 2372 France
## 2374 2373 Italy
## 2375 2374 Italy
## 2376 2375 US
## 2377 2376 Italy
## 2378 2377 US
## 2379 2378 Italy
## 2380 2379 US
## 2381 2380 US
## 2382 2381 Portugal
## 2383 2382 Portugal
## 2384 2383 Portugal
## 2385 2384 Portugal
## 2386 2385 US
## 2387 2386 US
## 2388 2387 Argentina
## 2389 2388 France
## 2390 2389 France
## 2391 2390 France
## 2392 2391 Portugal
## 2393 2392 Portugal
## 2394 2393 Portugal
## 2395 2394 Portugal
## 2396 2395 US
## 2397 2396 Portugal
## 2398 2397 Portugal
## 2399 2398 Portugal
## 2400 2399 US
## 2401 2400 New Zealand
## 2402 2401 Italy
## 2403 2402 US
## 2404 2403 France
## 2405 2404 US
## 2406 2405 New Zealand
## 2407 2406 US
## 2408 2407 France
## 2409 2408 US
## 2410 2409 Italy
## 2411 2410 Chile
## 2412 2411 Italy
## 2413 2412 Italy
## 2414 2413 France
## 2415 2414 Italy
## 2416 2415 US
## 2417 2416 Italy
## 2418 2417 US
## 2419 2418 Chile
## 2420 2419 US
## 2421 2420 Italy
## 2422 2421 France
## 2423 2422 France
## 2424 2423 US
## 2425 2424 Chile
## 2426 2425 Italy
## 2427 2426 Italy
## 2428 2427 France
## 2429 2428 US
## 2430 2429 US
## 2431 2430 US
## 2432 2431 France
## 2433 2432 France
## 2434 2433 Chile
## 2435 2434 Italy
## 2436 2435 US
## 2437 2436 US
## 2438 2437 Austria
## 2439 2438 Italy
## 2440 2439 US
## 2441 2440 US
## 2442 2441 US
## 2443 2442 US
## 2444 2443 US
## 2445 2444 Italy
## 2446 2445 Italy
## 2447 2446 US
## 2448 2447 Italy
## 2449 2448 Italy
## 2450 2449 US
## 2451 2450 Italy
## 2452 2451 US
## 2453 2452 US
## 2454 2453 US
## 2455 2454 US
## 2456 2455 US
## 2457 2456 US
## 2458 2457 US
## 2459 2458 US
## 2460 2459 Italy
## 2461 2460 US
## 2462 2461 France
## 2463 2462 France
## 2464 2463 France
## 2465 2464 France
## 2466 2465 France
## 2467 2466 France
## 2468 2467 France
## 2469 2468 Italy
## 2470 2469 Spain
## 2471 2470 Spain
## 2472 2471 US
## 2473 2472 US
## 2474 2473 US
## 2475 2474 US
## 2476 2475 US
## 2477 2476 US
## 2478 2477 US
## 2479 2478 US
## 2480 2479 US
## 2481 2480 US
## 2482 2481 US
## 2483 2482 US
## 2484 2483 US
## 2485 2484 US
## 2486 2485 US
## 2487 2486 Romania
## 2488 2487 Chile
## 2489 2488 US
## 2490 2489 US
## 2491 2490 France
## 2492 2491 France
## 2493 2492 France
## 2494 2493 Chile
## 2495 2494 Chile
## 2496 2495 US
## 2497 2496 Italy
## 2498 2497 Italy
## 2499 2498 US
## 2500 2499 US
## 2501 2500 France
## 2502 2501 Romania
## 2503 2502 US
## 2504 2503 US
## 2505 2504 Chile
## 2506 2505 US
## 2507 2506 US
## 2508 2507 US
## 2509 2508 Spain
## 2510 2509 Italy
## 2511 2510 Italy
## 2512 2511 Italy
## 2513 2512 Italy
## 2514 2513 US
## 2515 2514 Italy
## 2516 2515 US
## 2517 2516 Italy
## 2518 2517 Australia
## 2519 2518 Italy
## 2520 2519 Italy
## 2521 2520 Italy
## 2522 2521 Italy
## 2523 2522 Italy
## 2524 2523 Italy
## 2525 2524 Italy
## 2526 2525 Italy
## 2527 2526 Italy
## 2528 2527 US
## 2529 2528 Austria
## 2530 2529 Austria
## 2531 2530 US
## 2532 2531 Spain
## 2533 2532 New Zealand
## 2534 2533 US
## 2535 2534 Spain
## 2536 2535 Austria
## 2537 2536 US
## 2538 2537 Italy
## 2539 2538 France
## 2540 2539 US
## 2541 2540 Italy
## 2542 2541 France
## 2543 2542 US
## 2544 2543 France
## 2545 2544 US
## 2546 2545 US
## 2547 2546 New Zealand
## 2548 2547 Austria
## 2549 2548 Spain
## 2550 2549 Spain
## 2551 2550 US
## 2552 2551 Argentina
## 2553 2552 US
## 2554 2553 US
## 2555 2554 US
## 2556 2555 US
## 2557 2556 US
## 2558 2557 US
## 2559 2558 US
## 2560 2559 US
## 2561 2560 New Zealand
## 2562 2561 US
## 2563 2562 Italy
## 2564 2563 US
## 2565 2564 US
## 2566 2565 Austria
## 2567 2566 US
## 2568 2567 US
## 2569 2568 US
## 2570 2569 US
## 2571 2570 Italy
## 2572 2571 US
## 2573 2572 US
## 2574 2573 Italy
## 2575 2574 US
## 2576 2575 US
## 2577 2576 US
## 2578 2577 US
## 2579 2578 US
## 2580 2579 US
## 2581 2580 US
## 2582 2581 US
## 2583 2582 US
## 2584 2583 US
## 2585 2584 France
## 2586 2585 France
## 2587 2586 Austria
## 2588 2587 Australia
## 2589 2588 Austria
## 2590 2589 Germany
## 2591 2590 US
## 2592 2591 Italy
## 2593 2592 Italy
## 2594 2593 US
## 2595 2594 Australia
## 2596 2595 Austria
## 2597 2596 Israel
## 2598 2597 Germany
## 2599 2598 Australia
## 2600 2599 Germany
## 2601 2600 Australia
## 2602 2601 US
## 2603 2602 US
## 2604 2603 Chile
## 2605 2604 US
## 2606 2605 US
## 2607 2606 Chile
## 2608 2607 Chile
## 2609 2608 US
## 2610 2609 US
## 2611 2610 US
## 2612 2611 Australia
## 2613 2612 US
## 2614 2613 Germany
## 2615 2614 US
## 2616 2615 Argentina
## 2617 2616 Canada
## 2618 2617 Australia
## 2619 2618 Argentina
## 2620 2619 Italy
## 2621 2620 US
## 2622 2621 US
## 2623 2622 US
## 2624 2623 US
## 2625 2624 US
## 2626 2625 US
## 2627 2626 US
## 2628 2627 US
## 2629 2628 US
## 2630 2629 US
## 2631 2630 US
## 2632 2631 Australia
## 2633 2632 Italy
## 2634 2633 Portugal
## 2635 2634 Italy
## 2636 2635 France
## 2637 2636 France
## 2638 2637 France
## 2639 2638 France
## 2640 2639 US
## 2641 2640 Australia
## 2642 2641 Chile
## 2643 2642 Australia
## 2644 2643 Italy
## 2645 2644 US
## 2646 2645 US
## 2647 2646 Italy
## 2648 2647 US
## 2649 2648 US
## 2650 2649 US
## 2651 2650 US
## 2652 2651 Portugal
## 2653 2652 Portugal
## 2654 2653 Portugal
## 2655 2654 Italy
## 2656 2655 France
## 2657 2656 France
## 2658 2657 France
## 2659 2658 France
## 2660 2659 Italy
## 2661 2660 Italy
## 2662 2661 Italy
## 2663 2662 US
## 2664 2663 US
## 2665 2664 US
## 2666 2665 Austria
## 2667 2666 Italy
## 2668 2667 US
## 2669 2668 US
## 2670 2669 France
## 2671 2670 US
## 2672 2671 France
## 2673 2672 US
## 2674 2673 Argentina
## 2675 2674 France
## 2676 2675 US
## 2677 2676 US
## 2678 2677 US
## 2679 2678 US
## 2680 2679 France
## 2681 2680 US
## 2682 2681 US
## 2683 2682 France
## 2684 2683 Spain
## 2685 2684 Italy
## 2686 2685 Austria
## 2687 2686 US
## 2688 2687 France
## 2689 2688 US
## 2690 2689 US
## 2691 2690 US
## 2692 2691 Italy
## 2693 2692 Mexico
## 2694 2693 Chile
## 2695 2694 Chile
## 2696 2695 US
## 2697 2696 US
## 2698 2697 US
## 2699 2698 Chile
## 2700 2699 US
## 2701 2700 US
## 2702 2701 US
## 2703 2702 Italy
## 2704 2703 Chile
## 2705 2704 Chile
## 2706 2705 Chile
## 2707 2706 US
## 2708 2707 Chile
## 2709 2708 Italy
## 2710 2709 US
## 2711 2710 US
## 2712 2711 US
## 2713 2712 Italy
## 2714 2713 Chile
## 2715 2714 US
## 2716 2715 Italy
## 2717 2716 Italy
## 2718 2717 Italy
## 2719 2718 Chile
## 2720 2719 Chile
## 2721 2720 France
## 2722 2721 France
## 2723 2722 US
## 2724 2723 France
## 2725 2724 Spain
## 2726 2725 Italy
## 2727 2726 Italy
## 2728 2727 US
## 2729 2728 France
## 2730 2729 France
## 2731 2730 Italy
## 2732 2731 US
## 2733 2732 Chile
## 2734 2733 US
## 2735 2734 Chile
## 2736 2735 US
## 2737 2736 Spain
## 2738 2737 Chile
## 2739 2738 Chile
## 2740 2739 France
## 2741 2740 US
## 2742 2741 Chile
## 2743 2742 US
## 2744 2743 Spain
## 2745 2744 France
## 2746 2745 France
## 2747 2746 Italy
## 2748 2747 Romania
## 2749 2748 Romania
## 2750 2749 Romania
## 2751 2750 US
## 2752 2751 France
## 2753 2752 Spain
## 2754 2753 Chile
## 2755 2754 France
## 2756 2755 France
## 2757 2756 Chile
## 2758 2757 US
## 2759 2758 France
## 2760 2759 Spain
## 2761 2760 Chile
## 2762 2761 Chile
## 2763 2762 Chile
## 2764 2763 US
## 2765 2764 US
## 2766 2765 US
## 2767 2766 US
## 2768 2767 Spain
## 2769 2768 France
## 2770 2769 France
## 2771 2770 US
## 2772 2771 US
## 2773 2772 Chile
## 2774 2773 Chile
## 2775 2774 Chile
## 2776 2775 US
## 2777 2776 US
## 2778 2777 Chile
## 2779 2778 US
## 2780 2779 Chile
## 2781 2780 Portugal
## 2782 2781 US
## 2783 2782 Portugal
## 2784 2783 US
## 2785 2784 US
## 2786 2785 US
## 2787 2786 US
## 2788 2787 Portugal
## 2789 2788 Portugal
## 2790 2789 France
## 2791 2790 US
## 2792 2791 US
## 2793 2792 Portugal
## 2794 2793 US
## 2795 2794 US
## 2796 2795 Argentina
## 2797 2796 France
## 2798 2797 US
## 2799 2798 US
## 2800 2799 Portugal
## 2801 2800 US
## 2802 2801 US
## 2803 2802 France
## 2804 2803 US
## 2805 2804 Italy
## 2806 2805 US
## 2807 2806 Spain
## 2808 2807 US
## 2809 2808 US
## 2810 2809 Italy
## 2811 2810 US
## 2812 2811 US
## 2813 2812 US
## 2814 2813 US
## 2815 2814 US
## 2816 2815 Italy
## 2817 2816 US
## 2818 2817 Italy
## 2819 2818 Spain
## 2820 2819 US
## 2821 2820 Italy
## 2822 2821 Spain
## 2823 2822 Italy
## 2824 2823 Italy
## 2825 2824 France
## 2826 2825 US
## 2827 2826 France
## 2828 2827 France
## 2829 2828 France
## 2830 2829 France
## 2831 2830 France
## 2832 2831 France
## 2833 2832 France
## 2834 2833 Italy
## 2835 2834 US
## 2836 2835 Italy
## 2837 2836 France
## 2838 2837 New Zealand
## 2839 2838 US
## 2840 2839 Italy
## 2841 2840 Italy
## 2842 2841 France
## 2843 2842 France
## 2844 2843 France
## 2845 2844 France
## 2846 2845 US
## 2847 2846 Italy
## 2848 2847 US
## 2849 2848 US
## 2850 2849 Italy
## 2851 2850 US
## 2852 2851 US
## 2853 2852 US
## 2854 2853 Italy
## 2855 2854 Chile
## 2856 2855 Italy
## 2857 2856 US
## 2858 2857 US
## 2859 2858 Chile
## 2860 2859 Italy
## 2861 2860 Italy
## 2862 2861 US
## 2863 2862 Italy
## 2864 2863 US
## 2865 2864 Spain
## 2866 2865 US
## 2867 2866 Portugal
## 2868 2867 US
## 2869 2868 US
## 2870 2869 US
## 2871 2870 Italy
## 2872 2871 France
## 2873 2872 Italy
## 2874 2873 US
## 2875 2874 US
## 2876 2875 US
## 2877 2876 France
## 2878 2877 Italy
## 2879 2878 US
## 2880 2879 US
## 2881 2880 US
## 2882 2881 US
## 2883 2882 US
## 2884 2883 US
## 2885 2884 US
## 2886 2885 US
## 2887 2886 US
## 2888 2887 US
## 2889 2888 US
## 2890 2889 France
## 2891 2890 France
## 2892 2891 France
## 2893 2892 Italy
## 2894 2893 France
## 2895 2894 Spain
## 2896 2895 France
## 2897 2896 US
## 2898 2897 France
## 2899 2898 Italy
## 2900 2899 Portugal
## 2901 2900 US
## 2902 2901 Spain
## 2903 2902 Portugal
## 2904 2903 Italy
## 2905 2904 France
## 2906 2905 France
## 2907 2906 US
## 2908 2907 Spain
## 2909 2908 Italy
## 2910 2909 France
## 2911 2910 France
## 2912 2911 Spain
## 2913 2912 Germany
## 2914 2913 Spain
## 2915 2914 Italy
## 2916 2915 US
## 2917 2916 Spain
## 2918 2917 US
## 2919 2918 Portugal
## 2920 2919 Italy
## 2921 2920 Portugal
## 2922 2921 Portugal
## 2923 2922 US
## 2924 2923 US
## 2925 2924 Chile
## 2926 2925 Argentina
## 2927 2926 France
## 2928 2927 US
## 2929 2928 US
## 2930 2929 US
## 2931 2930 Chile
## 2932 2931 US
## 2933 2932 US
## 2934 2933 US
## 2935 2934 Argentina
## 2936 2935 Argentina
## 2937 2936 US
## 2938 2937 US
## 2939 2938 US
## 2940 2939 US
## 2941 2940 US
## 2942 2941 US
## 2943 2942 Argentina
## 2944 2943 US
## 2945 2944 US
## 2946 2945 US
## 2947 2946 US
## 2948 2947 Argentina
## 2949 2948 US
## 2950 2949 Australia
## 2951 2950 US
## 2952 2951 US
## 2953 2952 US
## 2954 2953 Australia
## 2955 2954 Argentina
## 2956 2955 US
## 2957 2956 Australia
## 2958 2957 US
## 2959 2958 Australia
## 2960 2959 France
## 2961 2960 Spain
## 2962 2961 US
## 2963 2962 Spain
## 2964 2963 Italy
## 2965 2964 Argentina
## 2966 2965 Australia
## 2967 2966 Italy
## 2968 2967 US
## 2969 2968 US
## 2970 2969 US
## 2971 2970 Spain
## 2972 2971 Australia
## 2973 2972 US
## 2974 2973 US
## 2975 2974 US
## 2976 2975 France
## 2977 2976 France
## 2978 2977 France
## 2979 2978 France
## 2980 2979 France
## 2981 2980 France
## 2982 2981 Australia
## 2983 2982 Australia
## 2984 2983 US
## 2985 2984 US
## 2986 2985 US
## 2987 2986 US
## 2988 2987 Italy
## 2989 2988 Germany
## 2990 2989 US
## 2991 2990 US
## 2992 2991 US
## 2993 2992 Austria
## 2994 2993 Australia
## 2995 2994 US
## 2996 2995 US
## 2997 2996 Italy
## 2998 2997 France
## 2999 2998 Italy
## 3000 2999 France
## 3001 3000 Germany
## 3002 3001 Italy
## 3003 3002 Spain
## 3004 3003 Spain
## 3005 3004 Italy
## 3006 3005 US
## 3007 3006 US
## 3008 3007 US
## 3009 3008 US
## 3010 3009 US
## 3011 3010 France
## 3012 3011 Italy
## 3013 3012 Spain
## 3014 3013 US
## 3015 3014 France
## 3016 3015 Italy
## 3017 3016 France
## 3018 3017 Austria
## 3019 3018 US
## 3020 3019 France
## 3021 3020 US
## 3022 3021 Spain
## 3023 3022 US
## 3024 3023 US
## 3025 3024 US
## 3026 3025 Austria
## 3027 3026 US
## 3028 3027 Spain
## 3029 3028 US
## 3030 3029 US
## 3031 3030 US
## 3032 3031 Portugal
## 3033 3032 Spain
## 3034 3033 US
## 3035 3034 Italy
## 3036 3035 US
## 3037 3036 US
## 3038 3037 Italy
## 3039 3038 Portugal
## 3040 3039 Portugal
## 3041 3040 Spain
## 3042 3041 US
## 3043 3042 US
## 3044 3043 US
## 3045 3044 France
## 3046 3045 Argentina
## 3047 3046 France
## 3048 3047 US
## 3049 3048 US
## 3050 3049 Portugal
## 3051 3050 Italy
## 3052 3051 Germany
## 3053 3052 US
## 3054 3053 US
## 3055 3054 US
## 3056 3055 US
## 3057 3056 Argentina
## 3058 3057 Argentina
## 3059 3058 France
## 3060 3059 US
## 3061 3060 US
## 3062 3061 US
## 3063 3062 US
## 3064 3063 France
## 3065 3064 US
## 3066 3065 Italy
## 3067 3066 US
## 3068 3067 US
## 3069 3068 France
## 3070 3069 France
## 3071 3070 US
## 3072 3071 France
## 3073 3072 France
## 3074 3073 US
## 3075 3074 US
## 3076 3075 US
## 3077 3076 US
## 3078 3077 US
## 3079 3078 US
## 3080 3079 US
## 3081 3080 Australia
## 3082 3081 US
## 3083 3082 Italy
## 3084 3083 Italy
## 3085 3084 Italy
## 3086 3085 Italy
## 3087 3086 US
## 3088 3087 US
## 3089 3088 Italy
## 3090 3089 US
## 3091 3090 Italy
## 3092 3091 Italy
## 3093 3092 Australia
## 3094 3093 Chile
## 3095 3094 France
## 3096 3095 Italy
## 3097 3096 Italy
## 3098 3097 Italy
## 3099 3098 Spain
## 3100 3099 Australia
## 3101 3100 US
## 3102 3101 US
## 3103 3102 Chile
## 3104 3103 Chile
## 3105 3104 Chile
## 3106 3105 Italy
## 3107 3106 Italy
## 3108 3107 France
## 3109 3108 Italy
## 3110 3109 France
## 3111 3110 Chile
## 3112 3111 France
## 3113 3112 France
## 3114 3113 US
## 3115 3114 US
## 3116 3115 US
## 3117 3116 US
## 3118 3117 US
## 3119 3118 US
## 3120 3119 US
## 3121 3120 Argentina
## 3122 3121 Italy
## 3123 3122 France
## 3124 3123 US
## 3125 3124 US
## 3126 3125 US
## 3127 3126 US
## 3128 3127 US
## 3129 3128 US
## 3130 3129 US
## 3131 3130 US
## 3132 3131
## 3133 3132 Spain
## 3134 3133 France
## 3135 3134 France
## 3136 3135 Australia
## 3137 3136 Argentina
## 3138 3137 Austria
## 3139 3138 Austria
## 3140 3139 Austria
## 3141 3140 US
## 3142 3141 US
## 3143 3142 US
## 3144 3143 US
## 3145 3144 France
## 3146 3145 US
## 3147 3146 Austria
## 3148 3147 US
## 3149 3148 Argentina
## 3150 3149 Argentina
## 3151 3150 US
## 3152 3151 Austria
## 3153 3152 US
## 3154 3153 US
## 3155 3154 Spain
## 3156 3155 US
## 3157 3156 New Zealand
## 3158 3157 Argentina
## 3159 3158 Argentina
## 3160 3159 Argentina
## 3161 3160 France
## 3162 3161 Italy
## 3163 3162 Italy
## 3164 3163 France
## 3165 3164 US
## 3166 3165 Argentina
## 3167 3166 Italy
## 3168 3167 Italy
## 3169 3168 Italy
## 3170 3169 Italy
## 3171 3170 Italy
## 3172 3171 Italy
## 3173 3172 Italy
## 3174 3173 US
## 3175 3174 US
## 3176 3175 US
## 3177 3176 France
## 3178 3177 France
## 3179 3178 US
## 3180 3179 Argentina
## 3181 3180 France
## 3182 3181 France
## 3183 3182 France
## 3184 3183 France
## 3185 3184 US
## 3186 3185 Italy
## 3187 3186 US
## 3188 3187 Austria
## 3189 3188 US
## 3190 3189 US
## 3191 3190 US
## 3192 3191 France
## 3193 3192 US
## 3194 3193 France
## 3195 3194 US
## 3196 3195 France
## 3197 3196 Italy
## 3198 3197 US
## 3199 3198 Austria
## 3200 3199 Austria
## 3201 3200 France
## 3202 3201 Italy
## 3203 3202 Austria
## 3204 3203 US
## 3205 3204 US
## 3206 3205 US
## 3207 3206 US
## 3208 3207 Italy
## 3209 3208 US
## 3210 3209 US
## 3211 3210 Spain
## 3212 3211 Spain
## 3213 3212 US
## 3214 3213 Spain
## 3215 3214 Italy
## 3216 3215 US
## 3217 3216 Spain
## 3218 3217 Italy
## 3219 3218 France
## 3220 3219 France
## 3221 3220 France
## 3222 3221 US
## 3223 3222 US
## 3224 3223 US
## 3225 3224 Spain
## 3226 3225 US
## 3227 3226 Italy
## 3228 3227 US
## 3229 3228 US
## 3230 3229 Italy
## 3231 3230 US
## 3232 3231 Spain
## 3233 3232 US
## 3234 3233 US
## 3235 3234 Austria
## 3236 3235 US
## 3237 3236 Chile
## 3238 3237 Spain
## 3239 3238 US
## 3240 3239 Italy
## 3241 3240 US
## 3242 3241 US
## 3243 3242 US
## 3244 3243 Italy
## 3245 3244 US
## 3246 3245 US
## 3247 3246 France
## 3248 3247 US
## 3249 3248 Italy
## 3250 3249 US
## 3251 3250 US
## 3252 3251 France
## 3253 3252 France
## 3254 3253 Italy
## 3255 3254 US
## 3256 3255 Italy
## 3257 3256 US
## 3258 3257 US
## 3259 3258 US
## 3260 3259 US
## 3261 3260 Spain
## 3262 3261 Austria
## 3263 3262 US
## 3264 3263 New Zealand
## 3265 3264 France
## 3266 3265 France
## 3267 3266 Spain
## 3268 3267 Italy
## 3269 3268 France
## 3270 3269 US
## 3271 3270 France
## 3272 3271 Portugal
## 3273 3272 Italy
## 3274 3273 Portugal
## 3275 3274 Italy
## 3276 3275 Italy
## 3277 3276 US
## 3278 3277 Australia
## 3279 3278 Portugal
## 3280 3279 US
## 3281 3280 US
## 3282 3281 Argentina
## 3283 3282 Italy
## 3284 3283 Italy
## 3285 3284 Argentina
## 3286 3285 US
## 3287 3286 US
## 3288 3287 Italy
## 3289 3288 Australia
## 3290 3289 US
## 3291 3290 Italy
## 3292 3291 US
## 3293 3292 US
## 3294 3293 US
## 3295 3294 Portugal
## 3296 3295 US
## 3297 3296 US
## 3298 3297 Portugal
## 3299 3298 Portugal
## 3300 3299 Spain
## 3301 3300 South Africa
## 3302 3301 US
## 3303 3302 Spain
## 3304 3303 Italy
## 3305 3304 US
## 3306 3305 US
## 3307 3306 US
## 3308 3307 Italy
## 3309 3308 Portugal
## 3310 3309 Italy
## 3311 3310 Italy
## 3312 3311 US
## 3313 3312 Spain
## 3314 3313 US
## 3315 3314 Israel
## 3316 3315 Italy
## 3317 3316 US
## 3318 3317 US
## 3319 3318 Spain
## 3320 3319 Italy
## 3321 3320 Israel
## 3322 3321 Spain
## 3323 3322 New Zealand
## 3324 3323 Italy
## 3325 3324 France
## 3326 3325 New Zealand
## 3327 3326 US
## 3328 3327 Italy
## 3329 3328 US
## 3330 3329 Spain
## 3331 3330 Italy
## 3332 3331 France
## 3333 3332 US
## 3334 3333 France
## 3335 3334 US
## 3336 3335 France
## 3337 3336 US
## 3338 3337 Italy
## 3339 3338 US
## 3340 3339 US
## 3341 3340 France
## 3342 3341 Spain
## 3343 3342 France
## 3344 3343 Turkey
## 3345 3344 US
## 3346 3345 France
## 3347 3346 Spain
## 3348 3347 France
## 3349 3348 France
## 3350 3349 France
## 3351 3350 US
## 3352 3351 US
## 3353 3352 France
## 3354 3353 France
## 3355 3354 France
## 3356 3355 US
## 3357 3356 US
## 3358 3357 US
## 3359 3358 Spain
## 3360 3359 Spain
## 3361 3360 Germany
## 3362 3361 US
## 3363 3362 US
## 3364 3363 Australia
## 3365 3364 US
## 3366 3365 Portugal
## 3367 3366 US
## 3368 3367 US
## 3369 3368 US
## 3370 3369 US
## 3371 3370 US
## 3372 3371 US
## 3373 3372 US
## 3374 3373 US
## 3375 3374 France
## 3376 3375 US
## 3377 3376 US
## 3378 3377 US
## 3379 3378 Portugal
## 3380 3379 US
## 3381 3380 US
## 3382 3381 Germany
## 3383 3382 Germany
## 3384 3383 US
## 3385 3384 US
## 3386 3385 Spain
## 3387 3386 US
## 3388 3387 Portugal
## 3389 3388 Portugal
## 3390 3389 US
## 3391 3390 Spain
## 3392 3391 Argentina
## 3393 3392 Spain
## 3394 3393 US
## 3395 3394 US
## 3396 3395 US
## 3397 3396 Argentina
## 3398 3397 US
## 3399 3398 US
## 3400 3399 Argentina
## 3401 3400 Portugal
## 3402 3401 Portugal
## 3403 3402 Portugal
## 3404 3403 US
## 3405 3404 US
## 3406 3405 US
## 3407 3406 Portugal
## 3408 3407 Portugal
## 3409 3408 Spain
## 3410 3409 US
## 3411 3410 Spain
## 3412 3411 Portugal
## 3413 3412 US
## 3414 3413 Portugal
## 3415 3414 Italy
## 3416 3415 US
## 3417 3416 Spain
## 3418 3417 US
## 3419 3418 US
## 3420 3419 US
## 3421 3420 Portugal
## 3422 3421 Portugal
## 3423 3422 Chile
## 3424 3423 US
## 3425 3424 US
## 3426 3425 France
## 3427 3426 Portugal
## 3428 3427 Portugal
## 3429 3428 US
## 3430 3429 US
## 3431 3430 US
## 3432 3431 France
## 3433 3432 US
## 3434 3433 US
## 3435 3434 Spain
## 3436 3435 US
## 3437 3436 US
## 3438 3437 US
## 3439 3438 US
## 3440 3439 Spain
## 3441 3440 Portugal
## 3442 3441 US
## 3443 3442 Portugal
## 3444 3443 Portugal
## 3445 3444 Portugal
## 3446 3445 US
## 3447 3446 US
## 3448 3447 Italy
## 3449 3448 Italy
## 3450 3449 US
## 3451 3450 US
## 3452 3451 Australia
## 3453 3452 Argentina
## 3454 3453 US
## 3455 3454 Australia
## 3456 3455 US
## 3457 3456 Argentina
## 3458 3457 Argentina
## 3459 3458 US
## 3460 3459 Australia
## 3461 3460 US
## 3462 3461 US
## 3463 3462 Greece
## 3464 3463 Italy
## 3465 3464 France
## 3466 3465 Italy
## 3467 3466 US
## 3468 3467 Portugal
## 3469 3468 US
## 3470 3469 US
## 3471 3470 Italy
## 3472 3471 Spain
## 3473 3472 France
## 3474 3473 Portugal
## 3475 3474 Israel
## 3476 3475 US
## 3477 3476 France
## 3478 3477 France
## 3479 3478 France
## 3480 3479 France
## 3481 3480 France
## 3482 3481 Portugal
## 3483 3482 France
## 3484 3483 France
## 3485 3484 US
## 3486 3485 US
## 3487 3486 France
## 3488 3487 US
## 3489 3488 Italy
## 3490 3489 US
## 3491 3490 Italy
## 3492 3491 US
## 3493 3492 Chile
## 3494 3493 US
## 3495 3494 Italy
## 3496 3495 Germany
## 3497 3496 Chile
## 3498 3497 France
## 3499 3498 Italy
## 3500 3499 US
## 3501 3500 US
## 3502 3501 France
## 3503 3502 US
## 3504 3503 US
## 3505 3504 US
## 3506 3505 US
## 3507 3506 US
## 3508 3507 US
## 3509 3508 US
## 3510 3509 Italy
## 3511 3510 Italy
## 3512 3511 US
## 3513 3512 Italy
## 3514 3513 US
## 3515 3514 US
## 3516 3515 US
## 3517 3516 France
## 3518 3517 US
## 3519 3518 Spain
## 3520 3519 France
## 3521 3520 US
## 3522 3521 US
## 3523 3522 US
## 3524 3523 Italy
## 3525 3524 France
## 3526 3525 France
## 3527 3526 Italy
## 3528 3527 Italy
## 3529 3528 US
## 3530 3529 Germany
## 3531 3530 Italy
## 3532 3531 Austria
## 3533 3532 Australia
## 3534 3533 US
## 3535 3534 Australia
## 3536 3535 US
## 3537 3536 Austria
## 3538 3537 France
## 3539 3538 Austria
## 3540 3539 Italy
## 3541 3540 Italy
## 3542 3541 Italy
## 3543 3542 US
## 3544 3543 US
## 3545 3544 Italy
## 3546 3545 US
## 3547 3546 US
## 3548 3547 Australia
## 3549 3548 Italy
## 3550 3549 US
## 3551 3550 Austria
## 3552 3551 US
## 3553 3552 Germany
## 3554 3553 US
## 3555 3554 Australia
## 3556 3555 Austria
## 3557 3556 US
## 3558 3557 Austria
## 3559 3558 US
## 3560 3559 France
## 3561 3560 Hungary
## 3562 3561 US
## 3563 3562 US
## 3564 3563 Italy
## 3565 3564 Italy
## 3566 3565 Portugal
## 3567 3566 France
## 3568 3567 France
## 3569 3568 Portugal
## 3570 3569 Germany
## 3571 3570 Italy
## 3572 3571 Argentina
## 3573 3572 US
## 3574 3573 Argentina
## 3575 3574 Portugal
## 3576 3575 France
## 3577 3576 Luxembourg
## 3578 3577 US
## 3579 3578 US
## 3580 3579 Argentina
## 3581 3580 US
## 3582 3581 US
## 3583 3582 US
## 3584 3583 Germany
## 3585 3584 US
## 3586 3585 Portugal
## 3587 3586 Italy
## 3588 3587 France
## 3589 3588 Israel
## 3590 3589 Italy
## 3591 3590 France
## 3592 3591 France
## 3593 3592 France
## 3594 3593 US
## 3595 3594 Australia
## 3596 3595 Australia
## 3597 3596 US
## 3598 3597 France
## 3599 3598 Australia
## 3600 3599 US
## 3601 3600 US
## 3602 3601 US
## 3603 3602 France
## 3604 3603 France
## 3605 3604 US
## 3606 3605 Italy
## 3607 3606 Portugal
## 3608 3607 US
## 3609 3608 US
## 3610 3609 US
## 3611 3610 Chile
## 3612 3611 US
## 3613 3612 Portugal
## 3614 3613 Chile
## 3615 3614 Spain
## 3616 3615 France
## 3617 3616 Portugal
## 3618 3617 US
## 3619 3618 US
## 3620 3619 Chile
## 3621 3620 Chile
## 3622 3621 Portugal
## 3623 3622 US
## 3624 3623 US
## 3625 3624 US
## 3626 3625 US
## 3627 3626 US
## 3628 3627 Chile
## 3629 3628 US
## 3630 3629 US
## 3631 3630 Chile
## 3632 3631 Chile
## 3633 3632 US
## 3634 3633 US
## 3635 3634 US
## 3636 3635 Chile
## 3637 3636 US
## 3638 3637 Chile
## 3639 3638 US
## 3640 3639 Chile
## 3641 3640 Portugal
## 3642 3641 Chile
## 3643 3642 France
## 3644 3643 France
## 3645 3644 France
## 3646 3645 Italy
## 3647 3646 Austria
## 3648 3647 Austria
## 3649 3648 US
## 3650 3649 US
## 3651 3650 US
## 3652 3651 US
## 3653 3652 Austria
## 3654 3653 US
## 3655 3654 US
## 3656 3655 US
## 3657 3656 Austria
## 3658 3657 Argentina
## 3659 3658 US
## 3660 3659 US
## 3661 3660 US
## 3662 3661 US
## 3663 3662 US
## 3664 3663 US
## 3665 3664 US
## 3666 3665 US
## 3667 3666 Chile
## 3668 3667 New Zealand
## 3669 3668 US
## 3670 3669 US
## 3671 3670 US
## 3672 3671 France
## 3673 3672 US
## 3674 3673 Chile
## 3675 3674 US
## 3676 3675 Italy
## 3677 3676 France
## 3678 3677 US
## 3679 3678 US
## 3680 3679 Australia
## 3681 3680 South Africa
## 3682 3681 Chile
## 3683 3682 South Africa
## 3684 3683 South Africa
## 3685 3684 South Africa
## 3686 3685 New Zealand
## 3687 3686 US
## 3688 3687 France
## 3689 3688 US
## 3690 3689 Portugal
## 3691 3690 France
## 3692 3691 France
## 3693 3692 Spain
## 3694 3693 France
## 3695 3694 Italy
## 3696 3695 Italy
## 3697 3696 US
## 3698 3697 Spain
## 3699 3698 France
## 3700 3699 France
## 3701 3700 Italy
## 3702 3701 Argentina
## 3703 3702 Germany
## 3704 3703 Argentina
## 3705 3704 US
## 3706 3705 Italy
## 3707 3706 Germany
## 3708 3707 US
## 3709 3708 US
## 3710 3709 Spain
## 3711 3710 Portugal
## 3712 3711 Argentina
## 3713 3712 US
## 3714 3713 Italy
## 3715 3714 Italy
## 3716 3715 Germany
## 3717 3716 Germany
## 3718 3717 Italy
## 3719 3718 Spain
## 3720 3719 US
## 3721 3720 Spain
## 3722 3721 US
## 3723 3722 Portugal
## 3724 3723 US
## 3725 3724 France
## 3726 3725 France
## 3727 3726 France
## 3728 3727 Italy
## 3729 3728 Spain
## 3730 3729 France
## 3731 3730 France
## 3732 3731 Chile
## 3733 3732 US
## 3734 3733 France
## 3735 3734 France
## 3736 3735 France
## 3737 3736 France
## 3738 3737 Spain
## 3739 3738 Greece
## 3740 3739 Portugal
## 3741 3740 Italy
## 3742 3741 France
## 3743 3742 Italy
## 3744 3743 Chile
## 3745 3744 Italy
## 3746 3745 US
## 3747 3746 US
## 3748 3747 Chile
## 3749 3748 US
## 3750 3749 France
## 3751 3750 US
## 3752 3751 France
## 3753 3752 France
## 3754 3753 France
## 3755 3754 Spain
## 3756 3755 Chile
## 3757 3756 Italy
## 3758 3757 US
## 3759 3758 France
## 3760 3759 Argentina
## 3761 3760 Argentina
## 3762 3761 Italy
## 3763 3762 US
## 3764 3763 New Zealand
## 3765 3764 US
## 3766 3765 US
## 3767 3766 US
## 3768 3767 Spain
## 3769 3768 Italy
## 3770 3769 Italy
## 3771 3770 US
## 3772 3771 France
## 3773 3772 US
## 3774 3773 US
## 3775 3774 US
## 3776 3775 US
## 3777 3776 Italy
## 3778 3777 US
## 3779 3778 US
## 3780 3779 US
## 3781 3780 US
## 3782 3781 New Zealand
## 3783 3782 US
## 3784 3783 France
## 3785 3784 US
## 3786 3785 Italy
## 3787 3786 Italy
## 3788 3787 US
## 3789 3788 US
## 3790 3789 Austria
## 3791 3790 US
## 3792 3791 US
## 3793 3792 Italy
## 3794 3793 US
## 3795 3794 US
## 3796 3795 US
## 3797 3796 Italy
## 3798 3797 Italy
## 3799 3798 Italy
## 3800 3799 Italy
## 3801 3800 US
## 3802 3801 Chile
## 3803 3802 US
## 3804 3803 US
## 3805 3804 Italy
## 3806 3805 Spain
## 3807 3806 US
## 3808 3807 US
## 3809 3808 Spain
## 3810 3809 Chile
## 3811 3810 US
## 3812 3811 France
## 3813 3812 US
## 3814 3813 France
## 3815 3814 France
## 3816 3815 France
## 3817 3816 France
## 3818 3817 Italy
## 3819 3818 Portugal
## 3820 3819 Portugal
## 3821 3820 US
## 3822 3821 Spain
## 3823 3822 US
## 3824 3823 France
## 3825 3824 France
## 3826 3825 France
## 3827 3826 Italy
## 3828 3827 US
## 3829 3828 US
## 3830 3829 France
## 3831 3830 Italy
## 3832 3831 US
## 3833 3832 France
## 3834 3833 France
## 3835 3834 France
## 3836 3835 Italy
## 3837 3836 Portugal
## 3838 3837 Italy
## 3839 3838 France
## 3840 3839 US
## 3841 3840 US
## 3842 3841 Portugal
## 3843 3842 Italy
## 3844 3843 Portugal
## 3845 3844 Italy
## 3846 3845 France
## 3847 3846 US
## 3848 3847 Italy
## 3849 3848 Italy
## 3850 3849 US
## 3851 3850 Germany
## 3852 3851 US
## 3853 3852 France
## 3854 3853 France
## 3855 3854 France
## 3856 3855 US
## 3857 3856 Chile
## 3858 3857 US
## 3859 3858 US
## 3860 3859 US
## 3861 3860 US
## 3862 3861 US
## 3863 3862 Italy
## 3864 3863 France
## 3865 3864 US
## 3866 3865 US
## 3867 3866 US
## 3868 3867 Italy
## 3869 3868 US
## 3870 3869 US
## 3871 3870 France
## 3872 3871 Germany
## 3873 3872 US
## 3874 3873 US
## 3875 3874 US
## 3876 3875 Italy
## 3877 3876 US
## 3878 3877 France
## 3879 3878 US
## 3880 3879 US
## 3881 3880 Australia
## 3882 3881 US
## 3883 3882 Portugal
## 3884 3883 Italy
## 3885 3884 US
## 3886 3885 Spain
## 3887 3886 Australia
## 3888 3887 Spain
## 3889 3888 US
## 3890 3889 US
## 3891 3890 Spain
## 3892 3891 Portugal
## 3893 3892 US
## 3894 3893 US
## 3895 3894 France
## 3896 3895 Spain
## 3897 3896 US
## 3898 3897 Spain
## 3899 3898 US
## 3900 3899 US
## 3901 3900 Italy
## 3902 3901 US
## 3903 3902 Italy
## 3904 3903 Portugal
## 3905 3904 US
## 3906 3905 Italy
## 3907 3906 France
## 3908 3907 Italy
## 3909 3908 Italy
## 3910 3909 Italy
## 3911 3910 Italy
## 3912 3911 Italy
## 3913 3912 US
## 3914 3913 France
## 3915 3914 Italy
## 3916 3915 US
## 3917 3916 US
## 3918 3917 Argentina
## 3919 3918 Italy
## 3920 3919 Spain
## 3921 3920 US
## 3922 3921 US
## 3923 3922 Portugal
## 3924 3923 US
## 3925 3924 Italy
## 3926 3925 US
## 3927 3926 Italy
## 3928 3927 Italy
## 3929 3928 US
## 3930 3929 Argentina
## 3931 3930 Argentina
## 3932 3931 US
## 3933 3932 US
## 3934 3933 Argentina
## 3935 3934 Argentina
## 3936 3935 Spain
## 3937 3936 US
## 3938 3937 US
## 3939 3938 Portugal
## 3940 3939 US
## 3941 3940 Argentina
## 3942 3941 Argentina
## 3943 3942 US
## 3944 3943 US
## 3945 3944 Spain
## 3946 3945 Portugal
## 3947 3946 US
## 3948 3947 Australia
## 3949 3948 Portugal
## 3950 3949 Australia
## 3951 3950 Portugal
## 3952 3951 Argentina
## 3953 3952 Australia
## 3954 3953 Spain
## 3955 3954 Italy
## 3956 3955 France
## 3957 3956 France
## 3958 3957 US
## 3959 3958 Chile
## 3960 3959 Chile
## 3961 3960 US
## 3962 3961 Argentina
## 3963 3962 Austria
## 3964 3963 France
## 3965 3964 France
## 3966 3965 US
## 3967 3966 US
## 3968 3967 US
## 3969 3968 Italy
## 3970 3969 South Africa
## 3971 3970 Italy
## 3972 3971 France
## 3973 3972 France
## 3974 3973 France
## 3975 3974 US
## 3976 3975 US
## 3977 3976 US
## 3978 3977 Italy
## 3979 3978 Italy
## 3980 3979 New Zealand
## 3981 3980 US
## 3982 3981 US
## 3983 3982 New Zealand
## 3984 3983 Austria
## 3985 3984 Italy
## 3986 3985 US
## 3987 3986 Italy
## 3988 3987 Italy
## 3989 3988 Italy
## 3990 3989 Italy
## 3991 3990 Italy
## 3992 3991 US
## 3993 3992 US
## 3994 3993 US
## 3995 3994 US
## 3996 3995 Argentina
## 3997 3996 Italy
## 3998 3997 US
## 3999 3998 Spain
## 4000 3999 US
## 4001 4000 Spain
## 4002 4001 US
## 4003 4002 Argentina
## 4004 4003 US
## 4005 4004 France
## 4006 4005 France
## 4007 4006 Italy
## 4008 4007 Croatia
## 4009 4008 US
## 4010 4009 US
## 4011 4010 Italy
## 4012 4011 Argentina
## 4013 4012 South Africa
## 4014 4013 US
## 4015 4014 US
## 4016 4015 New Zealand
## 4017 4016 Spain
## 4018 4017 New Zealand
## 4019 4018 Italy
## 4020 4019 Croatia
## 4021 4020 US
## 4022 4021 US
## 4023 4022 US
## 4024 4023 Spain
## 4025 4024 South Africa
## 4026 4025 South Africa
## 4027 4026 Italy
## 4028 4027 US
## 4029 4028 US
## 4030 4029 US
## 4031 4030 US
## 4032 4031 US
## 4033 4032 France
## 4034 4033 US
## 4035 4034 US
## 4036 4035 France
## 4037 4036 France
## 4038 4037 France
## 4039 4038 France
## 4040 4039 Italy
## 4041 4040 Italy
## 4042 4041 US
## 4043 4042 US
## 4044 4043 US
## 4045 4044 US
## 4046 4045 Argentina
## 4047 4046 Chile
## 4048 4047 US
## 4049 4048 Georgia
## 4050 4049 New Zealand
## 4051 4050 Argentina
## 4052 4051 Uruguay
## 4053 4052 US
## 4054 4053 Italy
## 4055 4054 Argentina
## 4056 4055 US
## 4057 4056 US
## 4058 4057 US
## 4059 4058 US
## 4060 4059 US
## 4061 4060 France
## 4062 4061 US
## 4063 4062 US
## 4064 4063 US
## 4065 4064 US
## 4066 4065 US
## 4067 4066 US
## 4068 4067 Italy
## 4069 4068 Italy
## 4070 4069 US
## 4071 4070 Italy
## 4072 4071 US
## 4073 4072 US
## 4074 4073 England
## 4075 4074 US
## 4076 4075 US
## 4077 4076 US
## 4078 4077 US
## 4079 4078 US
## 4080 4079 US
## 4081 4080 US
## 4082 4081 France
## 4083 4082 US
## 4084 4083 US
## 4085 4084 US
## 4086 4085 Chile
## 4087 4086 US
## 4088 4087 US
## 4089 4088 Spain
## 4090 4089 Italy
## 4091 4090 Portugal
## 4092 4091 Portugal
## 4093 4092 Portugal
## 4094 4093 Portugal
## 4095 4094 US
## 4096 4095 US
## 4097 4096 US
## 4098 4097 Portugal
## 4099 4098 Chile
## 4100 4099 Australia
## 4101 4100 US
## 4102 4101 US
## 4103 4102 US
## 4104 4103 US
## 4105 4104 Uruguay
## 4106 4105 US
## 4107 4106 US
## 4108 4107 Portugal
## 4109 4108 Portugal
## 4110 4109 Chile
## 4111 4110 US
## 4112 4111 US
## 4113 4112 US
## 4114 4113 US
## 4115 4114 Germany
## 4116 4115 Germany
## 4117 4116 US
## 4118 4117 US
## 4119 4118 US
## 4120 4119 Italy
## 4121 4120 Germany
## 4122 4121 France
## 4123 4122 France
## 4124 4123 US
## 4125 4124 US
## 4126 4125 Italy
## 4127 4126 Italy
## 4128 4127 France
## 4129 4128 France
## 4130 4129 France
## 4131 4130 US
## 4132 4131 France
## 4133 4132 US
## 4134 4133 US
## 4135 4134 Portugal
## 4136 4135 France
## 4137 4136 Portugal
## 4138 4137 Australia
## 4139 4138 France
## 4140 4139 Portugal
## 4141 4140 US
## 4142 4141 France
## 4143 4142 France
## 4144 4143 US
## 4145 4144 Italy
## 4146 4145 Portugal
## 4147 4146 US
## 4148 4147 US
## 4149 4148 US
## 4150 4149 US
## 4151 4150 US
## 4152 4151 France
## 4153 4152 US
## 4154 4153 US
## 4155 4154 Italy
## 4156 4155 France
## 4157 4156 US
## 4158 4157 US
## 4159 4158 US
## 4160 4159 US
## 4161 4160 US
## 4162 4161 US
## 4163 4162 Portugal
## 4164 4163 Italy
## 4165 4164 Portugal
## 4166 4165 US
## 4167 4166 Italy
## 4168 4167 US
## 4169 4168 US
## 4170 4169 Germany
## 4171 4170 US
## 4172 4171 US
## 4173 4172 US
## 4174 4173 US
## 4175 4174 US
## 4176 4175 US
## 4177 4176 US
## 4178 4177 US
## 4179 4178 US
## 4180 4179 US
## 4181 4180 US
## 4182 4181 US
## 4183 4182 Chile
## 4184 4183 France
## 4185 4184 France
## 4186 4185 Italy
## 4187 4186 US
## 4188 4187 US
## 4189 4188 US
## 4190 4189 US
## 4191 4190 Italy
## 4192 4191 US
## 4193 4192 Chile
## 4194 4193 US
## 4195 4194 US
## 4196 4195 US
## 4197 4196 Chile
## 4198 4197 France
## 4199 4198 Chile
## 4200 4199 Chile
## 4201 4200 US
## 4202 4201 US
## 4203 4202 Italy
## 4204 4203 US
## 4205 4204 France
## 4206 4205 US
## 4207 4206 South Africa
## 4208 4207 Argentina
## 4209 4208 France
## 4210 4209 Italy
## 4211 4210 Spain
## 4212 4211 Portugal
## 4213 4212 Portugal
## 4214 4213 Portugal
## 4215 4214 US
## 4216 4215 Germany
## 4217 4216 US
## 4218 4217 Italy
## 4219 4218 Portugal
## 4220 4219 Argentina
## 4221 4220 US
## 4222 4221 Italy
## 4223 4222 Italy
## 4224 4223 Argentina
## 4225 4224 US
## 4226 4225 Portugal
## 4227 4226 US
## 4228 4227 France
## 4229 4228 US
## 4230 4229 US
## 4231 4230 Italy
## 4232 4231 Argentina
## 4233 4232 US
## 4234 4233 US
## 4235 4234 US
## 4236 4235 New Zealand
## 4237 4236 US
## 4238 4237 US
## 4239 4238 US
## 4240 4239 France
## 4241 4240 US
## 4242 4241 Chile
## 4243 4242 US
## 4244 4243
## 4245 4244 US
## 4246 4245 US
## 4247 4246 US
## 4248 4247 Chile
## 4249 4248 US
## 4250 4249 US
## 4251 4250 US
## 4252 4251 US
## 4253 4252 Spain
## 4254 4253 US
## 4255 4254 US
## 4256 4255 US
## 4257 4256 US
## 4258 4257 Argentina
## 4259 4258 Italy
## 4260 4259 Chile
## 4261 4260 US
## 4262 4261 US
## 4263 4262 France
## 4264 4263 US
## 4265 4264 Spain
## 4266 4265 France
## 4267 4266 France
## 4268 4267 US
## 4269 4268 US
## 4270 4269 US
## 4271 4270 US
## 4272 4271 France
## 4273 4272 US
## 4274 4273 Italy
## 4275 4274 US
## 4276 4275 US
## 4277 4276 US
## 4278 4277 France
## 4279 4278 France
## 4280 4279 France
## 4281 4280 US
## 4282 4281 US
## 4283 4282 France
## 4284 4283 US
## 4285 4284 France
## 4286 4285 Spain
## 4287 4286 Spain
## 4288 4287 Spain
## 4289 4288 France
## 4290 4289 US
## 4291 4290 US
## 4292 4291 US
## 4293 4292 US
## 4294 4293 Chile
## 4295 4294 Italy
## 4296 4295 Greece
## 4297 4296 US
## 4298 4297 Italy
## 4299 4298 US
## 4300 4299 US
## 4301 4300 Italy
## 4302 4301 US
## 4303 4302 France
## 4304 4303 France
## 4305 4304 Italy
## 4306 4305 Italy
## 4307 4306 New Zealand
## 4308 4307 Italy
## 4309 4308 US
## 4310 4309 US
## 4311 4310 Italy
## 4312 4311 Chile
## 4313 4312 US
## 4314 4313 France
## 4315 4314 Spain
## 4316 4315 France
## 4317 4316 US
## 4318 4317 Portugal
## 4319 4318 Portugal
## 4320 4319 US
## 4321 4320 Chile
## 4322 4321 Spain
## 4323 4322 Italy
## 4324 4323 US
## 4325 4324 Australia
## 4326 4325 France
## 4327 4326 US
## 4328 4327 US
## 4329 4328 France
## 4330 4329 Spain
## 4331 4330 Italy
## 4332 4331 Italy
## 4333 4332 Australia
## 4334 4333 Australia
## 4335 4334 Spain
## 4336 4335 US
## 4337 4336 Spain
## 4338 4337 US
## 4339 4338 US
## 4340 4339 Italy
## 4341 4340 US
## 4342 4341 US
## 4343 4342 US
## 4344 4343 US
## 4345 4344 US
## 4346 4345 US
## 4347 4346 US
## 4348 4347 US
## 4349 4348 US
## 4350 4349 US
## 4351 4350 US
## 4352 4351 US
## 4353 4352 Italy
## 4354 4353 US
## 4355 4354 Spain
## 4356 4355 Italy
## 4357 4356 France
## 4358 4357 France
## 4359 4358 France
## 4360 4359 France
## 4361 4360 France
## 4362 4361 France
## 4363 4362 France
## 4364 4363 Portugal
## 4365 4364 France
## 4366 4365 Italy
## 4367 4366 US
## 4368 4367 Argentina
## 4369 4368 France
## 4370 4369 Argentina
## 4371 4370 Italy
## 4372 4371 France
## 4373 4372 France
## 4374 4373 France
## 4375 4374 US
## 4376 4375 US
## 4377 4376 US
## 4378 4377 France
## 4379 4378 Spain
## 4380 4379 France
## 4381 4380 US
## 4382 4381 US
## 4383 4382 France
## 4384 4383 France
## 4385 4384 France
## 4386 4385 France
## 4387 4386 France
## 4388 4387 France
## 4389 4388 France
## 4390 4389 US
## 4391 4390 US
## 4392 4391 US
## 4393 4392 US
## 4394 4393 US
## 4395 4394 US
## 4396 4395 US
## 4397 4396 US
## 4398 4397 France
## 4399 4398 France
## 4400 4399 US
## 4401 4400 US
## 4402 4401 France
## 4403 4402 France
## 4404 4403 Italy
## 4405 4404 France
## 4406 4405 US
## 4407 4406 Spain
## 4408 4407 US
## 4409 4408 US
## 4410 4409 France
## 4411 4410 US
## 4412 4411 US
## 4413 4412 US
## 4414 4413 France
## 4415 4414 US
## 4416 4415 Spain
## 4417 4416 Italy
## 4418 4417 US
## 4419 4418 US
## 4420 4419 US
## 4421 4420 Spain
## 4422 4421 US
## 4423 4422 US
## 4424 4423 Spain
## 4425 4424 US
## 4426 4425 Italy
## 4427 4426 US
## 4428 4427 US
## 4429 4428 Italy
## 4430 4429 France
## 4431 4430 France
## 4432 4431 US
## 4433 4432 Italy
## 4434 4433 France
## 4435 4434 France
## 4436 4435 France
## 4437 4436 France
## 4438 4437 US
## 4439 4438 US
## 4440 4439 France
## 4441 4440 Chile
## 4442 4441 Italy
## 4443 4442 US
## 4444 4443 Italy
## 4445 4444 US
## 4446 4445 Italy
## 4447 4446 France
## 4448 4447 Spain
## 4449 4448 Italy
## 4450 4449 Portugal
## 4451 4450 US
## 4452 4451 US
## 4453 4452 France
## 4454 4453 France
## 4455 4454 US
## 4456 4455 US
## 4457 4456 US
## 4458 4457 US
## 4459 4458 US
## 4460 4459 Spain
## 4461 4460 Spain
## 4462 4461 US
## 4463 4462 US
## 4464 4463 Italy
## 4465 4464 US
## 4466 4465 US
## 4467 4466 US
## 4468 4467 US
## 4469 4468 US
## 4470 4469 Italy
## 4471 4470 US
## 4472 4471 US
## 4473 4472 US
## 4474 4473 US
## 4475 4474 Spain
## 4476 4475 US
## 4477 4476 US
## 4478 4477 US
## 4479 4478 US
## 4480 4479 France
## 4481 4480 Italy
## 4482 4481 France
## 4483 4482 US
## 4484 4483 France
## 4485 4484 France
## 4486 4485 US
## 4487 4486 US
## 4488 4487 US
## 4489 4488 US
## 4490 4489 US
## 4491 4490 New Zealand
## 4492 4491 New Zealand
## 4493 4492 US
## 4494 4493 US
## 4495 4494 France
## 4496 4495 US
## 4497 4496 US
## 4498 4497 France
## 4499 4498 South Africa
## 4500 4499 South Africa
## 4501 4500 South Africa
## 4502 4501 South Africa
## 4503 4502 US
## 4504 4503 Italy
## 4505 4504 US
## 4506 4505 US
## 4507 4506 US
## 4508 4507 US
## 4509 4508 US
## 4510 4509 US
## 4511 4510 US
## 4512 4511 US
## 4513 4512 US
## 4514 4513 Italy
## 4515 4514 US
## 4516 4515 Italy
## 4517 4516 US
## 4518 4517 US
## 4519 4518 US
## 4520 4519 France
## 4521 4520 US
## 4522 4521 US
## 4523 4522 Italy
## 4524 4523 Italy
## 4525 4524 Italy
## 4526 4525 US
## 4527 4526 France
## 4528 4527 Italy
## 4529 4528 Chile
## 4530 4529 US
## 4531 4530 US
## 4532 4531 US
## 4533 4532 Spain
## 4534 4533 US
## 4535 4534 Italy
## 4536 4535 US
## 4537 4536 US
## 4538 4537 US
## 4539 4538 US
## 4540 4539 Italy
## 4541 4540 US
## 4542 4541 US
## 4543 4542 France
## 4544 4543 Italy
## 4545 4544 US
## 4546 4545 US
## 4547 4546 US
## 4548 4547 France
## 4549 4548 Chile
## 4550 4549 US
## 4551 4550 US
## 4552 4551 US
## 4553 4552 Spain
## 4554 4553 US
## 4555 4554 Chile
## 4556 4555 Spain
## 4557 4556 Italy
## 4558 4557 Spain
## 4559 4558 Spain
## 4560 4559 Portugal
## 4561 4560 US
## 4562 4561 Portugal
## 4563 4562 Portugal
## 4564 4563 France
## 4565 4564 US
## 4566 4565 US
## 4567 4566 US
## 4568 4567 Italy
## 4569 4568 Italy
## 4570 4569 Argentina
## 4571 4570 Spain
## 4572 4571 Portugal
## 4573 4572 Portugal
## 4574 4573 Italy
## 4575 4574 US
## 4576 4575 Portugal
## 4577 4576 Portugal
## 4578 4577 France
## 4579 4578 Spain
## 4580 4579 Portugal
## 4581 4580 Portugal
## 4582 4581 Portugal
## 4583 4582 Portugal
## 4584 4583 Portugal
## 4585 4584 US
## 4586 4585 Italy
## 4587 4586 Portugal
## 4588 4587 Portugal
## 4589 4588 Spain
## 4590 4589 US
## 4591 4590 US
## 4592 4591 US
## 4593 4592 US
## 4594 4593 Italy
## 4595 4594 Italy
## 4596 4595 US
## 4597 4596 US
## 4598 4597 Italy
## 4599 4598 US
## 4600 4599 US
## 4601 4600 US
## 4602 4601 US
## 4603 4602 US
## 4604 4603 US
## 4605 4604 Spain
## 4606 4605 France
## 4607 4606 Chile
## 4608 4607 Italy
## 4609 4608 Italy
## 4610 4609 US
## 4611 4610 France
## 4612 4611 Spain
## 4613 4612 Spain
## 4614 4613 Spain
## 4615 4614 US
## 4616 4615 US
## 4617 4616 Chile
## 4618 4617 Italy
## 4619 4618 Italy
## 4620 4619 US
## 4621 4620 US
## 4622 4621 US
## 4623 4622 US
## 4624 4623 New Zealand
## 4625 4624 Argentina
## 4626 4625 Italy
## 4627 4626 Italy
## 4628 4627 Italy
## 4629 4628 US
## 4630 4629 US
## 4631 4630 Italy
## 4632 4631 Italy
## 4633 4632 France
## 4634 4633 Argentina
## 4635 4634 US
## 4636 4635 France
## 4637 4636 US
## 4638 4637 US
## 4639 4638 Argentina
## 4640 4639 US
## 4641 4640 US
## 4642 4641 US
## 4643 4642 Portugal
## 4644 4643 Portugal
## 4645 4644 France
## 4646 4645 France
## 4647 4646 Portugal
## 4648 4647 France
## 4649 4648 France
## 4650 4649 France
## 4651 4650 France
## 4652 4651 France
## 4653 4652 France
## 4654 4653 Italy
## 4655 4654 France
## 4656 4655 France
## 4657 4656 France
## 4658 4657 South Africa
## 4659 4658 Argentina
## 4660 4659 South Africa
## 4661 4660 France
## 4662 4661 France
## 4663 4662 France
## 4664 4663 France
## 4665 4664 France
## 4666 4665 France
## 4667 4666 France
## 4668 4667 US
## 4669 4668 US
## 4670 4669 Australia
## 4671 4670 US
## 4672 4671 US
## 4673 4672 Germany
## 4674 4673 US
## 4675 4674 US
## 4676 4675 US
## 4677 4676 US
## 4678 4677 US
## 4679 4678 Germany
## 4680 4679 Germany
## 4681 4680 US
## 4682 4681 US
## 4683 4682 Spain
## 4684 4683 US
## 4685 4684 US
## 4686 4685 US
## 4687 4686 US
## 4688 4687 US
## 4689 4688 US
## 4690 4689 US
## 4691 4690 US
## 4692 4691 US
## 4693 4692 Chile
## 4694 4693 US
## 4695 4694 US
## 4696 4695 US
## 4697 4696 US
## 4698 4697 US
## 4699 4698 Spain
## 4700 4699 Spain
## 4701 4700 France
## 4702 4701 France
## 4703 4702 Portugal
## 4704 4703 US
## 4705 4704 US
## 4706 4705 Italy
## 4707 4706 Italy
## 4708 4707 Germany
## 4709 4708 Argentina
## 4710 4709 Italy
## 4711 4710 Italy
## 4712 4711 Spain
## 4713 4712 US
## 4714 4713 Italy
## 4715 4714 Germany
## 4716 4715 Germany
## 4717 4716 Italy
## 4718 4717 Portugal
## 4719 4718 US
## 4720 4719 US
## 4721 4720 Portugal
## 4722 4721 Portugal
## 4723 4722 Germany
## 4724 4723 Australia
## 4725 4724 Israel
## 4726 4725 Argentina
## 4727 4726 US
## 4728 4727 US
## 4729 4728 US
## 4730 4729 Portugal
## 4731 4730 US
## 4732 4731 US
## 4733 4732 US
## 4734 4733 US
## 4735 4734 US
## 4736 4735 US
## 4737 4736 US
## 4738 4737 US
## 4739 4738 US
## 4740 4739 US
## 4741 4740 US
## 4742 4741 US
## 4743 4742 US
## 4744 4743 US
## 4745 4744 US
## 4746 4745 US
## 4747 4746 US
## 4748 4747 US
## 4749 4748 US
## 4750 4749 US
## 4751 4750 US
## 4752 4751 US
## 4753 4752 US
## 4754 4753 US
## 4755 4754 US
## 4756 4755 US
## 4757 4756 US
## 4758 4757 US
## 4759 4758 US
## 4760 4759 US
## 4761 4760 Spain
## 4762 4761 US
## 4763 4762 Italy
## 4764 4763 Austria
## 4765 4764 US
## 4766 4765 Austria
## 4767 4766 France
## 4768 4767 France
## 4769 4768 France
## 4770 4769 US
## 4771 4770 Italy
## 4772 4771 Italy
## 4773 4772 US
## 4774 4773 Argentina
## 4775 4774 Spain
## 4776 4775 Italy
## 4777 4776 Argentina
## 4778 4777 Austria
## 4779 4778 US
## 4780 4779 Austria
## 4781 4780 US
## 4782 4781 Italy
## 4783 4782 Austria
## 4784 4783 Austria
## 4785 4784 Argentina
## 4786 4785 Italy
## 4787 4786 Italy
## 4788 4787 Italy
## 4789 4788 Greece
## 4790 4789 US
## 4791 4790 US
## 4792 4791 Italy
## 4793 4792 Italy
## 4794 4793 Italy
## 4795 4794 Greece
## 4796 4795 Italy
## 4797 4796 Argentina
## 4798 4797 Greece
## 4799 4798 Italy
## 4800 4799 US
## 4801 4800 Italy
## 4802 4801 US
## 4803 4802 Greece
## 4804 4803 US
## 4805 4804 Italy
## 4806 4805 US
## 4807 4806 Argentina
## 4808 4807 US
## 4809 4808 Austria
## 4810 4809 US
## 4811 4810 US
## 4812 4811 Italy
## 4813 4812 South Africa
## 4814 4813 Italy
## 4815 4814 Argentina
## 4816 4815 France
## 4817 4816 US
## 4818 4817 US
## 4819 4818 US
## 4820 4819 US
## 4821 4820 US
## 4822 4821 US
## 4823 4822 US
## 4824 4823 US
## 4825 4824 US
## 4826 4825 US
## 4827 4826 US
## 4828 4827 France
## 4829 4828 US
## 4830 4829 US
## 4831 4830 US
## 4832 4831 US
## 4833 4832 US
## 4834 4833 US
## 4835 4834 US
## 4836 4835 US
## 4837 4836 Portugal
## 4838 4837 US
## 4839 4838 Italy
## 4840 4839 Portugal
## 4841 4840 Portugal
## 4842 4841 Chile
## 4843 4842 US
## 4844 4843 US
## 4845 4844 Chile
## 4846 4845 US
## 4847 4846 Italy
## 4848 4847 Italy
## 4849 4848 Portugal
## 4850 4849 Germany
## 4851 4850 Italy
## 4852 4851 Italy
## 4853 4852 France
## 4854 4853 Italy
## 4855 4854 France
## 4856 4855 France
## 4857 4856 Spain
## 4858 4857 Italy
## 4859 4858 Italy
## 4860 4859 Germany
## 4861 4860 Italy
## 4862 4861 Portugal
## 4863 4862 US
## 4864 4863 Portugal
## 4865 4864 US
## 4866 4865 US
## 4867 4866 Portugal
## 4868 4867 US
## 4869 4868 US
## 4870 4869 Spain
## 4871 4870 US
## 4872 4871 Italy
## 4873 4872 US
## 4874 4873 Italy
## 4875 4874 Greece
## 4876 4875 Germany
## 4877 4876 Italy
## 4878 4877 US
## 4879 4878 Italy
## 4880 4879 Portugal
## 4881 4880 Italy
## 4882 4881 Chile
## 4883 4882 Chile
## 4884 4883 Germany
## 4885 4884 Greece
## 4886 4885 Spain
## 4887 4886 Italy
## 4888 4887 US
## 4889 4888 US
## 4890 4889 US
## 4891 4890 Chile
## 4892 4891 Chile
## 4893 4892 Italy
## 4894 4893 US
## 4895 4894 US
## 4896 4895 US
## 4897 4896 Lebanon
## 4898 4897 France
## 4899 4898 US
## 4900 4899 US
## 4901 4900 US
## 4902 4901 US
## 4903 4902 Portugal
## 4904 4903 Portugal
## 4905 4904 Portugal
## 4906 4905 Portugal
## 4907 4906 Italy
## 4908 4907 Germany
## 4909 4908 Argentina
## 4910 4909 Portugal
## 4911 4910 Portugal
## 4912 4911 Germany
## 4913 4912 Argentina
## 4914 4913 US
## 4915 4914 Italy
## 4916 4915 Italy
## 4917 4916 Portugal
## 4918 4917 Portugal
## 4919 4918 US
## 4920 4919 US
## 4921 4920 US
## 4922 4921 Italy
## 4923 4922 France
## 4924 4923 US
## 4925 4924 Italy
## 4926 4925 Portugal
## 4927 4926 Argentina
## 4928 4927 South Africa
## 4929 4928 Australia
## 4930 4929 South Africa
## 4931 4930 South Africa
## 4932 4931 Spain
## 4933 4932 Argentina
## 4934 4933 US
## 4935 4934 US
## 4936 4935 US
## 4937 4936 US
## 4938 4937 US
## 4939 4938 Portugal
## 4940 4939 Portugal
## 4941 4940 US
## 4942 4941 US
## 4943 4942 Australia
## 4944 4943 Argentina
## 4945 4944 US
## 4946 4945 US
## 4947 4946 Italy
## 4948 4947 Portugal
## 4949 4948 Portugal
## 4950 4949 US
## 4951 4950 France
## 4952 4951 US
## 4953 4952 US
## 4954 4953 US
## 4955 4954 Spain
## 4956 4955 Spain
## 4957 4956 France
## 4958 4957 US
## 4959 4958 Spain
## 4960 4959 US
## 4961 4960 Italy
## 4962 4961 Italy
## 4963 4962 France
## 4964 4963 France
## 4965 4964 US
## 4966 4965 US
## 4967 4966 Spain
## 4968 4967 Argentina
## 4969 4968 France
## 4970 4969 France
## 4971 4970 France
## 4972 4971 Italy
## 4973 4972 Chile
## 4974 4973 US
## 4975 4974 US
## 4976 4975 US
## 4977 4976 US
## 4978 4977 Germany
## 4979 4978 US
## 4980 4979 Italy
## 4981 4980 Italy
## 4982 4981 France
## 4983 4982 France
## 4984 4983 France
## 4985 4984 Italy
## 4986 4985 France
## 4987 4986 New Zealand
## 4988 4987 Chile
## 4989 4988 US
## 4990 4989 South Africa
## 4991 4990 Italy
## 4992 4991 Italy
## 4993 4992 Australia
## 4994 4993 US
## 4995 4994 Italy
## 4996 4995 New Zealand
## 4997 4996 Italy
## 4998 4997 Italy
## 4999 4998 US
## 5000 4999 Chile
## 5001 5000 Germany
## 5002 5001 US
## 5003 5002 South Africa
## 5004 5003 US
## 5005 5004 France
## 5006 5005 France
## 5007 5006 US
## 5008 5007 Spain
## 5009 5008 US
## 5010 5009 US
## 5011 5010 US
## 5012 5011 US
## 5013 5012 US
## 5014 5013 US
## 5015 5014 US
## 5016 5015 US
## 5017 5016 US
## 5018 5017 US
## 5019 5018 US
## 5020 5019 US
## 5021 5020 US
## 5022 5021 US
## 5023 5022 US
## 5024 5023 US
## 5025 5024 US
## 5026 5025 US
## 5027 5026 US
## 5028 5027 US
## 5029 5028 US
## 5030 5029 US
## 5031 5030 US
## 5032 5031 France
## 5033 5032 France
## 5034 5033 France
## 5035 5034 Portugal
## 5036 5035 France
## 5037 5036 France
## 5038 5037 France
## 5039 5038 US
## 5040 5039 US
## 5041 5040 US
## 5042 5041 US
## 5043 5042 US
## 5044 5043 Chile
## 5045 5044 US
## 5046 5045 Italy
## 5047 5046 US
## 5048 5047 US
## 5049 5048 US
## 5050 5049 US
## 5051 5050 France
## 5052 5051 US
## 5053 5052 Lebanon
## 5054 5053 US
## 5055 5054 Portugal
## 5056 5055 Portugal
## 5057 5056 US
## 5058 5057 US
## 5059 5058 US
## 5060 5059 US
## 5061 5060 US
## 5062 5061 US
## 5063 5062 Portugal
## 5064 5063 Portugal
## 5065 5064 Italy
## 5066 5065 Italy
## 5067 5066 US
## 5068 5067 Argentina
## 5069 5068 Portugal
## 5070 5069 US
## 5071 5070 Italy
## 5072 5071 US
## 5073 5072 US
## 5074 5073 Argentina
## 5075 5074 US
## 5076 5075 Spain
## 5077 5076 France
## 5078 5077 France
## 5079 5078 France
## 5080 5079 France
## 5081 5080 US
## 5082 5081 US
## 5083 5082 Spain
## 5084 5083 France
## 5085 5084 US
## 5086 5085 Serbia
## 5087 5086 Italy
## 5088 5087 France
## 5089 5088 Australia
## 5090 5089 US
## 5091 5090 US
## 5092 5091 US
## 5093 5092 Chile
## 5094 5093 US
## 5095 5094 Chile
## 5096 5095 Chile
## 5097 5096 US
## 5098 5097 France
## 5099 5098 US
## 5100 5099 US
## 5101 5100 Chile
## 5102 5101 Austria
## 5103 5102 US
## 5104 5103 US
## 5105 5104 Chile
## 5106 5105 US
## 5107 5106 US
## 5108 5107 Chile
## 5109 5108 US
## 5110 5109 Austria
## 5111 5110 Austria
## 5112 5111 US
## 5113 5112 Italy
## 5114 5113 Italy
## 5115 5114 US
## 5116 5115 US
## 5117 5116 Austria
## 5118 5117 US
## 5119 5118 US
## 5120 5119 US
## 5121 5120 US
## 5122 5121 US
## 5123 5122 US
## 5124 5123 Austria
## 5125 5124 France
## 5126 5125 US
## 5127 5126 Austria
## 5128 5127 US
## 5129 5128 Austria
## 5130 5129 Canada
## 5131 5130 France
## 5132 5131 Chile
## 5133 5132 France
## 5134 5133 Austria
## 5135 5134 US
## 5136 5135 US
## 5137 5136 US
## 5138 5137 Italy
## 5139 5138 US
## 5140 5139 US
## 5141 5140 Chile
## 5142 5141 Austria
## 5143 5142 US
## 5144 5143 US
## 5145 5144 Austria
## 5146 5145 US
## 5147 5146 US
## 5148 5147 France
## 5149 5148 France
## 5150 5149 Australia
## 5151 5150 US
## 5152 5151 US
## 5153 5152 Spain
## 5154 5153 US
## 5155 5154 US
## 5156 5155 Italy
## 5157 5156 Australia
## 5158 5157 Australia
## 5159 5158 France
## 5160 5159 US
## 5161 5160 US
## 5162 5161 US
## 5163 5162 Spain
## 5164 5163 US
## 5165 5164 Spain
## 5166 5165 Italy
## 5167 5166 US
## 5168 5167 US
## 5169 5168 US
## 5170 5169 US
## 5171 5170 Spain
## 5172 5171 US
## 5173 5172 Italy
## 5174 5173 US
## 5175 5174 France
## 5176 5175 Austria
## 5177 5176 New Zealand
## 5178 5177 US
## 5179 5178 US
## 5180 5179 US
## 5181 5180 Italy
## 5182 5181 US
## 5183 5182 US
## 5184 5183 Italy
## 5185 5184 Italy
## 5186 5185 Argentina
## 5187 5186 France
## 5188 5187 France
## 5189 5188 France
## 5190 5189 US
## 5191 5190 Italy
## 5192 5191 Argentina
## 5193 5192 France
## 5194 5193 Germany
## 5195 5194 US
## 5196 5195 US
## 5197 5196 Italy
## 5198 5197 Italy
## 5199 5198 Italy
## 5200 5199 Portugal
## 5201 5200 US
## 5202 5201 US
## 5203 5202 Israel
## 5204 5203 France
## 5205 5204 US
## 5206 5205 Germany
## 5207 5206 France
## 5208 5207 US
## 5209 5208 Italy
## 5210 5209 US
## 5211 5210 US
## 5212 5211 Germany
## 5213 5212 Spain
## 5214 5213 US
## 5215 5214 Germany
## 5216 5215 US
## 5217 5216 US
## 5218 5217 US
## 5219 5218 US
## 5220 5219 US
## 5221 5220 Italy
## 5222 5221 US
## 5223 5222 US
## 5224 5223 US
## 5225 5224 US
## 5226 5225 New Zealand
## 5227 5226 Israel
## 5228 5227 US
## 5229 5228 US
## 5230 5229 Portugal
## 5231 5230 France
## 5232 5231 US
## 5233 5232 US
## 5234 5233 US
## 5235 5234 France
## 5236 5235 US
## 5237 5236 Italy
## 5238 5237 Italy
## 5239 5238 US
## 5240 5239 Spain
## 5241 5240 France
## 5242 5241 France
## 5243 5242 Italy
## 5244 5243 US
## 5245 5244 US
## 5246 5245 France
## 5247 5246 France
## 5248 5247 France
## 5249 5248 Italy
## 5250 5249 Italy
## 5251 5250 Spain
## 5252 5251 Italy
## 5253 5252 US
## 5254 5253 Canada
## 5255 5254 US
## 5256 5255 France
## 5257 5256 US
## 5258 5257 France
## 5259 5258 US
## 5260 5259 US
## 5261 5260 US
## 5262 5261 France
## 5263 5262 US
## 5264 5263 Greece
## 5265 5264 Italy
## 5266 5265 Italy
## 5267 5266 US
## 5268 5267 Italy
## 5269 5268 US
## 5270 5269 France
## 5271 5270 France
## 5272 5271 France
## 5273 5272 US
## 5274 5273 US
## 5275 5274 Italy
## 5276 5275 US
## 5277 5276 France
## 5278 5277 Chile
## 5279 5278 Austria
## 5280 5279 US
## 5281 5280 US
## 5282 5281 South Africa
## 5283 5282 US
## 5284 5283 US
## 5285 5284 South Africa
## 5286 5285 Italy
## 5287 5286 US
## 5288 5287 US
## 5289 5288 US
## 5290 5289 Austria
## 5291 5290 Australia
## 5292 5291 Australia
## 5293 5292 US
## 5294 5293 Australia
## 5295 5294 Australia
## 5296 5295 US
## 5297 5296 Argentina
## 5298 5297 US
## 5299 5298 Italy
## 5300 5299 Italy
## 5301 5300 Argentina
## 5302 5301 Australia
## 5303 5302 South Africa
## 5304 5303 US
## 5305 5304 Argentina
## 5306 5305 Australia
## 5307 5306 Italy
## 5308 5307 South Africa
## 5309 5308 Argentina
## 5310 5309 Italy
## 5311 5310 Italy
## 5312 5311 Spain
## 5313 5312 Italy
## 5314 5313 US
## 5315 5314 Argentina
## 5316 5315 Argentina
## 5317 5316 Spain
## 5318 5317 France
## 5319 5318 US
## 5320 5319 Austria
## 5321 5320 US
## 5322 5321 US
## 5323 5322 Spain
## 5324 5323 US
## 5325 5324 Spain
## 5326 5325 France
## 5327 5326 Austria
## 5328 5327 US
## 5329 5328 US
## 5330 5329 US
## 5331 5330 France
## 5332 5331 France
## 5333 5332 US
## 5334 5333 Italy
## 5335 5334 US
## 5336 5335 Spain
## 5337 5336 Italy
## 5338 5337 US
## 5339 5338 Italy
## 5340 5339 US
## 5341 5340 France
## 5342 5341 France
## 5343 5342 France
## 5344 5343 US
## 5345 5344 Italy
## 5346 5345 Italy
## 5347 5346 US
## 5348 5347 Austria
## 5349 5348 Austria
## 5350 5349 Italy
## 5351 5350 US
## 5352 5351 US
## 5353 5352 US
## 5354 5353 Austria
## 5355 5354 New Zealand
## 5356 5355 New Zealand
## 5357 5356 US
## 5358 5357 Austria
## 5359 5358 US
## 5360 5359 Austria
## 5361 5360 US
## 5362 5361 Italy
## 5363 5362 US
## 5364 5363 New Zealand
## 5365 5364 US
## 5366 5365 Argentina
## 5367 5366 New Zealand
## 5368 5367 South Africa
## 5369 5368 Italy
## 5370 5369 New Zealand
## 5371 5370 Italy
## 5372 5371 Italy
## 5373 5372 Italy
## 5374 5373 US
## 5375 5374 Italy
## 5376 5375 France
## 5377 5376 US
## 5378 5377 US
## 5379 5378 France
## 5380 5379 US
## 5381 5380 Portugal
## 5382 5381 Germany
## 5383 5382 US
## 5384 5383 US
## 5385 5384 US
## 5386 5385 Argentina
## 5387 5386 US
## 5388 5387 US
## 5389 5388 France
## 5390 5389 US
## 5391 5390 US
## 5392 5391 US
## 5393 5392 US
## 5394 5393 Spain
## 5395 5394 Portugal
## 5396 5395 Portugal
## 5397 5396 Portugal
## 5398 5397 US
## 5399 5398 US
## 5400 5399 US
## 5401 5400 Italy
## 5402 5401 Spain
## 5403 5402 Portugal
## 5404 5403 US
## 5405 5404 US
## 5406 5405 Spain
## 5407 5406 Portugal
## 5408 5407 Hungary
## 5409 5408 US
## 5410 5409 Argentina
## 5411 5410 France
## 5412 5411 Portugal
## 5413 5412 Argentina
## 5414 5413 Portugal
## 5415 5414 Italy
## 5416 5415 France
## 5417 5416 Georgia
## 5418 5417 Italy
## 5419 5418 France
## 5420 5419 France
## 5421 5420 Australia
## 5422 5421 US
## 5423 5422 US
## 5424 5423 US
## 5425 5424 Italy
## 5426 5425 Argentina
## 5427 5426 US
## 5428 5427 France
## 5429 5428 US
## 5430 5429 Argentina
## 5431 5430 US
## 5432 5431 Portugal
## 5433 5432 US
## 5434 5433 US
## 5435 5434 Argentina
## 5436 5435 US
## 5437 5436 Argentina
## 5438 5437 Chile
## 5439 5438 US
## 5440 5439 Argentina
## 5441 5440 France
## 5442 5441 Italy
## 5443 5442 US
## 5444 5443 US
## 5445 5444 US
## 5446 5445 France
## 5447 5446 Italy
## 5448 5447 US
## 5449 5448 Italy
## 5450 5449 Italy
## 5451 5450 Portugal
## 5452 5451 US
## 5453 5452 US
## 5454 5453 Portugal
## 5455 5454 Portugal
## 5456 5455 Italy
## 5457 5456 Italy
## 5458 5457 Italy
## 5459 5458 Italy
## 5460 5459 US
## 5461 5460 France
## 5462 5461 Italy
## 5463 5462 US
## 5464 5463 France
## 5465 5464 US
## 5466 5465 US
## 5467 5466 Spain
## 5468 5467 Chile
## 5469 5468 US
## 5470 5469 US
## 5471 5470 US
## 5472 5471 US
## 5473 5472 Chile
## 5474 5473 US
## 5475 5474 Italy
## 5476 5475 Italy
## 5477 5476 US
## 5478 5477 Italy
## 5479 5478 Chile
## 5480 5479 US
## 5481 5480 US
## 5482 5481 US
## 5483 5482 US
## 5484 5483 US
## 5485 5484 Chile
## 5486 5485 US
## 5487 5486 France
## 5488 5487 France
## 5489 5488 France
## 5490 5489 Italy
## 5491 5490 France
## 5492 5491 Italy
## 5493 5492 Austria
## 5494 5493 Austria
## 5495 5494 US
## 5496 5495 US
## 5497 5496 US
## 5498 5497 Austria
## 5499 5498 Spain
## 5500 5499 France
## 5501 5500 US
## 5502 5501 US
## 5503 5502 Italy
## 5504 5503 Austria
## 5505 5504 Austria
## 5506 5505 France
## 5507 5506 US
## 5508 5507 Austria
## 5509 5508 US
## 5510 5509 Austria
## 5511 5510 Austria
## 5512 5511 Italy
## 5513 5512 Argentina
## 5514 5513 Austria
## 5515 5514 Austria
## 5516 5515 Chile
## 5517 5516 US
## 5518 5517 Portugal
## 5519 5518 Chile
## 5520 5519 Chile
## 5521 5520 Portugal
## 5522 5521 Chile
## 5523 5522 Chile
## 5524 5523 Spain
## 5525 5524 Italy
## 5526 5525 Spain
## 5527 5526 Spain
## 5528 5527 US
## 5529 5528 US
## 5530 5529 Spain
## 5531 5530 Chile
## 5532 5531 Spain
## 5533 5532 Chile
## 5534 5533 Chile
## 5535 5534 Spain
## 5536 5535 Chile
## 5537 5536 US
## 5538 5537 US
## 5539 5538 Chile
## 5540 5539 US
## 5541 5540 Spain
## 5542 5541 Spain
## 5543 5542 Chile
## 5544 5543 Spain
## 5545 5544 Spain
## 5546 5545 Germany
## 5547 5546 US
## 5548 5547 US
## 5549 5548 US
## 5550 5549 South Africa
## 5551 5550 Italy
## 5552 5551 France
## 5553 5552 France
## 5554 5553 France
## 5555 5554 Italy
## 5556 5555 Argentina
## 5557 5556 France
## 5558 5557 US
## 5559 5558 South Africa
## 5560 5559 France
## 5561 5560 Austria
## 5562 5561 Italy
## 5563 5562 Italy
## 5564 5563 Argentina
## 5565 5564 US
## 5566 5565 Italy
## 5567 5566 US
## 5568 5567 Germany
## 5569 5568 Italy
## 5570 5569 Argentina
## 5571 5570 Italy
## 5572 5571 US
## 5573 5572 France
## 5574 5573 South Africa
## 5575 5574 Italy
## 5576 5575 New Zealand
## 5577 5576 Argentina
## 5578 5577 Italy
## 5579 5578 US
## 5580 5579 Italy
## 5581 5580 Canada
## 5582 5581 US
## 5583 5582 US
## 5584 5583 Argentina
## 5585 5584 Italy
## 5586 5585 US
## 5587 5586 Argentina
## 5588 5587 US
## 5589 5588 US
## 5590 5589 Italy
## 5591 5590 US
## 5592 5591 Italy
## 5593 5592 Italy
## 5594 5593 Germany
## 5595 5594 US
## 5596 5595 Chile
## 5597 5596 Italy
## 5598 5597 Chile
## 5599 5598 US
## 5600 5599 Germany
## 5601 5600 US
## 5602 5601 US
## 5603 5602 Chile
## 5604 5603 US
## 5605 5604 Italy
## 5606 5605 US
## 5607 5606 US
## 5608 5607 US
## 5609 5608 Italy
## 5610 5609 Italy
## 5611 5610 US
## 5612 5611 US
## 5613 5612 US
## 5614 5613 US
## 5615 5614 Chile
## 5616 5615 Germany
## 5617 5616 Italy
## 5618 5617 Italy
## 5619 5618 Australia
## 5620 5619 France
## 5621 5620 Spain
## 5622 5621 US
## 5623 5622 Austria
## 5624 5623 Australia
## 5625 5624 France
## 5626 5625 Italy
## 5627 5626 Austria
## 5628 5627 Spain
## 5629 5628 Italy
## 5630 5629 US
## 5631 5630 US
## 5632 5631 US
## 5633 5632 Italy
## 5634 5633 US
## 5635 5634 Italy
## 5636 5635 US
## 5637 5636 France
## 5638 5637 US
## 5639 5638 US
## 5640 5639 US
## 5641 5640 Spain
## 5642 5641 Italy
## 5643 5642 US
## 5644 5643 Italy
## 5645 5644 Austria
## 5646 5645 Spain
## 5647 5646 US
## 5648 5647 France
## 5649 5648 Austria
## 5650 5649 Italy
## 5651 5650 Italy
## 5652 5651 Austria
## 5653 5652 Austria
## 5654 5653 US
## 5655 5654 US
## 5656 5655 US
## 5657 5656 US
## 5658 5657 Canada
## 5659 5658 US
## 5660 5659 France
## 5661 5660 US
## 5662 5661 Italy
## 5663 5662 US
## 5664 5663 US
## 5665 5664 US
## 5666 5665 France
## 5667 5666 Austria
## 5668 5667 France
## 5669 5668 US
## 5670 5669 US
## 5671 5670 Italy
## 5672 5671 Austria
## 5673 5672 US
## 5674 5673 US
## 5675 5674 Austria
## 5676 5675 US
## 5677 5676 US
## 5678 5677 US
## 5679 5678 US
## 5680 5679 US
## 5681 5680 US
## 5682 5681 Austria
## 5683 5682 Austria
## 5684 5683 US
## 5685 5684 Italy
## 5686 5685 Italy
## 5687 5686 US
## 5688 5687 US
## 5689 5688 France
## 5690 5689 France
## 5691 5690 Italy
## 5692 5691 Italy
## 5693 5692 US
## 5694 5693 France
## 5695 5694 France
## 5696 5695 Italy
## 5697 5696 US
## 5698 5697 US
## 5699 5698 US
## 5700 5699 US
## 5701 5700 Italy
## 5702 5701 US
## 5703 5702 US
## 5704 5703 Austria
## 5705 5704 Italy
## 5706 5705 US
## 5707 5706 US
## 5708 5707 US
## 5709 5708 Austria
## 5710 5709 Argentina
## 5711 5710 Austria
## 5712 5711 US
## 5713 5712 US
## 5714 5713 Italy
## 5715 5714 Italy
## 5716 5715 France
## 5717 5716 France
## 5718 5717 France
## 5719 5718 France
## 5720 5719 France
## 5721 5720 France
## 5722 5721 Italy
## 5723 5722 US
## 5724 5723 US
## 5725 5724 US
## 5726 5725 Austria
## 5727 5726 Italy
## 5728 5727 US
## 5729 5728 US
## 5730 5729 US
## 5731 5730 US
## 5732 5731 France
## 5733 5732 US
## 5734 5733 US
## 5735 5734 France
## 5736 5735 France
## 5737 5736 France
## 5738 5737 Italy
## 5739 5738 US
## 5740 5739 US
## 5741 5740 US
## 5742 5741 Italy
## 5743 5742 Italy
## 5744 5743 US
## 5745 5744 US
## 5746 5745 Austria
## 5747 5746 France
## 5748 5747 US
## 5749 5748 US
## 5750 5749 New Zealand
## 5751 5750 US
## 5752 5751 US
## 5753 5752 US
## 5754 5753 France
## 5755 5754 US
## 5756 5755 US
## 5757 5756 US
## 5758 5757 US
## 5759 5758 US
## 5760 5759 US
## 5761 5760 US
## 5762 5761 Romania
## 5763 5762 US
## 5764 5763 US
## 5765 5764 France
## 5766 5765 France
## 5767 5766 France
## 5768 5767 France
## 5769 5768 Chile
## 5770 5769 US
## 5771 5770 US
## 5772 5771 US
## 5773 5772 US
## 5774 5773 US
## 5775 5774 Italy
## 5776 5775 Italy
## 5777 5776 Italy
## 5778 5777 US
## 5779 5778 Italy
## 5780 5779 US
## 5781 5780 US
## 5782 5781 France
## 5783 5782 France
## 5784 5783 France
## 5785 5784 France
## 5786 5785 France
## 5787 5786 Argentina
## 5788 5787 Argentina
## 5789 5788 France
## 5790 5789 France
## 5791 5790 US
## 5792 5791 Spain
## 5793 5792 US
## 5794 5793 France
## 5795 5794 France
## 5796 5795 France
## 5797 5796 US
## 5798 5797 France
## 5799 5798 Spain
## 5800 5799 Spain
## 5801 5800 Argentina
## 5802 5801 France
## 5803 5802 France
## 5804 5803 US
## 5805 5804 France
## 5806 5805 US
## 5807 5806 France
## 5808 5807 France
## 5809 5808 US
## 5810 5809 Portugal
## 5811 5810 Portugal
## 5812 5811 France
## 5813 5812 Portugal
## 5814 5813 Spain
## 5815 5814 Portugal
## 5816 5815 France
## 5817 5816 Spain
## 5818 5817 Argentina
## 5819 5818 Portugal
## 5820 5819 Spain
## 5821 5820 Argentina
## 5822 5821 Argentina
## 5823 5822 Portugal
## 5824 5823 Spain
## 5825 5824 Argentina
## 5826 5825 France
## 5827 5826 Portugal
## 5828 5827 France
## 5829 5828 Portugal
## 5830 5829 Argentina
## 5831 5830 Spain
## 5832 5831 Australia
## 5833 5832 Portugal
## 5834 5833 Portugal
## 5835 5834 Portugal
## 5836 5835 US
## 5837 5836 Italy
## 5838 5837 US
## 5839 5838 US
## 5840 5839 US
## 5841 5840 US
## 5842 5841 US
## 5843 5842 Italy
## 5844 5843 US
## 5845 5844 US
## 5846 5845 US
## 5847 5846 US
## 5848 5847 US
## 5849 5848 US
## 5850 5849 Portugal
## 5851 5850 Portugal
## 5852 5851 Portugal
## 5853 5852 Brazil
## 5854 5853 France
## 5855 5854 France
## 5856 5855 France
## 5857 5856 France
## 5858 5857 France
## 5859 5858 France
## 5860 5859 France
## 5861 5860 France
## 5862 5861 Italy
## 5863 5862 Italy
## 5864 5863 US
## 5865 5864 US
## 5866 5865 France
## 5867 5866 France
## 5868 5867 Australia
## 5869 5868 US
## 5870 5869 US
## 5871 5870 US
## 5872 5871 US
## 5873 5872 US
## 5874 5873 US
## 5875 5874 France
## 5876 5875 Chile
## 5877 5876 US
## 5878 5877 US
## 5879 5878 US
## 5880 5879 Germany
## 5881 5880 US
## 5882 5881 US
## 5883 5882 US
## 5884 5883 France
## 5885 5884 US
## 5886 5885 US
## 5887 5886 Spain
## 5888 5887 US
## 5889 5888 US
## 5890 5889 US
## 5891 5890 Germany
## 5892 5891 Argentina
## 5893 5892 Argentina
## 5894 5893 US
## 5895 5894 US
## 5896 5895 Argentina
## 5897 5896 Argentina
## 5898 5897 US
## 5899 5898 US
## 5900 5899 US
## 5901 5900 Argentina
## 5902 5901 Argentina
## 5903 5902 Argentina
## 5904 5903 Argentina
## 5905 5904 Portugal
## 5906 5905 Argentina
## 5907 5906 Argentina
## 5908 5907 Argentina
## 5909 5908 Argentina
## 5910 5909 Argentina
## 5911 5910 France
## 5912 5911 France
## 5913 5912 US
## 5914 5913 US
## 5915 5914 New Zealand
## 5916 5915 US
## 5917 5916 US
## 5918 5917 Italy
## 5919 5918 US
## 5920 5919 US
## 5921 5920 US
## 5922 5921 US
## 5923 5922 US
## 5924 5923 Italy
## 5925 5924 US
## 5926 5925 US
## 5927 5926 US
## 5928 5927 US
## 5929 5928 US
## 5930 5929 US
## 5931 5930 France
## 5932 5931 France
## 5933 5932 France
## 5934 5933 France
## 5935 5934 US
## 5936 5935 US
## 5937 5936 France
## 5938 5937 France
## 5939 5938 France
## 5940 5939 France
## 5941 5940 France
## 5942 5941 France
## 5943 5942 France
## 5944 5943 France
## 5945 5944 US
## 5946 5945 US
## 5947 5946 France
## 5948 5947 US
## 5949 5948 France
## 5950 5949 Chile
## 5951 5950 Chile
## 5952 5951 Chile
## 5953 5952 Italy
## 5954 5953 US
## 5955 5954 US
## 5956 5955 France
## 5957 5956 France
## 5958 5957 France
## 5959 5958 France
## 5960 5959 Greece
## 5961 5960 US
## 5962 5961 Italy
## 5963 5962 US
## 5964 5963 US
## 5965 5964 US
## 5966 5965 Italy
## 5967 5966 Italy
## 5968 5967 France
## 5969 5968 France
## 5970 5969 Italy
## 5971 5970 Italy
## 5972 5971 Italy
## 5973 5972 Italy
## 5974 5973 US
## 5975 5974 Italy
## 5976 5975 US
## 5977 5976 US
## 5978 5977 France
## 5979 5978 Australia
## 5980 5979 Chile
## 5981 5980 US
## 5982 5981 Italy
## 5983 5982 Chile
## 5984 5983 France
## 5985 5984 US
## 5986 5985 Italy
## 5987 5986 Italy
## 5988 5987 US
## 5989 5988 Italy
## 5990 5989 US
## 5991 5990 Slovenia
## 5992 5991 Italy
## 5993 5992 Italy
## 5994 5993 Spain
## 5995 5994 France
## 5996 5995 France
## 5997 5996 Moldova
## 5998 5997 US
## 5999 5998 US
## 6000 5999 Italy
## 6001 6000 US
## 6002 6001 US
## 6003 6002 Italy
## 6004 6003 US
## 6005 6004 US
## 6006 6005 Uruguay
## 6007 6006 US
## 6008 6007 Portugal
## 6009 6008 Morocco
## 6010 6009 Italy
## 6011 6010 US
## 6012 6011 US
## 6013 6012 US
## 6014 6013 Portugal
## 6015 6014 US
## 6016 6015 Italy
## 6017 6016 US
## 6018 6017 US
## 6019 6018 US
## 6020 6019 US
## 6021 6020 Italy
## 6022 6021 Chile
## 6023 6022 US
## 6024 6023 US
## 6025 6024 Portugal
## 6026 6025 US
## 6027 6026 US
## 6028 6027 France
## 6029 6028 US
## 6030 6029 France
## 6031 6030 US
## 6032 6031 US
## 6033 6032 France
## 6034 6033 US
## 6035 6034 US
## 6036 6035 Australia
## 6037 6036 US
## 6038 6037 US
## 6039 6038 US
## 6040 6039 France
## 6041 6040 US
## 6042 6041 US
## 6043 6042 US
## 6044 6043 US
## 6045 6044 France
## 6046 6045 US
## 6047 6046 US
## 6048 6047 US
## 6049 6048 US
## 6050 6049 Australia
## 6051 6050 US
## 6052 6051 US
## 6053 6052 US
## 6054 6053 US
## 6055 6054 US
## 6056 6055 France
## 6057 6056 US
## 6058 6057 Italy
## 6059 6058 France
## 6060 6059 US
## 6061 6060 Israel
## 6062 6061 US
## 6063 6062 US
## 6064 6063 US
## 6065 6064 Italy
## 6066 6065 Spain
## 6067 6066 Italy
## 6068 6067 Italy
## 6069 6068 Italy
## 6070 6069 Italy
## 6071 6070 US
## 6072 6071 France
## 6073 6072 US
## 6074 6073 US
## 6075 6074 US
## 6076 6075 Italy
## 6077 6076 Spain
## 6078 6077 Italy
## 6079 6078 US
## 6080 6079 Austria
## 6081 6080 Spain
## 6082 6081 Italy
## 6083 6082 Italy
## 6084 6083 US
## 6085 6084 US
## 6086 6085 Israel
## 6087 6086 Israel
## 6088 6087 US
## 6089 6088 Argentina
## 6090 6089 US
## 6091 6090 US
## 6092 6091 Argentina
## 6093 6092 Argentina
## 6094 6093 US
## 6095 6094 US
## 6096 6095 Italy
## 6097 6096 Argentina
## 6098 6097 Argentina
## 6099 6098 Italy
## 6100 6099 Portugal
## 6101 6100 France
## 6102 6101 Italy
## 6103 6102 Portugal
## 6104 6103 Portugal
## 6105 6104 Portugal
## 6106 6105 France
## 6107 6106 Portugal
## 6108 6107 France
## 6109 6108 France
## 6110 6109 Portugal
## 6111 6110 Portugal
## 6112 6111 US
## 6113 6112 Italy
## 6114 6113 US
## 6115 6114 Czech Republic
## 6116 6115 France
## 6117 6116 US
## 6118 6117 US
## 6119 6118 US
## 6120 6119 Spain
## 6121 6120 Spain
## 6122 6121 Italy
## 6123 6122 Israel
## 6124 6123 US
## 6125 6124 US
## 6126 6125 US
## 6127 6126 US
## 6128 6127 US
## 6129 6128 US
## 6130 6129 France
## 6131 6130 France
## 6132 6131 US
## 6133 6132 US
## 6134 6133 Portugal
## 6135 6134 Italy
## 6136 6135 US
## 6137 6136 France
## 6138 6137 France
## 6139 6138 Italy
## 6140 6139 US
## 6141 6140 Italy
## 6142 6141 US
## 6143 6142 US
## 6144 6143 US
## 6145 6144 Italy
## 6146 6145 US
## 6147 6146 US
## 6148 6147 US
## 6149 6148 France
## 6150 6149 France
## 6151 6150 New Zealand
## 6152 6151 US
## 6153 6152 France
## 6154 6153 New Zealand
## 6155 6154 Australia
## 6156 6155 Chile
## 6157 6156 France
## 6158 6157 US
## 6159 6158 US
## 6160 6159 Italy
## 6161 6160 US
## 6162 6161 France
## 6163 6162 France
## 6164 6163 US
## 6165 6164 US
## 6166 6165 France
## 6167 6166 US
## 6168 6167 France
## 6169 6168 France
## 6170 6169 France
## 6171 6170 US
## 6172 6171 US
## 6173 6172 US
## 6174 6173 Spain
## 6175 6174 Italy
## 6176 6175 Italy
## 6177 6176 Spain
## 6178 6177 US
## 6179 6178 US
## 6180 6179 France
## 6181 6180 France
## 6182 6181 France
## 6183 6182 US
## 6184 6183 Spain
## 6185 6184 Spain
## 6186 6185 US
## 6187 6186 Spain
## 6188 6187 Italy
## 6189 6188 US
## 6190 6189 US
## 6191 6190 US
## 6192 6191 Italy
## 6193 6192 US
## 6194 6193 France
## 6195 6194 France
## 6196 6195 Italy
## 6197 6196 France
## 6198 6197 US
## 6199 6198 US
## 6200 6199 US
## 6201 6200 Argentina
## 6202 6201 US
## 6203 6202 Portugal
## 6204 6203 France
## 6205 6204 US
## 6206 6205 Argentina
## 6207 6206 Argentina
## 6208 6207 Portugal
## 6209 6208 US
## 6210 6209 Portugal
## 6211 6210 US
## 6212 6211 US
## 6213 6212 US
## 6214 6213 US
## 6215 6214 France
## 6216 6215 France
## 6217 6216 US
## 6218 6217 France
## 6219 6218 US
## 6220 6219 Portugal
## 6221 6220 US
## 6222 6221 US
## 6223 6222 US
## 6224 6223 Portugal
## 6225 6224 US
## 6226 6225 Portugal
## 6227 6226 Portugal
## 6228 6227 Portugal
## 6229 6228 Portugal
## 6230 6229 France
## 6231 6230 Italy
## 6232 6231 Italy
## 6233 6232 Italy
## 6234 6233 Portugal
## 6235 6234 US
## 6236 6235 US
## 6237 6236 US
## 6238 6237 US
## 6239 6238 France
## 6240 6239 France
## 6241 6240 France
## 6242 6241 Germany
## 6243 6242 US
## 6244 6243 Italy
## 6245 6244 Chile
## 6246 6245 Germany
## 6247 6246 Chile
## 6248 6247 US
## 6249 6248 US
## 6250 6249 Portugal
## 6251 6250 Italy
## 6252 6251 Portugal
## 6253 6252 Italy
## 6254 6253 Portugal
## 6255 6254 Portugal
## 6256 6255 Portugal
## 6257 6256 US
## 6258 6257 US
## 6259 6258 US
## 6260 6259 Italy
## 6261 6260 US
## 6262 6261 US
## 6263 6262 US
## 6264 6263 US
## 6265 6264 US
## 6266 6265 US
## 6267 6266 US
## 6268 6267 US
## 6269 6268 US
## 6270 6269 US
## 6271 6270 US
## 6272 6271 US
## 6273 6272 Germany
## 6274 6273 US
## 6275 6274 US
## 6276 6275 US
## 6277 6276 US
## 6278 6277 US
## 6279 6278 US
## 6280 6279 US
## 6281 6280 US
## 6282 6281 US
## 6283 6282 US
## 6284 6283 US
## 6285 6284 US
## 6286 6285 US
## 6287 6286 US
## 6288 6287 Argentina
## 6289 6288 US
## 6290 6289 France
## 6291 6290 Portugal
## 6292 6291 France
## 6293 6292 US
## 6294 6293 US
## 6295 6294 US
## 6296 6295 Argentina
## 6297 6296 US
## 6298 6297 Portugal
## 6299 6298 US
## 6300 6299 US
## 6301 6300 US
## 6302 6301 Italy
## 6303 6302 France
## 6304 6303 Portugal
## 6305 6304 France
## 6306 6305 US
## 6307 6306 US
## 6308 6307 US
## 6309 6308 Italy
## 6310 6309 Italy
## 6311 6310 Argentina
## 6312 6311 US
## 6313 6312 US
## 6314 6313 US
## 6315 6314 Italy
## 6316 6315 Italy
## 6317 6316 France
## 6318 6317 France
## 6319 6318 US
## 6320 6319 US
## 6321 6320 France
## 6322 6321 Italy
## 6323 6322 US
## 6324 6323 New Zealand
## 6325 6324 France
## 6326 6325 France
## 6327 6326 US
## 6328 6327 US
## 6329 6328 South Africa
## 6330 6329 South Africa
## 6331 6330 US
## 6332 6331 France
## 6333 6332 New Zealand
## 6334 6333 New Zealand
## 6335 6334 France
## 6336 6335 France
## 6337 6336 France
## 6338 6337 Italy
## 6339 6338 France
## 6340 6339 US
## 6341 6340 US
## 6342 6341 US
## 6343 6342 US
## 6344 6343 Spain
## 6345 6344 US
## 6346 6345 US
## 6347 6346 US
## 6348 6347 Germany
## 6349 6348 Portugal
## 6350 6349 US
## 6351 6350 US
## 6352 6351 Italy
## 6353 6352 US
## 6354 6353 France
## 6355 6354 US
## 6356 6355 Italy
## 6357 6356 Italy
## 6358 6357 France
## 6359 6358 US
## 6360 6359 Australia
## 6361 6360 Italy
## 6362 6361 US
## 6363 6362 France
## 6364 6363 France
## 6365 6364 Italy
## 6366 6365 US
## 6367 6366 US
## 6368 6367 Argentina
## 6369 6368 Italy
## 6370 6369 Italy
## 6371 6370 US
## 6372 6371 France
## 6373 6372 France
## 6374 6373 Australia
## 6375 6374 Portugal
## 6376 6375 Italy
## 6377 6376 South Africa
## 6378 6377 France
## 6379 6378 US
## 6380 6379 Argentina
## 6381 6380 South Africa
## 6382 6381 US
## 6383 6382 US
## 6384 6383 US
## 6385 6384 Portugal
## 6386 6385 US
## 6387 6386 Portugal
## 6388 6387 Italy
## 6389 6388 France
## 6390 6389 Portugal
## 6391 6390 Portugal
## 6392 6391 France
## 6393 6392 US
## 6394 6393 US
## 6395 6394 Argentina
## 6396 6395 South Africa
## 6397 6396 Argentina
## 6398 6397 Italy
## 6399 6398 Argentina
## 6400 6399 Portugal
## 6401 6400 Portugal
## 6402 6401 US
## 6403 6402 US
## 6404 6403 South Africa
## 6405 6404 Italy
## 6406 6405 France
## 6407 6406 Italy
## 6408 6407 Austria
## 6409 6408 Austria
## 6410 6409 Italy
## 6411 6410 US
## 6412 6411 US
## 6413 6412 New Zealand
## 6414 6413 South Africa
## 6415 6414 New Zealand
## 6416 6415 US
## 6417 6416 Italy
## 6418 6417 France
## 6419 6418 South Africa
## 6420 6419 South Africa
## 6421 6420 France
## 6422 6421 US
## 6423 6422 US
## 6424 6423 France
## 6425 6424 Italy
## 6426 6425 France
## 6427 6426 France
## 6428 6427 France
## 6429 6428 France
## 6430 6429 France
## 6431 6430 France
## 6432 6431 US
## 6433 6432 US
## 6434 6433 France
## 6435 6434 France
## 6436 6435 France
## 6437 6436 Italy
## 6438 6437 Spain
## 6439 6438 France
## 6440 6439 Italy
## 6441 6440 France
## 6442 6441 France
## 6443 6442 France
## 6444 6443 France
## 6445 6444 France
## 6446 6445 Italy
## 6447 6446 France
## 6448 6447 France
## 6449 6448 US
## 6450 6449 France
## 6451 6450 Italy
## 6452 6451 US
## 6453 6452 Italy
## 6454 6453 France
## 6455 6454 US
## 6456 6455 US
## 6457 6456 US
## 6458 6457 US
## 6459 6458 US
## 6460 6459 France
## 6461 6460 France
## 6462 6461 US
## 6463 6462 US
## 6464 6463 Italy
## 6465 6464 Spain
## 6466 6465 Canada
## 6467 6466 Italy
## 6468 6467 US
## 6469 6468 France
## 6470 6469 Italy
## 6471 6470 France
## 6472 6471 US
## 6473 6472 Italy
## 6474 6473 US
## 6475 6474 US
## 6476 6475 US
## 6477 6476 US
## 6478 6477 France
## 6479 6478 Italy
## 6480 6479 US
## 6481 6480 Portugal
## 6482 6481 Portugal
## 6483 6482 Argentina
## 6484 6483 US
## 6485 6484 Italy
## 6486 6485 US
## 6487 6486 Portugal
## 6488 6487 US
## 6489 6488 Spain
## 6490 6489 US
## 6491 6490 US
## 6492 6491 Spain
## 6493 6492 Spain
## 6494 6493 Argentina
## 6495 6494 US
## 6496 6495 US
## 6497 6496 Spain
## 6498 6497 Italy
## 6499 6498 Spain
## 6500 6499 Italy
## 6501 6500 Argentina
## 6502 6501 Portugal
## 6503 6502 US
## 6504 6503 Portugal
## 6505 6504 Argentina
## 6506 6505 Spain
## 6507 6506 Spain
## 6508 6507 Spain
## 6509 6508 Argentina
## 6510 6509 Spain
## 6511 6510 France
## 6512 6511 Spain
## 6513 6512 US
## 6514 6513 France
## 6515 6514 US
## 6516 6515 US
## 6517 6516 US
## 6518 6517 US
## 6519 6518 France
## 6520 6519 France
## 6521 6520 France
## 6522 6521 France
## 6523 6522 US
## 6524 6523 Spain
## 6525 6524 US
## 6526 6525 US
## 6527 6526 US
## 6528 6527 US
## 6529 6528 Spain
## 6530 6529 Spain
## 6531 6530 US
## 6532 6531 US
## 6533 6532 Spain
## 6534 6533 US
## 6535 6534 US
## 6536 6535 US
## 6537 6536 France
## 6538 6537 France
## 6539 6538 France
## 6540 6539 US
## 6541 6540 US
## 6542 6541 Chile
## 6543 6542 US
## 6544 6543 Chile
## 6545 6544 US
## 6546 6545 US
## 6547 6546 US
## 6548 6547 US
## 6549 6548 Chile
## 6550 6549 US
## 6551 6550 US
## 6552 6551 US
## 6553 6552 Chile
## 6554 6553 Chile
## 6555 6554 Chile
## 6556 6555 Chile
## 6557 6556 Chile
## 6558 6557 US
## 6559 6558 Chile
## 6560 6559 US
## 6561 6560 US
## 6562 6561 US
## 6563 6562 Chile
## 6564 6563 US
## 6565 6564 Chile
## 6566 6565 Peru
## 6567 6566 New Zealand
## 6568 6567 US
## 6569 6568 Chile
## 6570 6569 France
## 6571 6570 US
## 6572 6571 France
## 6573 6572 France
## 6574 6573 France
## 6575 6574 US
## 6576 6575 Hungary
## 6577 6576 France
## 6578 6577 France
## 6579 6578 US
## 6580 6579 US
## 6581 6580 US
## 6582 6581 US
## 6583 6582 France
## 6584 6583 US
## 6585 6584 US
## 6586 6585 US
## 6587 6586 France
## 6588 6587 US
## 6589 6588 US
## 6590 6589 South Africa
## 6591 6590 Italy
## 6592 6591 US
## 6593 6592 Italy
## 6594 6593 France
## 6595 6594 US
## 6596 6595 Italy
## 6597 6596 Italy
## 6598 6597 US
## 6599 6598 France
## 6600 6599 France
## 6601 6600 France
## 6602 6601 Italy
## 6603 6602 Chile
## 6604 6603 Italy
## 6605 6604 US
## 6606 6605 Chile
## 6607 6606 Italy
## 6608 6607 New Zealand
## 6609 6608 France
## 6610 6609 France
## 6611 6610 South Africa
## 6612 6611 US
## 6613 6612 US
## 6614 6613 New Zealand
## 6615 6614 South Africa
## 6616 6615 Italy
## 6617 6616 US
## 6618 6617 France
## 6619 6618 US
## 6620 6619 US
## 6621 6620 Italy
## 6622 6621 US
## 6623 6622 Portugal
## 6624 6623 Italy
## 6625 6624 US
## 6626 6625 Italy
## 6627 6626 Italy
## 6628 6627 US
## 6629 6628 US
## 6630 6629 US
## 6631 6630 US
## 6632 6631 Italy
## 6633 6632 US
## 6634 6633 US
## 6635 6634 Argentina
## 6636 6635 Spain
## 6637 6636 Italy
## 6638 6637 US
## 6639 6638 Italy
## 6640 6639 Mexico
## 6641 6640 US
## 6642 6641 Italy
## 6643 6642 US
## 6644 6643 US
## 6645 6644 US
## 6646 6645 Italy
## 6647 6646 Italy
## 6648 6647 Austria
## 6649 6648 Australia
## 6650 6649 New Zealand
## 6651 6650 Italy
## 6652 6651 US
## 6653 6652 France
## 6654 6653 Italy
## 6655 6654 Italy
## 6656 6655 US
## 6657 6656 Chile
## 6658 6657 US
## 6659 6658 France
## 6660 6659 France
## 6661 6660 Argentina
## 6662 6661 Argentina
## 6663 6662 Australia
## 6664 6663 New Zealand
## 6665 6664 France
## 6666 6665 US
## 6667 6666 US
## 6668 6667 France
## 6669 6668 US
## 6670 6669 US
## 6671 6670 US
## 6672 6671 US
## 6673 6672 US
## 6674 6673 India
## 6675 6674 US
## 6676 6675 US
## 6677 6676 US
## 6678 6677 Portugal
## 6679 6678 France
## 6680 6679 Italy
## 6681 6680 US
## 6682 6681 US
## 6683 6682 US
## 6684 6683 Italy
## 6685 6684 US
## 6686 6685 France
## 6687 6686 US
## 6688 6687 US
## 6689 6688 US
## 6690 6689 Italy
## 6691 6690 US
## 6692 6691 France
## 6693 6692 Italy
## 6694 6693 US
## 6695 6694 Italy
## 6696 6695 France
## 6697 6696 Italy
## 6698 6697 US
## 6699 6698 Spain
## 6700 6699 US
## 6701 6700 England
## 6702 6701 US
## 6703 6702 US
## 6704 6703 US
## 6705 6704 US
## 6706 6705 Spain
## 6707 6706 US
## 6708 6707 Italy
## 6709 6708 US
## 6710 6709 Chile
## 6711 6710 France
## 6712 6711 France
## 6713 6712 US
## 6714 6713 Italy
## 6715 6714 France
## 6716 6715 France
## 6717 6716 Italy
## 6718 6717 US
## 6719 6718 US
## 6720 6719 US
## 6721 6720 US
## 6722 6721 US
## 6723 6722 US
## 6724 6723 US
## 6725 6724 US
## 6726 6725 Spain
## 6727 6726 Italy
## 6728 6727 France
## 6729 6728 US
## 6730 6729 US
## 6731 6730 France
## 6732 6731 France
## 6733 6732 US
## 6734 6733 France
## 6735 6734 France
## 6736 6735 France
## 6737 6736 Austria
## 6738 6737 US
## 6739 6738 US
## 6740 6739 US
## 6741 6740 US
## 6742 6741 Italy
## 6743 6742 US
## 6744 6743 France
## 6745 6744 France
## 6746 6745 France
## 6747 6746 US
## 6748 6747 US
## 6749 6748 US
## 6750 6749 US
## 6751 6750 Italy
## 6752 6751 Austria
## 6753 6752 Argentina
## 6754 6753 Italy
## 6755 6754 US
## 6756 6755 US
## 6757 6756 Austria
## 6758 6757 Italy
## 6759 6758 US
## 6760 6759 Italy
## 6761 6760 Austria
## 6762 6761 Austria
## 6763 6762 Austria
## 6764 6763 Austria
## 6765 6764 Austria
## 6766 6765 US
## 6767 6766 Argentina
## 6768 6767 Argentina
## 6769 6768 Spain
## 6770 6769 Italy
## 6771 6770 Italy
## 6772 6771 France
## 6773 6772 France
## 6774 6773 France
## 6775 6774 France
## 6776 6775 France
## 6777 6776 France
## 6778 6777 US
## 6779 6778 South Africa
## 6780 6779 Chile
## 6781 6780 US
## 6782 6781 France
## 6783 6782 South Africa
## 6784 6783 South Africa
## 6785 6784 Italy
## 6786 6785 France
## 6787 6786 US
## 6788 6787 Spain
## 6789 6788 US
## 6790 6789 France
## 6791 6790 South Africa
## 6792 6791 Austria
## 6793 6792 South Africa
## 6794 6793 South Africa
## 6795 6794 Spain
## 6796 6795 Italy
## 6797 6796 Spain
## 6798 6797 US
## 6799 6798 Italy
## 6800 6799 France
## 6801 6800 US
## 6802 6801 Italy
## 6803 6802 US
## 6804 6803 US
## 6805 6804 South Africa
## 6806 6805 Italy
## 6807 6806 US
## 6808 6807 France
## 6809 6808 Italy
## 6810 6809 Argentina
## 6811 6810 US
## 6812 6811 Spain
## 6813 6812 Spain
## 6814 6813 France
## 6815 6814 France
## 6816 6815 France
## 6817 6816 France
## 6818 6817 France
## 6819 6818 US
## 6820 6819 US
## 6821 6820 Italy
## 6822 6821 US
## 6823 6822 US
## 6824 6823 Italy
## 6825 6824 US
## 6826 6825 Spain
## 6827 6826 France
## 6828 6827 Argentina
## 6829 6828 Spain
## 6830 6829 Italy
## 6831 6830 Italy
## 6832 6831 Italy
## 6833 6832 Italy
## 6834 6833 Spain
## 6835 6834 France
## 6836 6835 South Africa
## 6837 6836 France
## 6838 6837 France
## 6839 6838 France
## 6840 6839 France
## 6841 6840 US
## 6842 6841 Italy
## 6843 6842 Italy
## 6844 6843 Italy
## 6845 6844 Italy
## 6846 6845 US
## 6847 6846 Argentina
## 6848 6847 Italy
## 6849 6848 Italy
## 6850 6849 France
## 6851 6850 France
## 6852 6851 Italy
## 6853 6852 US
## 6854 6853 France
## 6855 6854 Italy
## 6856 6855 Italy
## 6857 6856 Argentina
## 6858 6857 US
## 6859 6858 Spain
## 6860 6859 Italy
## 6861 6860 France
## 6862 6861 France
## 6863 6862 France
## 6864 6863 Canada
## 6865 6864 US
## 6866 6865 Argentina
## 6867 6866 Germany
## 6868 6867 France
## 6869 6868 Argentina
## 6870 6869 Austria
## 6871 6870 New Zealand
## 6872 6871 Italy
## 6873 6872 France
## 6874 6873 Spain
## 6875 6874 Italy
## 6876 6875 France
## 6877 6876 Germany
## 6878 6877 New Zealand
## 6879 6878 US
## 6880 6879 US
## 6881 6880 Germany
## 6882 6881 US
## 6883 6882 Italy
## 6884 6883 Italy
## 6885 6884 Italy
## 6886 6885 Italy
## 6887 6886 Italy
## 6888 6887 Italy
## 6889 6888 Argentina
## 6890 6889 Germany
## 6891 6890 US
## 6892 6891 US
## 6893 6892 Italy
## 6894 6893 Italy
## 6895 6894 Italy
## 6896 6895 Italy
## 6897 6896 US
## 6898 6897 Italy
## 6899 6898 US
## 6900 6899 Argentina
## 6901 6900 Italy
## 6902 6901 Italy
## 6903 6902 Italy
## 6904 6903 US
## 6905 6904 Argentina
## 6906 6905 US
## 6907 6906 Italy
## 6908 6907 Germany
## 6909 6908 Portugal
## 6910 6909 Argentina
## 6911 6910 Italy
## 6912 6911 Chile
## 6913 6912 Portugal
## 6914 6913 US
## 6915 6914 France
## 6916 6915 US
## 6917 6916 Spain
## 6918 6917 Italy
## 6919 6918 US
## 6920 6919 US
## 6921 6920 Portugal
## 6922 6921 France
## 6923 6922 US
## 6924 6923 US
## 6925 6924 US
## 6926 6925 US
## 6927 6926 US
## 6928 6927 US
## 6929 6928 Portugal
## 6930 6929 Portugal
## 6931 6930 US
## 6932 6931 Germany
## 6933 6932 Portugal
## 6934 6933 Portugal
## 6935 6934 US
## 6936 6935 US
## 6937 6936 Italy
## 6938 6937 US
## 6939 6938 Portugal
## 6940 6939 US
## 6941 6940 Portugal
## 6942 6941 Australia
## 6943 6942 South Africa
## 6944 6943 France
## 6945 6944 Australia
## 6946 6945 Germany
## 6947 6946 Germany
## 6948 6947 Germany
## 6949 6948 South Africa
## 6950 6949 US
## 6951 6950 Italy
## 6952 6951 Italy
## 6953 6952 Germany
## 6954 6953 Spain
## 6955 6954 US
## 6956 6955 Germany
## 6957 6956 Germany
## 6958 6957 Germany
## 6959 6958 France
## 6960 6959 France
## 6961 6960 Italy
## 6962 6961 Portugal
## 6963 6962 US
## 6964 6963 Italy
## 6965 6964 US
## 6966 6965 US
## 6967 6966 Italy
## 6968 6967 US
## 6969 6968 US
## 6970 6969 Uruguay
## 6971 6970 Bulgaria
## 6972 6971 US
## 6973 6972 Portugal
## 6974 6973 Chile
## 6975 6974 US
## 6976 6975 Portugal
## 6977 6976 US
## 6978 6977 US
## 6979 6978 France
## 6980 6979 France
## 6981 6980 France
## 6982 6981 Chile
## 6983 6982 Australia
## 6984 6983 Italy
## 6985 6984 Portugal
## 6986 6985 US
## 6987 6986 Australia
## 6988 6987 Romania
## 6989 6988 US
## 6990 6989 France
## 6991 6990 France
## 6992 6991 US
## 6993 6992 US
## 6994 6993 US
## 6995 6994 Italy
## 6996 6995 Chile
## 6997 6996 US
## 6998 6997 Slovenia
## 6999 6998 Slovenia
## 7000 6999 Italy
## 7001 7000 Italy
## 7002 7001 France
## 7003 7002 France
## 7004 7003 France
## 7005 7004 France
## 7006 7005 France
## 7007 7006 France
## 7008 7007 Italy
## 7009 7008 US
## 7010 7009 US
## 7011 7010 France
## 7012 7011 Italy
## 7013 7012 Chile
## 7014 7013 Portugal
## 7015 7014 France
## 7016 7015 France
## 7017 7016 US
## 7018 7017 US
## 7019 7018 US
## 7020 7019 US
## 7021 7020 France
## 7022 7021 France
## 7023 7022 US
## 7024 7023 Italy
## 7025 7024 Italy
## 7026 7025 New Zealand
## 7027 7026 US
## 7028 7027 US
## 7029 7028 New Zealand
## 7030 7029 US
## 7031 7030 US
## 7032 7031 US
## 7033 7032 Italy
## 7034 7033 US
## 7035 7034 France
## 7036 7035 Spain
## 7037 7036 New Zealand
## 7038 7037 US
## 7039 7038 US
## 7040 7039 US
## 7041 7040 US
## 7042 7041 US
## 7043 7042 Germany
## 7044 7043 France
## 7045 7044 Portugal
## 7046 7045 Portugal
## 7047 7046 Argentina
## 7048 7047 Argentina
## 7049 7048 US
## 7050 7049 Portugal
## 7051 7050 Spain
## 7052 7051 US
## 7053 7052 US
## 7054 7053 Argentina
## 7055 7054 US
## 7056 7055 Spain
## 7057 7056 Spain
## 7058 7057 US
## 7059 7058 France
## 7060 7059 France
## 7061 7060 Portugal
## 7062 7061 Spain
## 7063 7062 Spain
## 7064 7063 Portugal
## 7065 7064 US
## 7066 7065 Spain
## 7067 7066 Portugal
## 7068 7067 France
## 7069 7068 Spain
## 7070 7069 Italy
## 7071 7070 US
## 7072 7071 Portugal
## 7073 7072 Australia
## 7074 7073 US
## 7075 7074 US
## 7076 7075 Argentina
## 7077 7076 Argentina
## 7078 7077 US
## 7079 7078 US
## 7080 7079 France
## 7081 7080 US
## 7082 7081 Australia
## 7083 7082 Australia
## 7084 7083 US
## 7085 7084 US
## 7086 7085 US
## 7087 7086 US
## 7088 7087 Chile
## 7089 7088 US
## 7090 7089 US
## 7091 7090 Argentina
## 7092 7091 Chile
## 7093 7092 Chile
## 7094 7093 Argentina
## 7095 7094 Argentina
## 7096 7095 Argentina
## 7097 7096 Chile
## 7098 7097 US
## 7099 7098 Portugal
## 7100 7099 Spain
## 7101 7100 Italy
## 7102 7101 France
## 7103 7102 France
## 7104 7103 Italy
## 7105 7104 US
## 7106 7105 France
## 7107 7106 Portugal
## 7108 7107 France
## 7109 7108 Portugal
## 7110 7109 US
## 7111 7110 US
## 7112 7111 US
## 7113 7112 US
## 7114 7113 US
## 7115 7114 South Africa
## 7116 7115 US
## 7117 7116 Italy
## 7118 7117 France
## 7119 7118 Italy
## 7120 7119 Italy
## 7121 7120 Spain
## 7122 7121 France
## 7123 7122 Italy
## 7124 7123 US
## 7125 7124 Spain
## 7126 7125 Canada
## 7127 7126 Argentina
## 7128 7127 US
## 7129 7128 US
## 7130 7129 US
## 7131 7130 US
## 7132 7131 Portugal
## 7133 7132 Chile
## 7134 7133 Italy
## 7135 7134 France
## 7136 7135 Chile
## 7137 7136 Italy
## 7138 7137 US
## 7139 7138 US
## 7140 7139 Portugal
## 7141 7140 US
## 7142 7141 Canada
## 7143 7142 Italy
## 7144 7143 US
## 7145 7144 US
## 7146 7145 France
## 7147 7146 Chile
## 7148 7147 US
## 7149 7148 US
## 7150 7149 Lebanon
## 7151 7150 US
## 7152 7151 US
## 7153 7152 Chile
## 7154 7153 Italy
## 7155 7154 Spain
## 7156 7155 France
## 7157 7156 Italy
## 7158 7157 Italy
## 7159 7158 Italy
## 7160 7159 Italy
## 7161 7160 Italy
## 7162 7161 Italy
## 7163 7162 US
## 7164 7163 France
## 7165 7164 Argentina
## 7166 7165 Italy
## 7167 7166 Italy
## 7168 7167 New Zealand
## 7169 7168 Israel
## 7170 7169 Israel
## 7171 7170 Spain
## 7172 7171 US
## 7173 7172 US
## 7174 7173 Italy
## 7175 7174 US
## 7176 7175 US
## 7177 7176 South Africa
## 7178 7177 South Africa
## 7179 7178 South Africa
## 7180 7179 Spain
## 7181 7180 France
## 7182 7181 France
## 7183 7182 US
## 7184 7183 US
## 7185 7184 France
## 7186 7185 US
## 7187 7186 US
## 7188 7187 US
## 7189 7188 US
## 7190 7189 Spain
## 7191 7190 US
## 7192 7191 New Zealand
## 7193 7192 US
## 7194 7193 US
## 7195 7194 New Zealand
## 7196 7195 Portugal
## 7197 7196 France
## 7198 7197 Portugal
## 7199 7198 France
## 7200 7199 France
## 7201 7200 France
## 7202 7201 US
## 7203 7202 US
## 7204 7203 Argentina
## 7205 7204 Portugal
## 7206 7205 Germany
## 7207 7206 US
## 7208 7207 US
## 7209 7208 France
## 7210 7209 France
## 7211 7210 US
## 7212 7211 Portugal
## 7213 7212 Italy
## 7214 7213 Italy
## 7215 7214 Italy
## 7216 7215 Portugal
## 7217 7216 US
## 7218 7217 US
## 7219 7218 Italy
## 7220 7219 US
## 7221 7220 France
## 7222 7221 US
## 7223 7222 US
## 7224 7223 Italy
## 7225 7224 Italy
## 7226 7225 US
## 7227 7226 US
## 7228 7227 US
## 7229 7228 US
## 7230 7229 France
## 7231 7230 US
## 7232 7231 Spain
## 7233 7232 Spain
## 7234 7233 Italy
## 7235 7234 South Africa
## 7236 7235 Spain
## 7237 7236 US
## 7238 7237 France
## 7239 7238 US
## 7240 7239 South Africa
## 7241 7240 Italy
## 7242 7241 South Africa
## 7243 7242 France
## 7244 7243 France
## 7245 7244 France
## 7246 7245 US
## 7247 7246 France
## 7248 7247 Italy
## 7249 7248 Spain
## 7250 7249 Spain
## 7251 7250 France
## 7252 7251 US
## 7253 7252 US
## 7254 7253 US
## 7255 7254 US
## 7256 7255 Chile
## 7257 7256 France
## 7258 7257 US
## 7259 7258 US
## 7260 7259 US
## 7261 7260 Hungary
## 7262 7261 Hungary
## 7263 7262 Chile
## 7264 7263 US
## 7265 7264 US
## 7266 7265 US
## 7267 7266 Romania
## 7268 7267 US
## 7269 7268 US
## 7270 7269 France
## 7271 7270 Chile
## 7272 7271 US
## 7273 7272 Czech Republic
## 7274 7273 US
## 7275 7274 US
## 7276 7275 US
## 7277 7276 US
## 7278 7277 Hungary
## 7279 7278 France
## 7280 7279 US
## 7281 7280 Italy
## 7282 7281 Italy
## 7283 7282 US
## 7284 7283 US
## 7285 7284 US
## 7286 7285 US
## 7287 7286 US
## 7288 7287 US
## 7289 7288 US
## 7290 7289 US
## 7291 7290 Italy
## 7292 7291 Germany
## 7293 7292 Germany
## 7294 7293 France
## 7295 7294 US
## 7296 7295 US
## 7297 7296 US
## 7298 7297 Australia
## 7299 7298 US
## 7300 7299 US
## 7301 7300 US
## 7302 7301 Italy
## 7303 7302 France
## 7304 7303 France
## 7305 7304 US
## 7306 7305 US
## 7307 7306 France
## 7308 7307 France
## 7309 7308 US
## 7310 7309 France
## 7311 7310 France
## 7312 7311 France
## 7313 7312 France
## 7314 7313 US
## 7315 7314 US
## 7316 7315 US
## 7317 7316 Portugal
## 7318 7317 Spain
## 7319 7318 US
## 7320 7319 US
## 7321 7320 US
## 7322 7321 Italy
## 7323 7322 Portugal
## 7324 7323 Israel
## 7325 7324 France
## 7326 7325 Israel
## 7327 7326 Spain
## 7328 7327 US
## 7329 7328 US
## 7330 7329 US
## 7331 7330 US
## 7332 7331 US
## 7333 7332 Spain
## 7334 7333 US
## 7335 7334 US
## 7336 7335 Italy
## 7337 7336 US
## 7338 7337 US
## 7339 7338 US
## 7340 7339 US
## 7341 7340 Austria
## 7342 7341 Spain
## 7343 7342 US
## 7344 7343 Italy
## 7345 7344 US
## 7346 7345 Italy
## 7347 7346 Spain
## 7348 7347 US
## 7349 7348 Italy
## 7350 7349 Italy
## 7351 7350 US
## 7352 7351 US
## 7353 7352 Italy
## 7354 7353 US
## 7355 7354 Argentina
## 7356 7355 US
## 7357 7356 France
## 7358 7357 France
## 7359 7358 France
## 7360 7359 US
## 7361 7360 US
## 7362 7361 Italy
## 7363 7362 Italy
## 7364 7363 Spain
## 7365 7364 US
## 7366 7365 US
## 7367 7366 US
## 7368 7367 France
## 7369 7368 Spain
## 7370 7369 US
## 7371 7370 South Africa
## 7372 7371 US
## 7373 7372 US
## 7374 7373 US
## 7375 7374 Austria
## 7376 7375 US
## 7377 7376 US
## 7378 7377 US
## 7379 7378 Austria
## 7380 7379 South Africa
## 7381 7380 Spain
## 7382 7381 US
## 7383 7382 US
## 7384 7383 US
## 7385 7384 US
## 7386 7385 France
## 7387 7386 US
## 7388 7387 Australia
## 7389 7388 France
## 7390 7389 US
## 7391 7390 Italy
## 7392 7391 Spain
## 7393 7392 US
## 7394 7393 US
## 7395 7394 US
## 7396 7395 Italy
## 7397 7396 US
## 7398 7397 Portugal
## 7399 7398 US
## 7400 7399 US
## 7401 7400 US
## 7402 7401 US
## 7403 7402 US
## 7404 7403 US
## 7405 7404 US
## 7406 7405 France
## 7407 7406 US
## 7408 7407 US
## 7409 7408 Portugal
## 7410 7409 US
## 7411 7410 US
## 7412 7411 US
## 7413 7412 Portugal
## 7414 7413 US
## 7415 7414 US
## 7416 7415 US
## 7417 7416 Spain
## 7418 7417 France
## 7419 7418 US
## 7420 7419 Spain
## 7421 7420 US
## 7422 7421 US
## 7423 7422 France
## 7424 7423 South Africa
## 7425 7424 US
## 7426 7425 US
## 7427 7426 South Africa
## 7428 7427 US
## 7429 7428 South Africa
## 7430 7429 South Africa
## 7431 7430 US
## 7432 7431 Australia
## 7433 7432 US
## 7434 7433 US
## 7435 7434 South Africa
## 7436 7435 South Africa
## 7437 7436 US
## 7438 7437 US
## 7439 7438 US
## 7440 7439 Spain
## 7441 7440 US
## 7442 7441 South Africa
## 7443 7442 France
## 7444 7443 US
## 7445 7444 US
## 7446 7445 New Zealand
## 7447 7446 US
## 7448 7447 Australia
## 7449 7448 Spain
## 7450 7449 Chile
## 7451 7450 France
## 7452 7451 France
## 7453 7452 Italy
## 7454 7453 Italy
## 7455 7454 Italy
## 7456 7455 Italy
## 7457 7456 Spain
## 7458 7457 Chile
## 7459 7458 Chile
## 7460 7459 Italy
## 7461 7460 France
## 7462 7461 France
## 7463 7462 US
## 7464 7463 Chile
## 7465 7464 France
## 7466 7465 Chile
## 7467 7466 US
## 7468 7467 US
## 7469 7468 US
## 7470 7469 Italy
## 7471 7470 France
## 7472 7471 France
## 7473 7472 US
## 7474 7473 US
## 7475 7474 US
## 7476 7475 US
## 7477 7476 Italy
## 7478 7477 Italy
## 7479 7478 Italy
## 7480 7479 US
## 7481 7480 US
## 7482 7481 US
## 7483 7482 US
## 7484 7483 US
## 7485 7484 Australia
## 7486 7485 Spain
## 7487 7486 Argentina
## 7488 7487 US
## 7489 7488 US
## 7490 7489 US
## 7491 7490 US
## 7492 7491 US
## 7493 7492 US
## 7494 7493 Spain
## 7495 7494 US
## 7496 7495 US
## 7497 7496 US
## 7498 7497 US
## 7499 7498 Argentina
## 7500 7499 Argentina
## 7501 7500 US
## 7502 7501 US
## 7503 7502 US
## 7504 7503 US
## 7505 7504 Canada
## 7506 7505 US
## 7507 7506 US
## 7508 7507 France
## 7509 7508 Argentina
## 7510 7509 Italy
## 7511 7510 France
## 7512 7511 Argentina
## 7513 7512 Italy
## 7514 7513 Canada
## 7515 7514 US
## 7516 7515 US
## 7517 7516 US
## 7518 7517 Australia
## 7519 7518 France
## 7520 7519 France
## 7521 7520 France
## 7522 7521 Portugal
## 7523 7522 France
## 7524 7523 US
## 7525 7524 Italy
## 7526 7525 US
## 7527 7526 US
## 7528 7527 US
## 7529 7528 US
## 7530 7529 US
## 7531 7530 US
## 7532 7531 New Zealand
## 7533 7532 US
## 7534 7533 US
## 7535 7534 Italy
## 7536 7535 US
## 7537 7536 Italy
## 7538 7537 US
## 7539 7538 US
## 7540 7539 Italy
## 7541 7540 US
## 7542 7541 Italy
## 7543 7542 Italy
## 7544 7543 US
## 7545 7544 Spain
## 7546 7545 Spain
## 7547 7546 Chile
## 7548 7547 US
## 7549 7548 US
## 7550 7549 Italy
## 7551 7550 US
## 7552 7551 Portugal
## 7553 7552 Spain
## 7554 7553 US
## 7555 7554 Italy
## 7556 7555 Italy
## 7557 7556 Portugal
## 7558 7557 Spain
## 7559 7558 Portugal
## 7560 7559 US
## 7561 7560 France
## 7562 7561 France
## 7563 7562 France
## 7564 7563 US
## 7565 7564 US
## 7566 7565 France
## 7567 7566 US
## 7568 7567 Romania
## 7569 7568 Cyprus
## 7570 7569 Romania
## 7571 7570 Italy
## 7572 7571 US
## 7573 7572 Chile
## 7574 7573 France
## 7575 7574 US
## 7576 7575 US
## 7577 7576 Argentina
## 7578 7577 Chile
## 7579 7578 Italy
## 7580 7579 France
## 7581 7580 Italy
## 7582 7581 Greece
## 7583 7582 US
## 7584 7583 Romania
## 7585 7584 Argentina
## 7586 7585 Chile
## 7587 7586 US
## 7588 7587 France
## 7589 7588 France
## 7590 7589 Greece
## 7591 7590 US
## 7592 7591 Chile
## 7593 7592 Italy
## 7594 7593 US
## 7595 7594 Chile
## 7596 7595 Chile
## 7597 7596 Chile
## 7598 7597 Italy
## 7599 7598 Italy
## 7600 7599 US
## 7601 7600 Italy
## 7602 7601 Chile
## 7603 7602 Chile
## 7604 7603 Chile
## 7605 7604 Chile
## 7606 7605 Chile
## 7607 7606 US
## 7608 7607 Portugal
## 7609 7608 Mexico
## 7610 7609 Italy
## 7611 7610 Chile
## 7612 7611 Portugal
## 7613 7612 Chile
## 7614 7613 France
## 7615 7614 France
## 7616 7615 France
## 7617 7616 US
## 7618 7617 US
## 7619 7618 Italy
## 7620 7619 Italy
## 7621 7620 US
## 7622 7621 New Zealand
## 7623 7622 Canada
## 7624 7623 US
## 7625 7624 Austria
## 7626 7625 US
## 7627 7626 Canada
## 7628 7627 France
## 7629 7628 US
## 7630 7629 Italy
## 7631 7630 US
## 7632 7631 France
## 7633 7632 France
## 7634 7633 US
## 7635 7634 US
## 7636 7635 US
## 7637 7636 Italy
## 7638 7637 Italy
## 7639 7638 Argentina
## 7640 7639 South Africa
## 7641 7640 Italy
## 7642 7641 Italy
## 7643 7642 Italy
## 7644 7643 New Zealand
## 7645 7644 Italy
## 7646 7645 US
## 7647 7646 France
## 7648 7647 US
## 7649 7648 Italy
## 7650 7649 Spain
## 7651 7650 Italy
## 7652 7651 Spain
## 7653 7652 France
## 7654 7653 US
## 7655 7654 US
## 7656 7655 US
## 7657 7656 Italy
## 7658 7657 US
## 7659 7658 Australia
## 7660 7659 Chile
## 7661 7660 Italy
## 7662 7661 Italy
## 7663 7662 Italy
## 7664 7663 France
## 7665 7664 Italy
## 7666 7665 US
## 7667 7666 US
## 7668 7667 US
## 7669 7668 Spain
## 7670 7669 US
## 7671 7670 US
## 7672 7671 Portugal
## 7673 7672 US
## 7674 7673 US
## 7675 7674 US
## 7676 7675 US
## 7677 7676 Greece
## 7678 7677 Spain
## 7679 7678 US
## 7680 7679 Greece
## 7681 7680 US
## 7682 7681 France
## 7683 7682 France
## 7684 7683 Spain
## 7685 7684 US
## 7686 7685 Turkey
## 7687 7686 Italy
## 7688 7687 US
## 7689 7688 US
## 7690 7689 France
## 7691 7690 Spain
## 7692 7691 Italy
## 7693 7692 South Africa
## 7694 7693 US
## 7695 7694 Italy
## 7696 7695 France
## 7697 7696 US
## 7698 7697 South Africa
## 7699 7698 US
## 7700 7699 Spain
## 7701 7700 US
## 7702 7701 US
## 7703 7702 South Africa
## 7704 7703 US
## 7705 7704 Spain
## 7706 7705 Spain
## 7707 7706 South Africa
## 7708 7707 Spain
## 7709 7708 US
## 7710 7709 France
## 7711 7710 US
## 7712 7711 South Africa
## 7713 7712 Australia
## 7714 7713 Germany
## 7715 7714 South Africa
## 7716 7715 South Africa
## 7717 7716 Spain
## 7718 7717 Spain
## 7719 7718 France
## 7720 7719 US
## 7721 7720 Portugal
## 7722 7721 US
## 7723 7722 US
## 7724 7723 France
## 7725 7724 France
## 7726 7725 France
## 7727 7726 France
## 7728 7727 France
## 7729 7728 France
## 7730 7729 France
## 7731 7730 France
## 7732 7731 US
## 7733 7732 France
## 7734 7733 Portugal
## 7735 7734 Portugal
## 7736 7735 US
## 7737 7736 US
## 7738 7737 US
## 7739 7738 Germany
## 7740 7739 US
## 7741 7740 Australia
## 7742 7741 France
## 7743 7742 US
## 7744 7743 France
## 7745 7744 Italy
## 7746 7745 Portugal
## 7747 7746 US
## 7748 7747 US
## 7749 7748 US
## 7750 7749 Austria
## 7751 7750 US
## 7752 7751 US
## 7753 7752 US
## 7754 7753 Austria
## 7755 7754 Austria
## 7756 7755 US
## 7757 7756 US
## 7758 7757 US
## 7759 7758 Italy
## 7760 7759 US
## 7761 7760 US
## 7762 7761 US
## 7763 7762 US
## 7764 7763 US
## 7765 7764 US
## 7766 7765 US
## 7767 7766 Austria
## 7768 7767 US
## 7769 7768 Austria
## 7770 7769 US
## 7771 7770 Austria
## 7772 7771 Austria
## 7773 7772 Austria
## 7774 7773 France
## 7775 7774 France
## 7776 7775 Spain
## 7777 7776 France
## 7778 7777 US
## 7779 7778 US
## 7780 7779 Canada
## 7781 7780 Austria
## 7782 7781 Italy
## 7783 7782 Austria
## 7784 7783 US
## 7785 7784 Italy
## 7786 7785 Australia
## 7787 7786 US
## 7788 7787 Austria
## 7789 7788 France
## 7790 7789 US
## 7791 7790 Italy
## 7792 7791 South Africa
## 7793 7792 Italy
## 7794 7793 Austria
## 7795 7794 Austria
## 7796 7795 Austria
## 7797 7796 US
## 7798 7797 US
## 7799 7798 Austria
## 7800 7799 Austria
## 7801 7800 Australia
## 7802 7801 Canada
## 7803 7802 US
## 7804 7803 US
## 7805 7804 Italy
## 7806 7805 Portugal
## 7807 7806 US
## 7808 7807 US
## 7809 7808 Australia
## 7810 7809 US
## 7811 7810 US
## 7812 7811 US
## 7813 7812 US
## 7814 7813 Spain
## 7815 7814 US
## 7816 7815 US
## 7817 7816 Spain
## 7818 7817 US
## 7819 7818 Australia
## 7820 7819 US
## 7821 7820 France
## 7822 7821 US
## 7823 7822 Australia
## 7824 7823 US
## 7825 7824 Spain
## 7826 7825 US
## 7827 7826 US
## 7828 7827 US
## 7829 7828 Australia
## 7830 7829 Australia
## 7831 7830 Italy
## 7832 7831 Australia
## 7833 7832 Australia
## 7834 7833 Spain
## 7835 7834 US
## 7836 7835 US
## 7837 7836 US
## 7838 7837 Spain
## 7839 7838 Australia
## 7840 7839 US
## 7841 7840 US
## 7842 7841 US
## 7843 7842 US
## 7844 7843 US
## 7845 7844 US
## 7846 7845 US
## 7847 7846 Spain
## 7848 7847 US
## 7849 7848 US
## 7850 7849 Australia
## 7851 7850 US
## 7852 7851 Argentina
## 7853 7852 Argentina
## 7854 7853 US
## 7855 7854 US
## 7856 7855 France
## 7857 7856 Italy
## 7858 7857 US
## 7859 7858 France
## 7860 7859 France
## 7861 7860 US
## 7862 7861 Italy
## 7863 7862 US
## 7864 7863 US
## 7865 7864 Austria
## 7866 7865 France
## 7867 7866 Argentina
## 7868 7867 Argentina
## 7869 7868 US
## 7870 7869 South Africa
## 7871 7870 US
## 7872 7871 South Africa
## 7873 7872 US
## 7874 7873 US
## 7875 7874 US
## 7876 7875 France
## 7877 7876 US
## 7878 7877 Italy
## 7879 7878 Canada
## 7880 7879 US
## 7881 7880 US
## 7882 7881 France
## 7883 7882 US
## 7884 7883 Portugal
## 7885 7884 Portugal
## 7886 7885 Chile
## 7887 7886 Chile
## 7888 7887 US
## 7889 7888 France
## 7890 7889 US
## 7891 7890 US
## 7892 7891 Italy
## 7893 7892 US
## 7894 7893 Portugal
## 7895 7894 France
## 7896 7895 US
## 7897 7896 Portugal
## 7898 7897 Italy
## 7899 7898 France
## 7900 7899 France
## 7901 7900 Chile
## 7902 7901 US
## 7903 7902 US
## 7904 7903 France
## 7905 7904 US
## 7906 7905 US
## 7907 7906 Portugal
## 7908 7907 US
## 7909 7908 US
## 7910 7909 US
## 7911 7910 US
## 7912 7911 US
## 7913 7912 Italy
## 7914 7913 Italy
## 7915 7914 Italy
## 7916 7915 Italy
## 7917 7916 Australia
## 7918 7917 France
## 7919 7918 Australia
## 7920 7919 US
## 7921 7920 Portugal
## 7922 7921 Italy
## 7923 7922 US
## 7924 7923 US
## 7925 7924 Portugal
## 7926 7925 Portugal
## 7927 7926 Italy
## 7928 7927 Argentina
## 7929 7928 Argentina
## 7930 7929 US
## 7931 7930 US
## 7932 7931 Portugal
## 7933 7932 Australia
## 7934 7933 Bulgaria
## 7935 7934 US
## 7936 7935 Italy
## 7937 7936 Italy
## 7938 7937 France
## 7939 7938 Bulgaria
## 7940 7939 France
## 7941 7940 US
## 7942 7941 Australia
## 7943 7942 US
## 7944 7943 Italy
## 7945 7944 France
## 7946 7945 US
## 7947 7946 US
## 7948 7947 US
## 7949 7948 US
## 7950 7949 US
## 7951 7950 US
## 7952 7951 Australia
## 7953 7952 Italy
## 7954 7953 Chile
## 7955 7954 Italy
## 7956 7955 New Zealand
## 7957 7956 Austria
## 7958 7957 US
## 7959 7958 US
## 7960 7959 US
## 7961 7960 New Zealand
## 7962 7961 Italy
## 7963 7962 Italy
## 7964 7963 US
## 7965 7964 US
## 7966 7965 Austria
## 7967 7966 US
## 7968 7967 US
## 7969 7968 US
## 7970 7969 Italy
## 7971 7970 France
## 7972 7971 US
## 7973 7972 France
## 7974 7973 US
## 7975 7974 France
## 7976 7975 France
## 7977 7976 US
## 7978 7977 US
## 7979 7978 New Zealand
## 7980 7979 US
## 7981 7980 US
## 7982 7981 US
## 7983 7982 US
## 7984 7983 US
## 7985 7984 Italy
## 7986 7985 New Zealand
## 7987 7986 Italy
## 7988 7987 Italy
## 7989 7988 Italy
## 7990 7989 Portugal
## 7991 7990 France
## 7992 7991 US
## 7993 7992 Portugal
## 7994 7993 France
## 7995 7994 Portugal
## 7996 7995 US
## 7997 7996 US
## 7998 7997 US
## 7999 7998 US
## 8000 7999 Argentina
## 8001 8000 US
## 8002 8001 France
## 8003 8002 France
## 8004 8003 France
## 8005 8004 Portugal
## 8006 8005 Italy
## 8007 8006 US
## 8008 8007 Italy
## 8009 8008 US
## 8010 8009 US
## 8011 8010 France
## 8012 8011 France
## 8013 8012 France
## 8014 8013 France
## 8015 8014 Italy
## 8016 8015 US
## 8017 8016 US
## 8018 8017 US
## 8019 8018 Germany
## 8020 8019 France
## 8021 8020 Portugal
## 8022 8021 Portugal
## 8023 8022 US
## 8024 8023 US
## 8025 8024 US
## 8026 8025 US
## 8027 8026 US
## 8028 8027 Portugal
## 8029 8028 Portugal
## 8030 8029 Italy
## 8031 8030 US
## 8032 8031 US
## 8033 8032 US
## 8034 8033 US
## 8035 8034 US
## 8036 8035 US
## 8037 8036 Italy
## 8038 8037 US
## 8039 8038 Spain
## 8040 8039 Italy
## 8041 8040 Chile
## 8042 8041 Chile
## 8043 8042 US
## 8044 8043 US
## 8045 8044 US
## 8046 8045 France
## 8047 8046 Chile
## 8048 8047 France
## 8049 8048 Spain
## 8050 8049 Italy
## 8051 8050 France
## 8052 8051 Italy
## 8053 8052 US
## 8054 8053 US
## 8055 8054 France
## 8056 8055 France
## 8057 8056 France
## 8058 8057 France
## 8059 8058 US
## 8060 8059 Italy
## 8061 8060 Italy
## 8062 8061 US
## 8063 8062 US
## 8064 8063 US
## 8065 8064 France
## 8066 8065 US
## 8067 8066 US
## 8068 8067 US
## 8069 8068 Chile
## 8070 8069 US
## 8071 8070 Italy
## 8072 8071 US
## 8073 8072 Chile
## 8074 8073 US
## 8075 8074 Portugal
## 8076 8075 France
## 8077 8076 Chile
## 8078 8077 Chile
## 8079 8078 France
## 8080 8079 France
## 8081 8080 US
## 8082 8081 US
## 8083 8082 US
## 8084 8083 US
## 8085 8084 Portugal
## 8086 8085 Portugal
## 8087 8086 US
## 8088 8087 US
## 8089 8088 Lebanon
## 8090 8089 Portugal
## 8091 8090 US
## 8092 8091 US
## 8093 8092 Portugal
## 8094 8093 US
## 8095 8094 US
## 8096 8095 US
## 8097 8096 US
## 8098 8097 New Zealand
## 8099 8098 France
## 8100 8099 France
## 8101 8100 New Zealand
## 8102 8101 US
## 8103 8102 France
## 8104 8103 France
## 8105 8104 France
## 8106 8105 US
## 8107 8106 US
## 8108 8107 Italy
## 8109 8108 US
## 8110 8109 Italy
## 8111 8110 Argentina
## 8112 8111 US
## 8113 8112 US
## 8114 8113 Italy
## 8115 8114 South Africa
## 8116 8115 US
## 8117 8116 US
## 8118 8117 US
## 8119 8118 US
## 8120 8119 New Zealand
## 8121 8120 France
## 8122 8121 France
## 8123 8122 New Zealand
## 8124 8123 US
## 8125 8124 US
## 8126 8125 US
## 8127 8126 Italy
## 8128 8127 New Zealand
## 8129 8128 France
## 8130 8129 US
## 8131 8130 France
## 8132 8131 US
## 8133 8132 US
## 8134 8133 France
## 8135 8134 Italy
## 8136 8135 France
## 8137 8136 Argentina
## 8138 8137 Italy
## 8139 8138 US
## 8140 8139 Spain
## 8141 8140 Argentina
## 8142 8141 US
## 8143 8142 New Zealand
## 8144 8143 US
## 8145 8144 Italy
## 8146 8145 US
## 8147 8146 Argentina
## 8148 8147 Canada
## 8149 8148 New Zealand
## 8150 8149 New Zealand
## 8151 8150 US
## 8152 8151 France
## 8153 8152 France
## 8154 8153 US
## 8155 8154 France
## 8156 8155 France
## 8157 8156 France
## 8158 8157 Chile
## 8159 8158 US
## 8160 8159 US
## 8161 8160 Italy
## 8162 8161 Portugal
## 8163 8162 Portugal
## 8164 8163 Italy
## 8165 8164 Chile
## 8166 8165 Chile
## 8167 8166 US
## 8168 8167 Italy
## 8169 8168 US
## 8170 8169 US
## 8171 8170 Armenia
## 8172 8171 Portugal
## 8173 8172 Australia
## 8174 8173 US
## 8175 8174 Moldova
## 8176 8175 Spain
## 8177 8176 Australia
## 8178 8177 Bulgaria
## 8179 8178 Bulgaria
## 8180 8179 US
## 8181 8180 US
## 8182 8181 US
## 8183 8182 US
## 8184 8183 US
## 8185 8184 Chile
## 8186 8185 Austria
## 8187 8186 Chile
## 8188 8187 Chile
## 8189 8188 France
## 8190 8189 France
## 8191 8190 US
## 8192 8191 US
## 8193 8192 US
## 8194 8193 Italy
## 8195 8194 France
## 8196 8195 US
## 8197 8196 New Zealand
## 8198 8197 France
## 8199 8198 France
## 8200 8199 US
## 8201 8200 US
## 8202 8201 US
## 8203 8202 Austria
## 8204 8203 Austria
## 8205 8204 France
## 8206 8205 France
## 8207 8206 France
## 8208 8207 France
## 8209 8208 US
## 8210 8209 Portugal
## 8211 8210 US
## 8212 8211 US
## 8213 8212 US
## 8214 8213 Germany
## 8215 8214 Germany
## 8216 8215 France
## 8217 8216 France
## 8218 8217 France
## 8219 8218 Italy
## 8220 8219 US
## 8221 8220 US
## 8222 8221 France
## 8223 8222 US
## 8224 8223 Portugal
## 8225 8224 US
## 8226 8225 US
## 8227 8226 Italy
## 8228 8227 France
## 8229 8228 US
## 8230 8229 US
## 8231 8230 Canada
## 8232 8231 France
## 8233 8232 US
## 8234 8233 Chile
## 8235 8234 Canada
## 8236 8235 US
## 8237 8236 France
## 8238 8237 Italy
## 8239 8238 Chile
## 8240 8239 US
## 8241 8240 South Africa
## 8242 8241 South Africa
## 8243 8242 US
## 8244 8243 South Africa
## 8245 8244 Austria
## 8246 8245 US
## 8247 8246 US
## 8248 8247 France
## 8249 8248 France
## 8250 8249 Italy
## 8251 8250 US
## 8252 8251 US
## 8253 8252 US
## 8254 8253 US
## 8255 8254 US
## 8256 8255 Italy
## 8257 8256 Italy
## 8258 8257 Chile
## 8259 8258 Austria
## 8260 8259 US
## 8261 8260 US
## 8262 8261 US
## 8263 8262 Austria
## 8264 8263 US
## 8265 8264 France
## 8266 8265 France
## 8267 8266 Italy
## 8268 8267 US
## 8269 8268 US
## 8270 8269 Italy
## 8271 8270 France
## 8272 8271 France
## 8273 8272 US
## 8274 8273 Chile
## 8275 8274 France
## 8276 8275 Croatia
## 8277 8276 Chile
## 8278 8277 US
## 8279 8278 France
## 8280 8279 Greece
## 8281 8280 Italy
## 8282 8281 US
## 8283 8282 US
## 8284 8283 Italy
## 8285 8284 US
## 8286 8285 US
## 8287 8286 Italy
## 8288 8287 US
## 8289 8288 US
## 8290 8289 US
## 8291 8290 France
## 8292 8291 New Zealand
## 8293 8292 Austria
## 8294 8293 New Zealand
## 8295 8294 US
## 8296 8295 US
## 8297 8296 Austria
## 8298 8297 US
## 8299 8298 US
## 8300 8299 US
## 8301 8300 Austria
## 8302 8301 Austria
## 8303 8302 US
## 8304 8303 Austria
## 8305 8304 Austria
## 8306 8305 France
## 8307 8306 Italy
## 8308 8307 US
## 8309 8308 US
## 8310 8309 Austria
## 8311 8310 US
## 8312 8311 Austria
## 8313 8312 US
## 8314 8313 Austria
## 8315 8314 Italy
## 8316 8315 US
## 8317 8316 US
## 8318 8317 US
## 8319 8318 Austria
## 8320 8319 US
## 8321 8320 US
## 8322 8321 US
## 8323 8322 US
## 8324 8323 US
## 8325 8324 US
## 8326 8325 US
## 8327 8326 US
## 8328 8327 France
## 8329 8328 Chile
## 8330 8329 US
## 8331 8330 US
## 8332 8331 US
## 8333 8332 Italy
## designation
## 1 Vulkà Bianco
## 2 Avidagos
## 3
## 4 Reserve Late Harvest
## 5 Vintner's Reserve Wild Child Block
## 6 Ars In Vitro
## 7 Belsito
## 8
## 9 Shine
## 10 Les Natures
## 11 Mountain Cuvée
## 12
## 13
## 14 Rosso
## 15
## 16 Devon
## 17 Felix
## 18 Winemaker Selection
## 19 Vendimia Seleccionada Finca Valdelayegua Single Vineyard Crianza
## 20
## 21 Vin de Maison
## 22
## 23 Ficiligno
## 24 Signature Selection
## 25 Aynat
## 26 King Ridge Vineyard
## 27 Dalila
## 28
## 29 Mascaria Barricato
## 30
## 31 Nouveau
## 32 Calanìca Nero d'Avola-Merlot
## 33 Calanìca Grillo-Viognier
## 34 Puma Springs Vineyard
## 35
## 36 Hyland
## 37 Estate
## 38 Missoni
## 39 I Tratturi
## 40 Purato Made With Organic Grapes
## 41
## 42
## 43 Nouveau
## 44
## 45
## 46 #SocialSecret
## 47 Sallier de la Tour
## 48
## 49
## 50 Eté Indien
## 51 Scialo
## 52 Gran Reserva
## 53 Dolia
## 54 La Fleur d'Amélie
## 55 Rosso
## 56 Estate Bottled
## 57
## 58 Sallier de la Tour
## 59 Reserve
## 60
## 61 Estate
## 62 Prugneto
## 63 Alder Ridge Vineyard
## 64 Brut Rosé
## 65 Golden Horn
## 66
## 67
## 68 Inspired
## 69
## 70 Brut Rosé
## 71
## 72 Old Vine
## 73 Daginestra
## 74 Bella Vetta Vineyard
## 75 Estate Grown
## 76 The Cypher
## 77
## 78 Made With Organic Grapes
## 79 Rosé of
## 80 Bridão
## 81 Special Release Reserva
## 82
## 83 La Réserve
## 84 Jester Sangiovese
## 85 Classic
## 86 Undone Dry
## 87
## 88 Blau Vineyards
## 89 Le Mandorle Riserva
## 90
## 91 Siena
## 92
## 93 Magnificat
## 94
## 95 Grand Klasse Reserve Lawrence Vineyards
## 96
## 97
## 98 Ingle Vineyard
## 99 Dono Riserva
## 100 Intreccio Library Selection
## 101
## 102 Red Oak Vineyard
## 103 Yellow Dog Vineyard
## 104 Single Vineyard Falaris Hill
## 105 Nativo
## 106 Villa Antinori
## 107 Castiglioni
## 108 Ammiraglia Massovivo
## 109 J.D. Hurley
## 110 Le Volte
## 111 Les Quartelets
## 112 Wolff Vineyard
## 113 Semifonte
## 114 Poetico
## 115 BDX
## 116
## 117 Camp 4 Vineyard
## 118 Estate
## 119 Toscano
## 120 Schoenenbourg Grand Cru Vendanges Tardives
## 121 Bricco Rocche Prapó
## 122 Stuhlmuller Vineyard
## 123 Rockpile Cemetary Vineyard
## 124 Parson's Flat
## 125
## 126 Cabernet Sauvignon Reserve
## 127 Vendages Tardives
## 128 Alsace One
## 129
## 130 Philosophers' Stone
## 131 Bricco Rocche Brunate
## 132 Gentil
## 133 Grand Reserve
## 134
## 135
## 136 Sorano
## 137
## 138 Hope Marguerite
## 139 Crustacés
## 140 Cuvée Jerémy Sélection de Grains Nobles
## 141 Costa Bruna
## 142 Vigna dei Pola
## 143
## 144 Hunawihr Clos Windsbuhl
## 145 K Block
## 146 Guidotti Vineyard
## 147 Family Reserve
## 148 Family Reserve
## 149 Dry
## 150 Destruction Level
## 151 Ruth's Reach
## 152 Gerações Colheita Seleccionada Branco
## 153 Estate Reserve
## 154 Old 900
## 155 Single Vineyard Estate Bottled
## 156
## 157 Graacher Himmelreich Spätlese
## 158 Grande Reserva Tinto
## 159 Bellezza Gran Selezione
## 160 Filo di Seta
## 161
## 162 Mr. Nibbles
## 163 Claiborne Vineyard
## 164 Hospices Civils de Romanèche Thurins
## 165 Condesa Real Premium Blend
## 166 20 Barrels
## 167 Charles de Batz
## 168
## 169 Rector Creek Vineyard
## 170 Dutton Ranch
## 171 Brauneberger Feinherb
## 172
## 173 The 7th Generation Gran Reserva Estate Bottled
## 174
## 175
## 176 De Silva
## 177 Unusual Cabernet-Shiraz-Zinfandel
## 178
## 179 Jack London Vineyard
## 180 Les Vénérables Vieilles Vignes
## 181 Lucia Highland Vineyard
## 182 Mission Ranch
## 183 M. Vigna
## 184
## 185
## 186 Envero Gran Reserva
## 187 Wiley Vineyard
## 188 Montenero
## 189 Casa La Joya Reserve
## 190 Natura
## 191 Campole
## 192 The Trial of John Montford
## 193 Le Pietre Santambrogio
## 194
## 195
## 196 Riserva
## 197 Pancole
## 198 21 Gables
## 199 Four Soil Mélange
## 200 Rising Starr Estate Bottled
## 201 Riserva
## 202 Nova Domus Riserva
## 203
## 204 Montes Claros Garrafeira
## 205 Gesture
## 206 October Night
## 207
## 208 Home Ranch Teldeschi Vineyards Century Old Vine
## 209 Reserve
## 210
## 211
## 212 Les Christins
## 213 Fermentado en Barrica
## 214 1105
## 215 Verah
## 216 French Blend
## 217
## 218
## 219
## 220 Megyer Dry
## 221
## 222 Passion Riserva
## 223 Trentennale
## 224
## 225 Lunta
## 226
## 227
## 228 Grace House
## 229 Semi-Dry
## 230 Costa Del Sol
## 231
## 232
## 233 Red Belly Black
## 234 Reserve
## 235 Cerasuolo Rosè
## 236 Thompson Vineyard
## 237 Kiss Ridge Vineyard
## 238
## 239 The Derelict Vineyard
## 240
## 241
## 242
## 243 Reserve Selection
## 244 Blanc de Blanc
## 245 Herederos de François Lurton Villafrance de Duero
## 246 Reserve
## 247 Destinations
## 248 Reserve
## 249 Estate Single Vineyard
## 250 Petit Verdot-Merlot
## 251 Estate
## 252 Papillon Estate
## 253 Seity
## 254 Reserve
## 255
## 256 Reserva
## 257 Goat-Roti
## 258 The William
## 259
## 260 Noir 46
## 261 Estate
## 262 Estate Blend Gran Reserva
## 263 Fairytale
## 264 Monument
## 265
## 266 Nine Yards
## 267 Corte Malbec-Bonarda-Petit Verdot
## 268 Torre di Giano Vigna il Pino
## 269 Terso
## 270
## 271
## 272
## 273 Sirmian
## 274 B Crux
## 275 Estrosa
## 276 Reserva de Familia
## 277 Old Vines
## 278
## 279 Bishop Creek
## 280
## 281 Schiefer Reserve
## 282 Bench Break Vineyard
## 283 Dulcamara
## 284 Bella Vida Vineyard Unfiltered
## 285 Marchiori Vineyard Block C2
## 286 Steiner Kögl Erste Lage
## 287 Rincon Vineyard
## 288 Braó Vinyes Velles
## 289 Kremser Gebling Erste Lage
## 290 Fortune Teller
## 291
## 292
## 293 Vin Jaune
## 294 Green's Vineyard
## 295 Synthesis
## 296 Treana Red
## 297 Grey [Glacier] Single Block Trinidad Vineyard
## 298
## 299
## 300 Pinay
## 301 Estate
## 302 Whiteline No Oak
## 303
## 304 4 Vigne
## 305 Vignassa
## 306
## 307
## 308 Les Dames Huguettes
## 309 Asirtiko Athiri
## 310
## 311
## 312
## 313
## 314
## 315
## 316 Extra Dry
## 317 Les Amants Mont-Pérat
## 318
## 319 Reserva
## 320 Millesimato Brut
## 321 Col di Manza Extra Dry Millesimato
## 322 Brut
## 323 Millesimato Dry
## 324 Gran Araucano
## 325 Matiú Brut
## 326
## 327 Extra Dry
## 328 Legado Reserva
## 329 Alluvium Blanc
## 330 Reserve
## 331 Lila's Cuvée
## 332 Visión
## 333 Palazzo Rosso Brut
## 334 Col del Sas Extra Dry
## 335 Mosaïque Rosé Brut
## 336 Arió Extra Dry
## 337 Costa
## 338
## 339
## 340 1887 Rosado
## 341 Tradition
## 342 Serracino Reserve
## 343
## 344 Grand Reserve
## 345 Gran Reserva
## 346 Rare
## 347 Rare
## 348 Kiedrich Gräfenberg Trockenbeerenauslese
## 349 Grand
## 350 RunRig
## 351 Vignolo Riserva
## 352 Eszencia
## 353 South River
## 354 Le Montrachet
## 355 Kiedrich Gräfenberg Beerenauslese
## 356 Sweetwater
## 357 Georgia's Paddock
## 358 Vieilles Vignes
## 359 Hattenheimer Hassel Auslese
## 360 Les Chenevottes Premier Cru
## 361 Descendant
## 362 Simposio
## 363 Jamie
## 364
## 365 Weber Vineyard
## 366 St. Andrews Single Vineyard Release
## 367 Vorberg
## 368 Reserva de la Familia
## 369
## 370
## 371 Cherryblock Vineyard
## 372 Castel Ringberg
## 373 Classico
## 374 I Fiori del Borgo
## 375 Kathleen's Vineyard
## 376 Vino in Musica
## 377 Zuc de Volpe
## 378 Vigneto Massoni
## 379 Private Reserve
## 380 Bianco dei Sorni
## 381 Estate Bottled
## 382 Vigne Alte
## 383 Estate Grown Reserve
## 384 Vigneto Santa Cecilia
## 385 Sanct Valentin
## 386
## 387 Windacre Vineyard
## 388 Reserve Fume
## 389 Paragon Vineyard
## 390 Terlano Classico
## 391 Reserve
## 392 Reserve
## 393
## 394 Castillo de Molina Reserva
## 395 Reserva
## 396 Rylint
## 397 Ancient Vines
## 398 Visión
## 399 Estate Selection
## 400 Extra Dry
## 401 Brut
## 402 Millesimato Extra Dry
## 403 Casa la Joya Reserve
## 404 Le Bon Viveur
## 405 White Hawk Vineyard
## 406 Extra Dry
## 407 Brut Mosaïque
## 408 Casa
## 409 Millesimato Extra Dry
## 410 Dry
## 411
## 412 Split Oak Vineyard
## 413 Canah Brut
## 414
## 415 Stefany Extra Dry
## 416
## 417 Extra Dry
## 418
## 419 Biokult Zweigelt Pinot Noir
## 420
## 421
## 422 Confidential Source
## 423 Blue Mountain Vineyard
## 424 Kittl
## 425 Verdigris
## 426 Bridge Lane
## 427 Seis
## 428 Cuvée Gabriella Brut Rosé
## 429 Crazy Creatures
## 430 The Estates Clifton Hill Vineyard
## 431 McGinley Vineyard
## 432 Indie
## 433 Upland Vineyard
## 434 Stepping Stones
## 435 Rocche dell'Annunziata
## 436 Lage Modler
## 437 Gold Label
## 438 Henry's Blend
## 439 Século
## 440 Marqués de Montejos Selección
## 441
## 442 Rosé
## 443 Caya
## 444 Estate Grown
## 445 Altweingarten
## 446 Vigorosa Rosato
## 447
## 448 Domaine de la Vieille Cure Sur Lie
## 449 Domaine de la Becassonne
## 450 Pas Dosé Aligi Sassu
## 451 Classe M
## 452 Messaggero
## 453 Les Tillets
## 454 Brut Prestige
## 455 Reserve Icewine
## 456 Reserve
## 457 Brut
## 458 Solomon Hills Vineyard
## 459 Gran Cuvée Pas Operé
## 460 Tzarina No 1 Brut
## 461 Ridgecrest Vineyards
## 462 Stoller Vineyards
## 463 Blagny Premier Cru
## 464 Cuvée Marguerite Brut
## 465 Westhofen Morstein GG Trocken
## 466 Morar
## 467 Blanc de Blancs Brut
## 468 Evenstad Reserve
## 469 Ürziger Würzgarten Alte Reben GG Trocken
## 470 Wehlener Sonnenuhr Kabinett
## 471 Édition Limitée Extra Brut
## 472 Les Chatelots Premier Cru
## 473 Les Feusselottes Premier Cru
## 474 Gerações Colheita Seleccionada
## 475 Les Grands Nots Millesimé Brut
## 476 Clone 6
## 477 La Castellana
## 478
## 479 Grand Cru Family Reserve Brut
## 480 Riserva
## 481 Stella Mae
## 482 Costera
## 483 Ocean's Ghost
## 484
## 485 Petit
## 486
## 487 L de Lyeth
## 488 Tovè
## 489
## 490
## 491 Reserva Brut
## 492 Kellermeister Privat Goldberg
## 493
## 494
## 495
## 496 Battonage
## 497 Collection Blanco
## 498 Babcock Vineyard
## 499 Annabella
## 500 L'Esprit de Provence
## 501 Rosado
## 502 Silvaspoons Vineyard
## 503 Muscato
## 504
## 505 Réserve Grand Veneur
## 506
## 507
## 508 Clifton Vineyard
## 509
## 510 Quantum
## 511 Coastview Vineyard
## 512 Cuvée St Clément
## 513 B. Zéro Brut Dosage
## 514 El Adobo Ranch Vineyard
## 515 20 Barrels Limited Edition Peralillo Estate
## 516 Silver Eagle Vineyard
## 517 Soul Patch Estate Grown
## 518 Starr Ridge Vineyard
## 519 Le Clos l'Evêque Premier Cru
## 520 The Brat
## 521 Doux Sawyer Lindquist Vineyard
## 522 Sawyer Lindquist Vineyard
## 523 Sims Vineyard
## 524 Steve's Reserve
## 525 Wallula
## 526 Rincon Vineyard
## 527 Prince Hill Vineyard Reserve
## 528 Trocken
## 529 Brut Zéro Sélection
## 530 Bucher Vineyard
## 531 Cuvée Alexandre Apalta Vineyard Made With Organic Grapes
## 532 Blanc de Noir
## 533 Diversité
## 534 Équinoxe
## 535 Di Domenico
## 536 Trocken
## 537
## 538
## 539 Bradley Vineyard
## 540 Twin Creeks Estate
## 541 Bien Nacido Vineyard
## 542 Solomon Hills Vineyard
## 543 Praepositus Passito
## 544 Cañon Creek Vineyard
## 545 Reckoning
## 546 Les Sommets
## 547 Gap's Crown Vineyard
## 548 Stolpman Vineyard
## 549 Thomas Road
## 550 Resa 56
## 551 Estate Reserve
## 552 Pagani Ranch
## 553
## 554 Winemaker's Selection Reserva
## 555 Mas Negrel Cadenet
## 556
## 557 Gran Resalte
## 558 Bien Nacido Vineyard
## 559 Enigma
## 560 Hail Mary
## 561 Headpruned Block
## 562 Durell Vineyard
## 563
## 564 Rancho Santa Rosa Vineyard
## 565 Fire Light
## 566 Shapeshifter
## 567 If Six Was Nine Reserve
## 568 Benegas Lynch La Encerrada Estate Vineyard
## 569 Reserve
## 570 La Reyna Blanca Vineyard
## 571 Art Den Hoed Vineyard
## 572
## 573
## 574
## 575 Tradition
## 576
## 577 Les Terrasses de Pressac
## 578 Pinot Noir
## 579 Château Jean de Bel Air
## 580
## 581
## 582 Orange Oak Ridge Vineyard
## 583
## 584 Unfiltered Estate
## 585
## 586 StevensSteel
## 587 Classic
## 588 Classic
## 589
## 590
## 591
## 592 GV
## 593 Summit View Vineyard
## 594
## 595 La Decelle
## 596
## 597
## 598 Furth-Palt
## 599 Starlight
## 600
## 601 Le Marne
## 602 Viña Kristel
## 603
## 604
## 605 Reserva 1423
## 606 Gran Reserve Winemaker's Selection
## 607 Bomba
## 608 Steel-Ox
## 609 Verdelho and Sauvignon Blanc
## 610 Estate
## 611 Charlotte's Home Estate
## 612 Toyon Farm
## 613 Caverio
## 614 Paço de São Lourenço
## 615
## 616
## 617 Dutton Ranch
## 618 Millesimato Extra Dry
## 619 Unfiltered
## 620 Brut
## 621 Dry
## 622
## 623 Sidewinder
## 624 Black Mamba
## 625 Koos-Koos-Kia Colter's Creek Vineyard
## 626
## 627 Memorio Creari
## 628 Sivoy
## 629 Alluvial Fans
## 630 Pinpoint Extreme
## 631 Aliette
## 632 Vendanges Tardives
## 633 Wineck-Schlossberg Grand Cru
## 634
## 635 Tina's Block Maple Vineyard
## 636 Capellanía
## 637 The Factor
## 638 Altenberg de Bergheim Grand Cru
## 639 Kitterlé Grand Cru
## 640 Kessler Grand Cru
## 641 Tinaquaic Vineyard
## 642
## 643 Monte de Carrapatelo Colheita Seleccionada Tinto
## 644
## 645 Estate Grown
## 646 Freedom Hill Vineyard
## 647 Lagoalva Barrel Selection Tinto
## 648
## 649 Brauneberger Juffer-Sonnenuhr Spätlese Grosse Lage
## 650 Three Twins Vineyard Fallen Feather
## 651
## 652 Pfersigberg Grand Cru
## 653
## 654
## 655 Rosacker Grand Cru
## 656 Lodi Native Marian's Vineyard
## 657 Nancy's
## 658 Night Sky
## 659
## 660
## 661 Le Roi Soleil
## 662
## 663 Ornato
## 664 Rockpile Vineyard
## 665 Siri d'Jermu
## 666 Costa Bruna
## 667
## 668 Soplo
## 669 Virgin Berry
## 670 McClellan Estate Vineyard
## 671 Eco Made with Organic Grapes
## 672
## 673 Dry
## 674 Charles Vineyard
## 675 Estate
## 676
## 677 Dijon Clone
## 678 Smeriglio Riserva
## 679 Smeriglio
## 680 Sagemoor
## 681 Selección Crianza
## 682 ALX
## 683 Metodo Classico
## 684 Cignale
## 685 Canoe Ridge Vineyard
## 686 Emmaline Ann Vineyard
## 687 Acclivi
## 688 Gravel Ridge Vineyard
## 689 Reserve 34
## 690 Quattro Santa Barbara Highlands Vineyard
## 691 Nit'ana
## 692 Ghielmetti Vineyard Micro-lot Reserve
## 693 Capatosta
## 694
## 695 Reserve
## 696 Riserva Ducale Oro Gran Selezione
## 697 Pioneer Block 20 Dillons Point Cash Block
## 698 von Gösing
## 699 Little Bear Creek
## 700 Estate Wine
## 701
## 702 Les Clans
## 703
## 704
## 705
## 706
## 707 TwoB
## 708 L'Esprit de Provence
## 709 VieVité Extraordinaire
## 710 DCV2 Estate Four Clones Vineyard
## 711
## 712 Cohen Vineyard Dutton Ranch
## 713 Keefer Ranch
## 714 Dichotomy
## 715 Bannockburn
## 716 Trisagio Malbec-Petit Verdot-Tannat
## 717 Unravelled
## 718 No. 5
## 719 Bote Chardonnay-Fernão Pires-Vital
## 720 Grande Réserve du Président
## 721
## 722
## 723
## 724 Santola
## 725 Mont Sec Vineyards
## 726 Meriame
## 727 Casa de Paços
## 728
## 729 Reserva
## 730 Audaz Branco
## 731
## 732 Bin 068
## 733 Mont-Avril
## 734
## 735
## 736 Don David Reserve
## 737
## 738 Casa Ermelinda Freitas Monte de Baía
## 739 Henry Legarde
## 740 Riserva
## 741
## 742
## 743
## 744 Treborce Vineyard
## 745 Campo Quadro Riserva
## 746 Pato Frio
## 747 Classic
## 748
## 749 Fiori Delle Stelle Ice Wine
## 750 Baron de Hoen
## 751 Thornton Vineyard
## 752 347 Vineyards
## 753
## 754 Effort
## 755
## 756
## 757
## 758 Julia's Vineyard
## 759
## 760 Reserve, Vista del Monte Vineyard
## 761 Estate Grown
## 762 Antu
## 763 Solo
## 764 Ipsum
## 765 Cuvée Christine
## 766 The Griffin
## 767
## 768
## 769
## 770 Synthesi
## 771 Mumm de Cramant Blanc de Blancs
## 772 Ocean Reserve
## 773 Grande Réserve Blanc de Blancs Grand Cru Brut
## 774 Grande Reserva
## 775 Lorna Marie
## 776 West Block
## 777 Oenophile Premier Cru Blanc de Blancs Extra Brut
## 778 Cràtis
## 779 Winderlea Vineyard
## 780 Assemblage Brut
## 781
## 782 Giulio Ferrari Riserva del Fondatore
## 783 Cuvée M
## 784 Big River Ranch
## 785 VT '08
## 786
## 787 Aneto Tinto
## 788 Rutherford Estate Vineyard
## 789 Bramare Marchiori Vineyard
## 790 Apollo Dry
## 791 Signature
## 792 Chehalem Mountain Vineyard
## 793 La Sérénité des Grands Chênes
## 794 Tuttorosso
## 795
## 796 Divin de Corbin
## 797
## 798
## 799
## 800
## 801
## 802 Tawny Estate
## 803 Le Griottier
## 804 Upright Klipsun Vineyard
## 805 Lola Evergreen Vineyard
## 806
## 807 Small Lot
## 808 Farrago
## 809 Le Vele
## 810 Parcela 23
## 811
## 812 Castell
## 813 Perli Vineyards
## 814 Cuvee Juveniles
## 815
## 816 Soleil
## 817 Pre-Emption Vineyard
## 818 Block Selection Reserve Block N. 10
## 819 Belle Grâce
## 820
## 821 Made With Organic Grapes
## 822 Brut
## 823
## 824
## 825
## 826
## 827 Ciampoleto
## 828
## 829 K-libre
## 830
## 831
## 832 Roche Grès
## 833 Coeur de Vendanges
## 834
## 835 Reserva Estate Bottled
## 836 Flower Label
## 837 Cinta Púrpura Brut Reserva
## 838 Sweet Reserva
## 839 Les Collines Vineyard
## 840 Yellow Dog Vineyard
## 841
## 842
## 843
## 844 Proprietor's Reserve
## 845 Bianco
## 846 Aquilae Bio
## 847 Rosenberg
## 848 Galets Oligocène
## 849 Clos de Jeu
## 850
## 851 Grèves Premier Cru
## 852 Champ Salomon
## 853 Grand A du Petit Léon
## 854 Thanisch Kabinett
## 855
## 856 Reserve
## 857 Taburno
## 858
## 859
## 860
## 861 Erato De Portola Trail Vineyard
## 862 Rosso
## 863
## 864 Rio Vista Vineyard
## 865 Trocken
## 866 Laluci
## 867 Handpicked Grenache
## 868 Estate
## 869 Gran Reserva
## 870 Larner
## 871 Estate Bottled
## 872
## 873
## 874 Dry
## 875
## 876
## 877 Idus
## 878 Alfeo
## 879
## 880
## 881 Sonoma Estate
## 882 Coraje
## 883
## 884 Campo al Fico
## 885 Brut Rose
## 886
## 887 La Mère Grand
## 888 Reserva Branco
## 889 Slide Mountain Vineyard
## 890 Red Label
## 891 Estate
## 892
## 893 Stone Tree Vineyard Intuition Reserve
## 894 Heavy Metal
## 895 Castello di Montepò
## 896 Giuseppe Olivi Memento
## 897 Signature Selection
## 898 Dividend
## 899
## 900 Fonterutoli
## 901 Criança
## 902 Reserva Branco
## 903 Reserve Bingham Vineyard
## 904
## 905 Pajè
## 906 Super Nero
## 907 Reddy Vineyard
## 908 Bruto
## 909
## 910
## 911 Grand Vin
## 912 Samsó Seulle
## 913 Three Otters Pinot Noir
## 914 Asureti Valley
## 915 Grand Reserve
## 916 Atração
## 917 Renovação Estate Vineyards
## 918 Bussia
## 919 Ginestra
## 920 Reserve
## 921 Breathing Space
## 922 Conde Vimioso Colheita Seleccionada Branco
## 923 Altosur
## 924
## 925
## 926 Vin Doux Naturel
## 927 Roll Fermentor
## 928 Casal Garcia Rosé
## 929
## 930 Estate
## 931 Alberti 154
## 932
## 933 Tradition
## 934
## 935 Vieilles Vignes
## 936 Vieilles Vignes
## 937 Ian's Reserve
## 938 Stoller Vineyards
## 939 II Crianza
## 940 Melange d'Amis Reserve
## 941 Grande Réserve Premier Cru Brut
## 942 Goru Verde
## 943
## 944 Crianza
## 945 Estate
## 946 Director's
## 947 Reserve Winston Hill Vineyard
## 948 Evel Tinto
## 949 Santos da Casa Tinto
## 950
## 951
## 952 Rennie Vineyard Organic Grapes
## 953 XIC
## 954 i
## 955 Reserve Bottling
## 956 Nirvasco
## 957 Anni Venti Metodo Classico
## 958 Ritchie Vineyard
## 959 Wine Wings Garnacha
## 960 Brut Mosaïque
## 961
## 962
## 963 Demoiselle Tête de Cuvée Brut
## 964
## 965 Argillaia
## 966 Vecchie Vigne
## 967
## 968 Selected Terroir
## 969 Chiaretto
## 970 Pionero
## 971
## 972 Pop Rosé Extra Dry
## 973
## 974 Alexander School Reserve Big Barrel
## 975 Rough House Red
## 976 P
## 977 Summation Vintner's Reserve
## 978 Estate Grown
## 979 White X
## 980 Sauvignon
## 981 Capitel della Crosara
## 982 Premius Bordeaux Sauvignon
## 983 Col di Luna
## 984
## 985 Rosso di Valachia
## 986 Reserve Las Barrancas Vineyards
## 987 Late Bottled Vintage
## 988
## 989
## 990
## 991
## 992 Les Mirlandes
## 993 Grande Tradition
## 994
## 995 Les Belles Vignes
## 996 Edèlmio
## 997 Terre di Giumara
## 998 Patchwork
## 999
## 1000
## 1001
## 1002 Il Monovitigno
## 1003 First Class
## 1004 Vieilles Vignes
## 1005 Marjolaine
## 1006
## 1007
## 1008 Les Caillottes
## 1009
## 1010 Gran Reserva
## 1011 Black Family Estate
## 1012
## 1013 Pietralava
## 1014 Cembali
## 1015 Forty Two
## 1016 Profonde Winemaker's Reserve
## 1017 Gradiva Collectio
## 1018 Zahara
## 1019 Vieilles Vignes
## 1020 Elivette
## 1021
## 1022 Reserva
## 1023 Cubia Tenuta Ficuzza
## 1024 Alma Semillon-Viognier-Pinot Gris
## 1025 Pfleck
## 1026 Vogelzang
## 1027
## 1028 Estate
## 1029
## 1030
## 1031 Miljenko's Selection
## 1032 Crianza
## 1033
## 1034
## 1035 Clos de la Tourelle Château Ollwiller
## 1036 Aquilae
## 1037 Salisire Bianco
## 1038 Spofford Station
## 1039 Gimblett Gravels Reserve
## 1040
## 1041 Clásico
## 1042 The Patriarch Premium
## 1043 Crianza
## 1044 Vesper
## 1045 Rive Alte
## 1046
## 1047 Bianco degli Arzillari
## 1048
## 1049
## 1050
## 1051
## 1052 Señor da Folla Verde
## 1053
## 1054 Reserva
## 1055
## 1056 Sandgrube 13 Chremisa
## 1057 Veltlinsky
## 1058 El Delirio Reserve Syrah-Malbec
## 1059
## 1060 La Piazza
## 1061
## 1062 Rosé
## 1063
## 1064
## 1065 Evoè
## 1066 Quinta do Seixo Vintage
## 1067 Old Vine Reserve
## 1068
## 1069 Family Reserve MMXIV
## 1070 Bergström Vineyard
## 1071 Shea Vineyard
## 1072 Castelletto
## 1073 Símbolo
## 1074 Vintage
## 1075 Moorooroo
## 1076 Red Shoulder Ranch
## 1077 En Grands Champs
## 1078 Ascheri
## 1079 Old Stones
## 1080 Elusive Queen
## 1081 Ribbon Ridge Estate
## 1082 Wichmann Dundee Estate
## 1083 The Tribe Vineyard
## 1084
## 1085 La Coulée du Méridien
## 1086 Perspective Estate
## 1087 Coast Range Dry
## 1088 Terra De Promissio Vineyard
## 1089 Cailloux Vineyard
## 1090
## 1091 Quinta da Gricha Vintage
## 1092 Emmaline Ann Vineyard
## 1093 Old Vines
## 1094 Anthocyane
## 1095 Zéphirine
## 1096
## 1097 Millantu
## 1098 StevensSweets Late Harvest
## 1099
## 1100 Caverio
## 1101 Éclat Vigno Old Vine Blend
## 1102 Wahre Werte Beerenauslese
## 1103 Charles Heintz Vineyard
## 1104
## 1105 Les Piliers
## 1106
## 1107 Outcast
## 1108 California Series
## 1109 Le Cigare Volant
## 1110 Sant'Ercolano
## 1111 Antiguos Viñedos
## 1112 Reserva Brut Nature
## 1113 Les Cimels
## 1114 Horse Heaven Vineyard
## 1115
## 1116 Reserva
## 1117
## 1118 Reserve
## 1119
## 1120 Quadrille
## 1121 Brut
## 1122 Noces de Feu
## 1123 Zero Degree Dry
## 1124 Dessert Wine Estate Wilridge Vineyard
## 1125 Vintage Estate Dessert Wine Wilridge Vineyard
## 1126 Estate Grown
## 1127
## 1128
## 1129
## 1130 Reserva
## 1131 You be the judge!
## 1132
## 1133
## 1134
## 1135
## 1136 Reserva Casillero del Diablo
## 1137
## 1138
## 1139 Frà
## 1140 Las Viñas del Señor
## 1141 Proprietor's Special Reserve
## 1142 Medalla Real Gran Reserva
## 1143
## 1144 Sacrlet's Flirtation
## 1145
## 1146 La Tour du Gouverneur
## 1147
## 1148
## 1149 Caporosso
## 1150
## 1151 Reserva Casillero del Diablo
## 1152 Meleau White Specialty Wine
## 1153 Narcissa Red
## 1154 Steierische Klassik
## 1155 Old Vine
## 1156 White Fox
## 1157 Rohrendorfer Leithen Alte Reben
## 1158 L'Anima
## 1159
## 1160 Spätlese
## 1161 Ambelonas at Agios Pavlos
## 1162 Desiderio Jeio Brut
## 1163 Extra Dry
## 1164 Cuvée Oro Dry
## 1165 Servo Suo Dry Vendemmia Tardiva
## 1166
## 1167 Estate
## 1168 Special Cuvée Brut
## 1169 Cedarosa
## 1170 Millesimato Extra Brut
## 1171 Broquel
## 1172 Niersteiner Bergkirche Kabinett
## 1173 Durell Vineyard
## 1174 Nugent Vineyard
## 1175 Trumpeter
## 1176 Koenigsegg Velt. 1
## 1177 Col del Sas Extra Dry
## 1178 Lua Cheia em Vinhas Velhas
## 1179 Reserve Estate Grown
## 1180 La Burgondie Rosé Brut
## 1181
## 1182 Montersino
## 1183 Beacon Hill
## 1184 Margheria
## 1185 I Tre Pais
## 1186 Herdade dos Machados Reserva
## 1187
## 1188
## 1189
## 1190
## 1191
## 1192 Vers Cras
## 1193 Aramis Rouge Tannat-Syrah
## 1194
## 1195 Appellation Gualtallary
## 1196 Calcura
## 1197
## 1198 Serragrilli
## 1199 B Minor
## 1200 Beacon Hill
## 1201 Original
## 1202
## 1203
## 1204 California Series
## 1205 Cascas Winemaker Selection
## 1206 Rocche di Castelletto
## 1207 Apreciação Estate Vineyard
## 1208 Bussia Dardi Le Rose
## 1209 Reserva
## 1210 Estate Bottled Brut
## 1211 Reserve
## 1212 Vermejo Deux Chevaux Vineyard
## 1213 Dierberg
## 1214
## 1215 Dry Stack Vineyard
## 1216 Quinta dos Quatros Ventos
## 1217 Paradise City
## 1218 Piano Alto
## 1219 Villa Bucci Riserva
## 1220 Fauve Thompson Vineyard
## 1221
## 1222 Pommard Clone
## 1223
## 1224 Rainbow Cuvée
## 1225 Marquês de Borba Reserva
## 1226
## 1227 Rochioli Vineyard
## 1228 Points West
## 1229 Reserve
## 1230 Crooked Vines Colheita
## 1231 La Encantada
## 1232 Vasthoudend
## 1233
## 1234 Sexton Hill Vineyard Estate Grown Estate Bottled
## 1235
## 1236 Toro de Paso
## 1237 West Point
## 1238 Geografico
## 1239 Jacques Sans Souci
## 1240 Riserva
## 1241
## 1242
## 1243 Limestone Hill
## 1244 Buntsandstein Weisser Burgunder Kabinett Trocken
## 1245 Mountainside Vineyards Proprietary Red Wine
## 1246 Noble Late Harvest
## 1247
## 1248
## 1249 Goose Ridge Estate Vineyard Meritage Red Wine
## 1250 HVH Red Blend
## 1251 Riserva
## 1252 X-treme
## 1253
## 1254
## 1255 Summit Reserve
## 1256
## 1257
## 1258 Lot 93
## 1259 Vigna La Casa
## 1260
## 1261 Santagostino Baglio Sorìa
## 1262 I Versi
## 1263
## 1264
## 1265 Siebert Ranch
## 1266 Classic
## 1267 Arcturos
## 1268 The Franc
## 1269
## 1270
## 1271
## 1272 Earthquake
## 1273 Pithoi
## 1274
## 1275 Haermosa
## 1276
## 1277 Estate Grown
## 1278 Estate Grown
## 1279
## 1280 Praia
## 1281 Mesta
## 1282 Miros de Ribera Crianza
## 1283
## 1284 Terrale Oro
## 1285 L'Aurore
## 1286
## 1287
## 1288
## 1289 St. Magdalener Classico
## 1290 Niersteiner Auflangen Spätlese
## 1291 Sanct Valentin
## 1292
## 1293
## 1294
## 1295 Serras del Priorat
## 1296
## 1297 La Louvetrie Sur Lie
## 1298 Tradizionale Blanc de Morgex et de La Salle
## 1299 Estate Grown
## 1300 Cornell Villa Nigra
## 1301
## 1302
## 1303
## 1304 Hochheimer Hölle Kabinett Trocken
## 1305 Ockfener Bockstein Kabinett
## 1306 Cream
## 1307 Chateldon Reserva
## 1308 Holstein Vineyard
## 1309 Torre de Menagem Escolha
## 1310 Monte Rosso Vineyard
## 1311 Reflections of Still Waters
## 1312 Stuhlmuller Vineyards Reserve
## 1313 I Vigneti
## 1314
## 1315 Linticlarus Riserva
## 1316
## 1317
## 1318 Estate
## 1319 Winemaker's Reserve Estate
## 1320 Single Vineyard
## 1321
## 1322 Brut Natural Reserva
## 1323 Strassertaler
## 1324 Privat Gran Reserva Brut Nature
## 1325 Ampelos Vineyard
## 1326 Mayhem
## 1327 Blanco Fermentado en Barrica
## 1328 Bannockburn
## 1329 Scarlett
## 1330
## 1331
## 1332
## 1333
## 1334
## 1335 Little Lotus Flower
## 1336 Dry
## 1337 Throne
## 1338
## 1339 Oser
## 1340
## 1341 Paparazzi
## 1342 Terrassen Federspiel
## 1343
## 1344 Rendition
## 1345 della Timpa
## 1346
## 1347
## 1348 Le Pitre
## 1349
## 1350
## 1351 Preta
## 1352
## 1353
## 1354
## 1355
## 1356 Cutthroat Red
## 1357 Château Grand Martinet
## 1358 Santa Cruz de Artazu
## 1359 Tinto
## 1360 Goldie's Vineyard
## 1361
## 1362
## 1363 Côtes de Tablas Blanc
## 1364 Sangue Blu
## 1365
## 1366 Magali
## 1367 Reserve
## 1368
## 1369
## 1370 Mamàn
## 1371
## 1372
## 1373 Vigneto Vigne dai Vieris
## 1374 Reserve
## 1375
## 1376 Rosé du Mas
## 1377 Terra d'Oro
## 1378 Cister da Ribeira
## 1379 Cs
## 1380 La Stèle Rouge
## 1381 Rosado
## 1382 Tumbas Vineyard
## 1383 Vineyard Reserve
## 1384 Silvaspoons Vineyard
## 1385
## 1386 Essence
## 1387
## 1388
## 1389
## 1390
## 1391
## 1392
## 1393 Hicks Family Vineyard
## 1394 Rosé of
## 1395 Reserva
## 1396 Bacchus Collection Estate Vineyard
## 1397 Estate Grown
## 1398 Late Bottled Vintage
## 1399 Kaseler Dominikaner
## 1400
## 1401 Somontes Colheita
## 1402 Reserve
## 1403 Puiten
## 1404 Tannenberg
## 1405
## 1406 The Tower
## 1407 Old Head
## 1408
## 1409
## 1410
## 1411 Platinum
## 1412
## 1413 10 Anos Old Tawny
## 1414
## 1415
## 1416 Cuvée Théo
## 1417 Spiegel Grand Cru
## 1418 Somers Ranch
## 1419 XVI
## 1420 Ciel du Cheval Vineyard Reserve
## 1421
## 1422 Vendanges Tardives
## 1423 Reserve
## 1424 SOMA
## 1425
## 1426
## 1427 Steinert Grand Cru
## 1428 Zinnkoepflé Grand Cru Vendanges Tardives
## 1429 Collinetta Vineyard
## 1430 Columbia Rediviva Phinny Hill Vineyard
## 1431 Silver
## 1432 Stoneridge Vineyard
## 1433 Terre des Anges
## 1434
## 1435 Paul Sauer
## 1436 Bello Rosso
## 1437 Sagemoor Vineyard
## 1438
## 1439 Achleiten Smaragd
## 1440 Upright Klipsun Vineyard
## 1441 PreVail Back Forty
## 1442 'P'
## 1443 Pannobile
## 1444 Authenticity
## 1445 Limited Release
## 1446 Château Bouscassé
## 1447 La Maltroie Premier Cru
## 1448 Abandonado
## 1449 The Derivative
## 1450 Cuvée des Cadettes
## 1451 Aux Thorey Premier Cru
## 1452 Les Sentiers Premier Cru
## 1453 Fornace
## 1454 Clos des Ursules Premier Cru
## 1455 Campolongo di Torbe
## 1456 Ingenuity
## 1457 Cabernet Bosché
## 1458 Brauneberg Juffer Sonnenuhr Trocken GG
## 1459 Château de Haute-Serre Cuvée Géron Dadine de Haute-Serre
## 1460 Cliff Hanger
## 1461 Morei
## 1462 Estate Grown
## 1463
## 1464 Les Boudots Premier Cru
## 1465
## 1466 Ponte das Canas
## 1467 Fortis
## 1468 Bien Nacido Vineyard
## 1469
## 1470 Three Twins Vineyard
## 1471 Hollister Edna Ranch
## 1472 Riserva
## 1473 Sievers Reserve
## 1474 Reserva
## 1475 Riserva
## 1476 Pinot Grigio
## 1477
## 1478 Reserve
## 1479 Yellow Label
## 1480 Reserva
## 1481 Los Vascos
## 1482 Valley Oaks
## 1483 Altosur
## 1484 Fournier
## 1485 Arona
## 1486 Bancroft Ranch Vineyard
## 1487 Cuvée Barrique
## 1488 Reserve
## 1489
## 1490
## 1491
## 1492 Pinot Grigio
## 1493
## 1494 Coleccion
## 1495 Vintage Port
## 1496 Trompettes
## 1497 Organica
## 1498
## 1499
## 1500 Castillo de Molina Reserva
## 1501 Cometa
## 1502
## 1503 Baranoff Vineyard
## 1504
## 1505 Temperance Hill
## 1506 Steinmassel Erste Lage
## 1507 Madiran Laplace
## 1508 Réserve Caillou
## 1509 Clos de Rochegrès
## 1510 Gê
## 1511 Barrack Brand
## 1512
## 1513 Vignes de 1939
## 1514
## 1515 Inchinnan
## 1516 Vintage Selection
## 1517
## 1518
## 1519 Renaissance
## 1520 Terrunyo Vineyard Selection Block Las Terrazas Unfiltered
## 1521 La Quintessence
## 1522 Aluvion Gran Reserva Ensamblaje
## 1523 Don Antonio
## 1524 Reserve
## 1525 VSC
## 1526 The Premier
## 1527 Hierà
## 1528 Defesa Branco
## 1529 Pouca Roupa
## 1530
## 1531 3055
## 1532 Luzón
## 1533 Single Vineyard
## 1534
## 1535 Clos des Oratoriens
## 1536
## 1537
## 1538
## 1539
## 1540
## 1541
## 1542 Bigode
## 1543 Casa do Lago Branco
## 1544 Nec Plus Ultra Demisec
## 1545 The Wanted Zin Blush
## 1546 Tina 20
## 1547
## 1548 Cerejeiras Tinto
## 1549 120 Reserva Especial
## 1550
## 1551 Heaven Scent
## 1552 Casa Ermelinda Freitas Monte da Baía Branco
## 1553 Cuvée B
## 1554 Rosé di Lulu
## 1555
## 1556 Arca Nova Branco
## 1557
## 1558 Precious Mountain Vineyard
## 1559
## 1560
## 1561 Red Wine
## 1562 Guado al Tasso
## 1563
## 1564 Sassicaia
## 1565 Ornellaia
## 1566 No. 1
## 1567
## 1568 Allen Vineyard
## 1569
## 1570
## 1571 Argentiera
## 1572
## 1573
## 1574
## 1575 Reserve
## 1576
## 1577
## 1578 Rochioli Riverblock Vineyard
## 1579
## 1580 Flax Vineyard
## 1581
## 1582
## 1583
## 1584 Grand Ciel Vineyard
## 1585
## 1586
## 1587 Sawmill Creek Vineyards
## 1588 Reserve Selection
## 1589 Scurati
## 1590 Cru Bourgeois
## 1591
## 1592 Célèbre Crémant
## 1593
## 1594 Les Hauts de Larrivet Haut-Brion
## 1595
## 1596
## 1597
## 1598 Chapelle de Potensac
## 1599 Indian Wells
## 1600
## 1601 The Original
## 1602 Walraven Vineyard
## 1603 Aunt Diane's Vineyard
## 1604 Memorie
## 1605
## 1606 Reserve
## 1607 Semi Dry
## 1608
## 1609
## 1610 Cutaja Riserva
## 1611 Estate Vineyard
## 1612
## 1613
## 1614
## 1615
## 1616 La Châsse Sauvignon-Colombard
## 1617 La Châsse
## 1618 Samora
## 1619 Sustainably Farmed Estate Grown and Bottled
## 1620 Adega de Borba Branco
## 1621 Brado Branco
## 1622 Malbec
## 1623 Estate
## 1624
## 1625 La Petite Perrière
## 1626 A Midsummer Night's White
## 1627 Sensual
## 1628 Blanc de Blancs
## 1629 Le Charnay
## 1630 Flor de Maio Mayflower
## 1631 Brado
## 1632
## 1633 Le Val
## 1634 Dona Helena Reserva
## 1635 Sustainably Farmed Estate Grown and Bottled
## 1636
## 1637
## 1638
## 1639
## 1640 Topázio Reserva
## 1641 Tinta Miúda
## 1642
## 1643
## 1644 Lot 11
## 1645
## 1646 Bruberry
## 1647 Mil Piedras
## 1648
## 1649 Oak Cask
## 1650 Exmoor
## 1651 Pinta Negra
## 1652 006 Riverside Estate
## 1653 Cloud Rest Vineyard
## 1654 Mula Velha Reserva
## 1655 Terra Grande
## 1656 Lote 138
## 1657
## 1658
## 1659
## 1660 Sams Valley Vineyard
## 1661
## 1662
## 1663
## 1664 Pouca Roupa Branco
## 1665
## 1666 Esperanza Por Un Milagro
## 1667
## 1668
## 1669 Capostrano
## 1670
## 1671
## 1672 Sams Valley Vineyard
## 1673 Flagship
## 1674
## 1675
## 1676
## 1677 Libatio
## 1678 Julia's Vineyard
## 1679 Bien Nacido Vineyard
## 1680
## 1681
## 1682 Impetus Select
## 1683
## 1684
## 1685
## 1686 Colpetroso
## 1687
## 1688 Pieve dei Monaci
## 1689 Mimbre
## 1690 Sawyer Lindquist Vineyard
## 1691 Bien Nacido Cuvée
## 1692 Vieilles Vignes
## 1693
## 1694 Eiswein 375ml
## 1695
## 1696 Torcidas
## 1697 Quercegobbe
## 1698 Kosher
## 1699 Solista
## 1700 Poggio al Tufo Rompicollo
## 1701 Galeria
## 1702 Doña Beatriz
## 1703
## 1704
## 1705 Estate Bottled Reserve Kosher
## 1706 Patrimonio
## 1707 Lost Block
## 1708
## 1709
## 1710 Wine Obsession I Miti
## 1711 Vista Verde Vineyard
## 1712
## 1713
## 1714 Birba
## 1715 Reserva
## 1716 Kosher Reserve
## 1717
## 1718
## 1719 Viña Esmeralda
## 1720
## 1721
## 1722 Blanco Fermentado en Barrica
## 1723 Versatus
## 1724 Nine Gums Vineyard
## 1725 Barrel Select
## 1726
## 1727 Monte Real Gran Reserva
## 1728
## 1729 Steiner Creek Vineyard
## 1730 Split Rail Vineyard
## 1731 Uncovered
## 1732 Subduction
## 1733
## 1734
## 1735 Some Days Are Stones Stoney Vine Vineyard
## 1736
## 1737 Ugolforte
## 1738 Jack's Hill
## 1739 Riserva
## 1740
## 1741 Le Serre Nuove
## 1742 Atavus Vineyard Blanc de Noir
## 1743 Block 10
## 1744 Poggiotondo
## 1745
## 1746
## 1747
## 1748
## 1749
## 1750 De Mayo Block
## 1751 Château Les Vergnes
## 1752 Tarima
## 1753 Late Harvest
## 1754 Crianza
## 1755
## 1756 Brut Rose
## 1757 Bishop's Block
## 1758 Les Grenettes
## 1759
## 1760
## 1761 Mission St. Vincent
## 1762 Randolph O'Neill Vineyard
## 1763
## 1764
## 1765 Brut Rose
## 1766
## 1767 Dry
## 1768
## 1769
## 1770 Grand Reserve
## 1771
## 1772
## 1773 Juliette
## 1774
## 1775 Bellarina
## 1776
## 1777
## 1778 Premium
## 1779
## 1780
## 1781 Stone Tree SoRhô
## 1782
## 1783 Roureda Llicorella Gran Selecció Vitis 60
## 1784
## 1785
## 1786
## 1787 Ice Wine
## 1788 Soberanes Vineyard
## 1789 Aubaine Vineyard
## 1790 Durell Vineyard
## 1791
## 1792 Estate Reserve
## 1793
## 1794 Grazia
## 1795 Bouche d'Or
## 1796
## 1797
## 1798 Riserva
## 1799 Riserva
## 1800 Les Pagodes de Cos
## 1801 Cuvée Reine
## 1802 Terra de Lobos Tinto
## 1803
## 1804
## 1805 Les Vignes de Thulon
## 1806
## 1807 Essential
## 1808 White Label Sec
## 1809
## 1810 The Issue of Inexpensive Wines is When They Are Not Good Enough
## 1811
## 1812 Reserve
## 1813 Selection Branco
## 1814 Quinta de Cidrô
## 1815 Winemaker's Selection
## 1816 Oak Cask Estate Bottled
## 1817 Brut
## 1818
## 1819
## 1820 Les Griottes
## 1821 Les Pays de Pierres Dorées
## 1822 Alves Vieira Branco
## 1823 Piedra Negra Pinot Gris Alta Colección
## 1824
## 1825 Domaine du Paradis
## 1826
## 1827 Beau!
## 1828 Tradición Joven
## 1829 Alcanta Crianza
## 1830
## 1831 Blanc de Noir
## 1832
## 1833 Secret Agent
## 1834 Agostón
## 1835
## 1836 Crianza
## 1837 Dry
## 1838
## 1839
## 1840
## 1841 Bell Mountain Vineyard
## 1842 The Other
## 1843
## 1844
## 1845
## 1846
## 1847 Fermentado en Barrica
## 1848
## 1849 Edicion Limitada
## 1850 Fashauer Vineyard
## 1851 Estate Reserve Barrel Fermented
## 1852
## 1853
## 1854
## 1855 Paniza
## 1856
## 1857 Hendry Vineyard
## 1858
## 1859 Cotes du Rogue
## 1860 Giambattista Valli
## 1861
## 1862
## 1863
## 1864 Few and Far Between Vineyard
## 1865 Tinata
## 1866 Castello di Fonterutoli Siepi
## 1867
## 1868 The Brawler
## 1869 Palengat Red Wine
## 1870 Poggio ai Merli
## 1871 Picos de Couto Grande Escolha
## 1872
## 1873
## 1874 Métier
## 1875 L'Hospitalitas - La Clape
## 1876 Marchesale
## 1877 L'Orciaia
## 1878
## 1879 Etoile Rosé
## 1880
## 1881
## 1882 Red Wine
## 1883
## 1884 Hyde Vineyard
## 1885 Vinhas Velhas de Santa Maria
## 1886 Monteti
## 1887 Reserve
## 1888
## 1889 The Hellion
## 1890 Les Vénérables
## 1891 Follett Family Vineyards
## 1892 Devils Elbow Single Vineyard
## 1893
## 1894 Hawk Hill Vineyard
## 1895 Allyson Parsons
## 1896
## 1897 Reserve
## 1898
## 1899 Reserva Real
## 1900 Dos Fincas
## 1901
## 1902 Côte de Léchet Premier Cru
## 1903 Premium
## 1904
## 1905 Alessandra
## 1906
## 1907 Àn
## 1908 Gravisano Passito
## 1909
## 1910
## 1911 Wetzel Family Estate
## 1912
## 1913 Sekt
## 1914 Estate
## 1915 Les Fauves White Hawk Vineyard
## 1916 Tribute Edicion Limitada Syrah-Cabernet Sauvignon-Viognier
## 1917 Novas Gran Reserva Made with Organically Grown Grapes
## 1918 Max Reserva
## 1919
## 1920
## 1921
## 1922 E Cor Si Move Tempranillo 24K Vineyard
## 1923 Terrassen
## 1924 Piocho
## 1925 La Joya Gran Reserva
## 1926 Cannubi Boschis
## 1927
## 1928
## 1929 Tre Rovere
## 1930 Private Selection
## 1931 Finisterre
## 1932
## 1933 Vigna San Giacomo
## 1934
## 1935 Reiver
## 1936 Ona Special Reserve
## 1937 Napa Cuvée
## 1938 Tribute Edicion Limitada Cabernet Franc-Petit Verdot
## 1939 Gran Reserva
## 1940 Reserve
## 1941
## 1942 Terrassen Federspiel
## 1943
## 1944
## 1945 K-nom
## 1946 Coghlan Estate Vineyard Block 2 Diamond
## 1947 Hillside Estate
## 1948 Cow Catcher
## 1949 Clone 113
## 1950 Guardián Reserva
## 1951
## 1952
## 1953 Le Pich
## 1954 Les Collines Vineyard
## 1955 First Edition
## 1956 Yogev
## 1957 Unbridled
## 1958 L'Enfer des Balloquets
## 1959
## 1960 Nevaeh
## 1961 Chimera
## 1962 Kyanos
## 1963
## 1964 Leopoldina
## 1965 Domaine de la Source
## 1966 Viña Punto Alto
## 1967 Natasha
## 1968 Regale
## 1969
## 1970
## 1971
## 1972 Cuvée des Contis
## 1973 Barbazzale
## 1974
## 1975 Prince Hill Pommard
## 1976 Sud
## 1977 Château de Mercuès Le Vassal de Mercuès
## 1978 Elo Veni
## 1979
## 1980 Intrinity
## 1981
## 1982 Plumbago
## 1983 Richland Reserve
## 1984 Schietto
## 1985 Knittel Vineyard
## 1986 Rhône de Robles
## 1987 Domaine de l'Oseraie
## 1988 Flirty Bird
## 1989
## 1990
## 1991 Roi Clovis
## 1992
## 1993
## 1994 Trumpeter
## 1995 Church Creek Oak
## 1996
## 1997 Guadalupe Vineyard
## 1998
## 1999 Réserve Particulière
## 2000 Anne de K
## 2001 Baglio del Sole
## 2002 Oak Aged
## 2003 Oak Cask Estate Bottled
## 2004 Tradition
## 2005
## 2006 Basta Brut Rosé
## 2007 Azul Portugal
## 2008
## 2009 HomeFront
## 2010
## 2011 Bonheur Convivial
## 2012
## 2013 Sustainably Farmed
## 2014
## 2015 El Gordo del Circo
## 2016 Prestige
## 2017 Cuvée Particulière
## 2018 3 Castas
## 2019 Super Alamedan
## 2020
## 2021
## 2022
## 2023 San Vigilio
## 2024
## 2025 Elton
## 2026 Anke Blend 2 Carménère-Petit Verdot-Shiraz
## 2027
## 2028 Gran Reserva Petit Verdot-Carmère-Cabernet Sauvignon
## 2029
## 2030 Montunal
## 2031 Memento
## 2032 Premium Limited Edition
## 2033 Porrais
## 2034
## 2035 Reserve
## 2036 Aurelio's Selection
## 2037 Castello
## 2038 Vom Stein
## 2039
## 2040 Sistaglia
## 2041 Carte d'Or Brut 1.5 liters
## 2042 Millésime Exception Brut
## 2043
## 2044 Gramolere
## 2045 Bricco delle Viole
## 2046 Luigi Baudana Cerretta
## 2047 Pichemej
## 2048 Camilla
## 2049 Tatschler
## 2050 Beerenauslese 375ml
## 2051 Eiswein 375ml
## 2052 Eiswein 375ml
## 2053
## 2054 Estate
## 2055 Costa di Bussia
## 2056
## 2057
## 2058 Bricco Rocca
## 2059 Cannubi San Lorenzo
## 2060 Bricco Boschis Riserva Vigna San Giuseppe
## 2061 Cannubi
## 2062 Le Coste
## 2063
## 2064 Réserve Blanc de Blancs Brut
## 2065 Dutton Ranch-Freestone Hill Vineyard
## 2066 Dutton Ranch-Green Valley Vineyard
## 2067 River of Skulls Dalton Vineyard
## 2068 Beckstoffer Missouri Hopper Vineyard
## 2069
## 2070
## 2071 La Encantada Vineyard
## 2072
## 2073
## 2074 Reserve
## 2075 Lamorèmio
## 2076 Il Monovitigno
## 2077
## 2078 Opulence
## 2079 Terrunyo El Triángulo Vineyard Block: 28
## 2080 Rosé Brut
## 2081
## 2082 Stony Point Vineyards
## 2083
## 2084 Cuartel 2 Marchiori Vineyard
## 2085 Edición Limitada
## 2086 El Portal
## 2087 Turner Vineyard
## 2088
## 2089 Wine Creek Ranch
## 2090 Brut Grand Cru
## 2091 Beet Red
## 2092 Marquês de Borba
## 2093
## 2094
## 2095 Solar de Serrade
## 2096
## 2097 Sot Lis Rivis
## 2098 Cougar Hill
## 2099 Vineis
## 2100 Encell Vineyard
## 2101 Sierra Madre Vineyard
## 2102 Reserve
## 2103 Incrocio Manzoni 6.0.13
## 2104 Amplius
## 2105 Aragonez
## 2106 Legado Reserva
## 2107 Villa Canlungo
## 2108
## 2109 Chardonnay
## 2110 Red Wine
## 2111 Pinot Bianco
## 2112 Clos Victoire
## 2113 Tibur
## 2114
## 2115
## 2116 Evangelo
## 2117
## 2118 Lawrence Vineyards Dry
## 2119 Quarry Butte Destiny Ridge Vineyards Estate Grown
## 2120
## 2121 Bordo
## 2122
## 2123
## 2124 La Rose Saint-Vincent
## 2125
## 2126 Isoceles Reserve
## 2127
## 2128 Reserve
## 2129 Reserve
## 2130 Monfrini
## 2131 Côtes de Morogues
## 2132 Ryo-Fu
## 2133 Château la Fleur Poitou
## 2134 Costalunga
## 2135
## 2136 Reserva Cuvée Barcelona 1872
## 2137
## 2138 Family Crest
## 2139 Canchales Vino Joven
## 2140
## 2141
## 2142 Oak Cask
## 2143 Carpe Diem
## 2144 Collection
## 2145 Goose Ridge Vineyard
## 2146 Selección Tempranillo
## 2147
## 2148 Podere
## 2149 Vasari
## 2150 Premium
## 2151
## 2152 Made With Organic Grapes
## 2153 Lot 6
## 2154 SPÑ
## 2155 Estate Wine Organic
## 2156 Ampakama
## 2157 Falcon Series Estate
## 2158 Collection
## 2159 Pinta Negra Tinto
## 2160
## 2161 Le Paranze
## 2162
## 2163 Covello
## 2164 Premier Cuvée
## 2165 Humphrey's Vineyard
## 2166 Semi Dry
## 2167
## 2168 Pauline's Vineyard Grenache
## 2169
## 2170
## 2171 Ried am Zaum Hefeabzug
## 2172 Cannubi
## 2173 Reserve
## 2174 Rocche di Castiglione
## 2175 Vin de Glace
## 2176 Flor de Muga
## 2177
## 2178 Frere Vineyard
## 2179 Ried Kittel
## 2180 Glaç Brut Nature
## 2181
## 2182 Reserva
## 2183 Ryker Red; Pilot Ridge Vineyard; Estate Grown
## 2184 M
## 2185
## 2186 Vóila Vineyard
## 2187
## 2188
## 2189 Dry
## 2190 True Grit Reserve
## 2191 Y Block
## 2192 Reserve
## 2193 Estate
## 2194 McKinley Springs Vineyard
## 2195 Los Lingues Vineyard
## 2196 Allan Nelson Vineyard
## 2197 Heringer Vineyard
## 2198 Curtis Vineyard
## 2199
## 2200 Tradition
## 2201
## 2202 Henry Ayrton's Block Rapley Trail Vineyard
## 2203
## 2204 Hot to Trot
## 2205
## 2206
## 2207 Oveja Negra
## 2208 Cuvée Romanus
## 2209
## 2210
## 2211 Reserve
## 2212 Mitzi
## 2213
## 2214 Le Colombare
## 2215 Les Champs Claude
## 2216 Estate Reserve
## 2217
## 2218 Collection
## 2219 Sucesor
## 2220 Espino
## 2221
## 2222
## 2223 Grand Estates
## 2224
## 2225 Riserva
## 2226 Riserva
## 2227
## 2228 Petite Chapelle Premier Cru
## 2229
## 2230
## 2231
## 2232 Rancho Ontiveros Vineyards
## 2233 Riserva
## 2234 Madre
## 2235 Riserva
## 2236 Four Boys Vineyard
## 2237
## 2238 Riserva
## 2239 Kessler-Haak Vineyard
## 2240 Vigna Spuntali Val di Suga
## 2241
## 2242 Cerise Vineyard
## 2243 Diopside
## 2244 Riserva
## 2245 Les Combettes Premier Cru
## 2246 Les Pucelles Premier Cru
## 2247 Dutton Palms Vineyard Dutton Ranch
## 2248
## 2249
## 2250 Il Mio Brunello Riserva
## 2251 Primo's Hill
## 2252 Series
## 2253 Reserve
## 2254
## 2255 Felino
## 2256
## 2257
## 2258 Pro Nobis
## 2259 Barrel sample
## 2260 Barrel sample
## 2261
## 2262 Barrel sample
## 2263 Canua
## 2264
## 2265 Barrel sample
## 2266 Senftenberger Freiheit
## 2267 Amber Knolls Vineyard
## 2268 Rowe Vineyard Old Vines
## 2269 Stromsoe Vineyard
## 2270
## 2271
## 2272 Lot 119
## 2273
## 2274 Azul Portugal Escolha
## 2275
## 2276
## 2277
## 2278 Estate
## 2279 The Count Founder's
## 2280 Signature
## 2281
## 2282
## 2283
## 2284
## 2285
## 2286 Crianza
## 2287 Black Dog Series
## 2288
## 2289
## 2290 J.D. Hurley
## 2291 Lot 362
## 2292 Estate Bottled
## 2293 Fosilni Breg
## 2294
## 2295 Freinsheimer Musikantenbuckel Kabinett
## 2296 Pian delle Vigne
## 2297 Fonterutoli
## 2298 Parsons' Vineyard
## 2299 Solstice
## 2300 Beerenauslese
## 2301 Forster Musenhang Spätlese Trocken
## 2302 Reserve
## 2303 Mill Race
## 2304 Conner Lee Vineyard
## 2305 Lot 113
## 2306
## 2307
## 2308
## 2309 Crane Ranch Vineyard
## 2310 Tinto Figuero 15 Reserva
## 2311 Forster Jesuitengarten Grosses Gewachs Trocken
## 2312 Forster Elster Kabinett Trocken
## 2313
## 2314 San Leonino Riserva
## 2315
## 2316
## 2317 Chicken Ranch Vineyard
## 2318 Vigna Misciano Riserva
## 2319
## 2320 La Camélias
## 2321
## 2322
## 2323
## 2324
## 2325 Saint-Pierre Rosé Brut
## 2326 Authentic
## 2327
## 2328
## 2329 Vineyard Selection
## 2330
## 2331 Dry
## 2332 Grand Reserve
## 2333 Les Pouches
## 2334
## 2335 Alphabet Wines
## 2336
## 2337 Reserva Privada
## 2338
## 2339 La Finca Clos D'Angel
## 2340
## 2341
## 2342 Reserva Encinos
## 2343 Freelings Creek Reserve Sparkling
## 2344
## 2345
## 2346 Blue Quail
## 2347
## 2348
## 2349 The Expedition
## 2350 Vintner's Reserve
## 2351 Corpus
## 2352 Famiglia Bianchi
## 2353 Reserve
## 2354 Annabella Special Selection
## 2355 Forty-Seven Friends
## 2356 Exuberance
## 2357 Crianza
## 2358 Ancient Vine
## 2359 Rancho Arroyo Perdido
## 2360 Château de Chamirey
## 2361 Château de Chamirey
## 2362 Domaine de la Ferté Premier Cru Servoisine
## 2363 Grotta del Ninfeo
## 2364 No. 77
## 2365 Château Tournelles
## 2366
## 2367 Stillwater Creek Vineyard
## 2368 The Main Event
## 2369 Domaine de la Croix Rouge
## 2370
## 2371 Late Harvest
## 2372 Tradition
## 2373
## 2374 Le Morete
## 2375 Blanc des Rosis
## 2376 Cavalie Reserve
## 2377
## 2378 Unoaked
## 2379
## 2380
## 2381 Blanc de Noir Brut
## 2382 Avesso & Azal
## 2383 Fortissimo
## 2384 Vertice Grande Reserva
## 2385 D. Fuas Reserva
## 2386 Ten Zin
## 2387
## 2388 Finca Lalande
## 2389
## 2390 Benoît Girard
## 2391 Les Parcelles Sur Lie
## 2392 Ardósia Tinto
## 2393 Porrais
## 2394 Vintage
## 2395
## 2396 Selection
## 2397 Beyra Colheita
## 2398 Castello d'Alba Branco
## 2399 Vale da Poupa
## 2400 Leverage
## 2401
## 2402 Campo Reale
## 2403 Estate
## 2404 Le Val
## 2405
## 2406
## 2407 Sauvage
## 2408 Tramier
## 2409
## 2410 Sallier de la Tour
## 2411 Reserve
## 2412 Torre del Falco
## 2413 Dolia
## 2414 La Fleur d'Amélie
## 2415 Rosso
## 2416 Fifteen 10 White
## 2417
## 2418
## 2419
## 2420
## 2421
## 2422 Rosé d'Une Nuit
## 2423
## 2424 Stoller Vineyards
## 2425 Visión El Recurso Single Vineyard
## 2426 Bianco
## 2427 Glicine
## 2428 Les Griottes
## 2429
## 2430 Dion
## 2431 Dion Vineyard Rosé
## 2432 Nouveau
## 2433 Pigmentum
## 2434 Coastal Cool Climate
## 2435 Ametys
## 2436
## 2437 Vinecroft Vineyard
## 2438 Erdpress
## 2439
## 2440 Clonal Series Swan
## 2441 Flume Crossing
## 2442 Double Lariat
## 2443
## 2444 Private Reserve
## 2445 Rosé Metodo Classico
## 2446
## 2447 Sonoma Heritage Vines
## 2448
## 2449 Amarasco
## 2450 Circle
## 2451 Greppone Mazzi
## 2452 Left Tusque
## 2453 Caverio
## 2454 The Geologist
## 2455 Copeland Vineyard
## 2456 The Reserve
## 2457 Signature
## 2458 Goedeck-Liu Vineyard
## 2459 Markus Nimmo
## 2460
## 2461 Botrytised
## 2462 Le Haut-Médoc de Giscours
## 2463
## 2464
## 2465
## 2466
## 2467
## 2468
## 2469 Riserva
## 2470 Premium Fino
## 2471 Gran Reserva
## 2472
## 2473 Eclipse
## 2474
## 2475 Bailey Ranch Dry Farmed
## 2476 Reserve
## 2477
## 2478
## 2479 Cuvee Cassidy
## 2480 Lavan
## 2481 Mojo Estate
## 2482
## 2483
## 2484 Bombshell Red Vineyard Salute
## 2485 Harvest Select
## 2486 Limited Release Gold
## 2487 Domaine Ceptura
## 2488 Los Vascos
## 2489 Bon Mot
## 2490 Unoaked
## 2491 Réserve
## 2492 Vieilles Vignes
## 2493
## 2494 Gran Reserva
## 2495 Gran Reserva
## 2496 Frog Prince
## 2497 Monte Stelle
## 2498 Tal Lùc
## 2499
## 2500 Semi Dry
## 2501 Terroir
## 2502
## 2503
## 2504
## 2505 Envero Gran Reserve
## 2506 Faction
## 2507 Nefarious
## 2508 Ellen Lane Estate
## 2509 Viña El Pison
## 2510 Rocche dell'Annunziata
## 2511 Villero
## 2512 Cerretta
## 2513 Boito Riserva
## 2514 Estates Reserve
## 2515 Bergera Pezzole
## 2516 Don Miguel Vineyard Bonita's Hill Unfiltered
## 2517 Rocche di Castiglione
## 2518 RunRig
## 2519 Tre Ciabot
## 2520 Cannubi
## 2521 Bricco Gattera
## 2522 Castellero
## 2523
## 2524 Carobric
## 2525
## 2526 del Comune di Serralunga d'Alba
## 2527 Rieder
## 2528
## 2529 Klassik
## 2530
## 2531 Proprietary
## 2532 Crianza
## 2533 Bendigo Single Vineyard
## 2534
## 2535 Crianza
## 2536 Trie Rot
## 2537
## 2538 Turmhof
## 2539 Kosmos Organic Grapes
## 2540 Crossed Paths Dusty
## 2541 Cacinello
## 2542 d'Ogier
## 2543
## 2544 Les Muraires Douce Vie
## 2545
## 2546 Sawmill Creek Vineyards Dry
## 2547
## 2548 Austrian Plum
## 2549
## 2550 Crianza
## 2551 St. Eva Hill Vineyard
## 2552 Reserva
## 2553 Fresh Crisp Clean
## 2554 The River
## 2555 La Perla Vineyard
## 2556
## 2557 Sebastiano Vineyard
## 2558 Estate
## 2559 Estate
## 2560 You be the judge!
## 2561
## 2562 Aporia
## 2563
## 2564 Reserve
## 2565 Paragon Vineyard
## 2566 Rohstoff
## 2567 Reserve
## 2568
## 2569 Estate Grown
## 2570 Flying Colors Super Tuscan-Style
## 2571 Assoluto
## 2572 Reserve M-S-G-V
## 2573
## 2574 Teodosio
## 2575
## 2576 Honor Roll Estate Reserve
## 2577 Big Eddie
## 2578 Elerding 6 Prong
## 2579 Fred Estate
## 2580 Boushey Vineyard
## 2581 Boushey Vineyard
## 2582
## 2583 One Upland Vineyard
## 2584
## 2585
## 2586 Cuvée Aliénor
## 2587 Loibner Klostersatz Federspiel
## 2588 Poison Hill Vineyard
## 2589 Steinbügel
## 2590 Gimmeldinger Biengarten Trocken
## 2591 Gamache Vineyard
## 2592 Bussia
## 2593 Castellero
## 2594
## 2595 The Ripper
## 2596 Zöbing
## 2597
## 2598 Bernkasteler Badstube Spätlese
## 2599 Omrah
## 2600 Trocken
## 2601 Finisterre
## 2602 Unoaked
## 2603
## 2604 Axel Primero
## 2605 Los Olivos
## 2606 Bell Mountain Vineyard
## 2607 Edición Limitada
## 2608 Raices Nobles
## 2609
## 2610 Bacchus Vineyard
## 2611
## 2612 Book Ends
## 2613 2 Spires
## 2614 Kabinett
## 2615
## 2616 Coleccion
## 2617 Fusion
## 2618
## 2619
## 2620 Gironia Biferno Rosato
## 2621 Dry
## 2622
## 2623
## 2624 Coastal Series
## 2625 Reserve
## 2626
## 2627 Stone
## 2628
## 2629
## 2630 Maverick
## 2631 Old Vine Cuvée
## 2632 Usual Suspects
## 2633 Desiderio
## 2634
## 2635 Ruit Hora
## 2636
## 2637
## 2638
## 2639
## 2640 Brown Barn Vineyard
## 2641 Premium Brut Rosé
## 2642 Kuyen
## 2643 Reserve
## 2644 Olivi Cantine
## 2645 Vista Del Monte Vineyard
## 2646
## 2647 Guado al Tasso il Bruciato
## 2648 25th Anniversary
## 2649
## 2650 The Tusk Elephant Mountain Vineyard
## 2651 Ex Umbris
## 2652 Branco
## 2653 Templários Colheita Seleccionada
## 2654 Quinta do Grifo Grande Reserva
## 2655 Moreccio
## 2656
## 2657
## 2658
## 2659
## 2660 Massi di Mandorlaia Riserva
## 2661 Tageto
## 2662
## 2663 Old Vine
## 2664 Conner Lee Vineyard Conflict
## 2665 Cold Creek Vineyard
## 2666 Beerenauslese
## 2667 Semonte Alto
## 2668 Vintage Brut
## 2669
## 2670 Serge & Nicolas
## 2671
## 2672 Domaine des Pontheux
## 2673
## 2674 Gran Las Divas Vineyard
## 2675
## 2676 Foreshadow
## 2677 La Cruz Vineyard
## 2678
## 2679 Seven Hills Vineyard Estate Luminesce
## 2680 Donibane
## 2681 Clone 76 Inox Estate
## 2682 Signal Ridge Vineyard
## 2683
## 2684 Viña Muriel Gran Reserva
## 2685 Sergio Zenato Riserva
## 2686 Ruster Ausbruch
## 2687 Canoe Ridge Estate
## 2688 Montée de Tonnerre Premier Cru
## 2689
## 2690 Royal Cuvée
## 2691
## 2692
## 2693 Private Reserve
## 2694 Estate Reserve
## 2695 Reserva
## 2696
## 2697
## 2698
## 2699 Legado de Armida Reserva
## 2700 Cherryblock
## 2701 Seta
## 2702 Julia's Vineyard
## 2703
## 2704 Estate Bottled Reserve
## 2705 Big Tattoo Red
## 2706
## 2707 Dijon Clones Selection
## 2708
## 2709
## 2710 Rose de Pinot Noir
## 2711
## 2712 Sleepy Hollow Vineyard
## 2713
## 2714 Edicion Limitada - 66 Barricas
## 2715
## 2716 Teraje
## 2717 Colbaraca Classico
## 2718 Vigneto Ai Palazzi
## 2719 Alpha
## 2720 Xplorador
## 2721 Cuvée René Dopff
## 2722
## 2723
## 2724 Château Terres Douces
## 2725
## 2726 Urra di Mare
## 2727 Neroametà
## 2728 Old Vine
## 2729
## 2730
## 2731 Campore
## 2732 Jam's Blend
## 2733 Gran Reserva Sibaris
## 2734 Frediani Vineyard
## 2735 Vitral
## 2736
## 2737 Menguante
## 2738 Reserva Casillero del Diablo
## 2739 Reserva
## 2740
## 2741
## 2742 Tectonia
## 2743
## 2744
## 2745 Le Canon de Côte Montpezat
## 2746
## 2747 Oltre
## 2748 Legendary Estate Series
## 2749 Legendary Estate Series
## 2750 Dreambird
## 2751
## 2752 Cabane aux Oiseaux
## 2753
## 2754
## 2755
## 2756
## 2757 Unfiltered
## 2758
## 2759
## 2760 Cuvée KPF
## 2761 Classic Series
## 2762
## 2763
## 2764 Un-Oaked
## 2765 Hundred Point, Estate Bottled
## 2766 Judy's Vineyard
## 2767
## 2768 Vendimia Seleccionada
## 2769
## 2770
## 2771 Serena's Private Reserve
## 2772 Reserve
## 2773 The 7th Generation Reserva
## 2774 Estate Bottled
## 2775 Gran Reserva
## 2776
## 2777
## 2778 Reserva
## 2779
## 2780 Reserve
## 2781 Morgado da Canita
## 2782
## 2783 Espadeiro
## 2784
## 2785
## 2786 Ruckus
## 2787 Old Head
## 2788 Boa Memória Branco
## 2789 Casal Garcia Tinto
## 2790 Bistro
## 2791 Sweet
## 2792
## 2793 Vista
## 2794 Matriarch
## 2795
## 2796 Elsa
## 2797 Seigneurie de Peyrat Tradition
## 2798 Hein Family Vineyard
## 2799 Old Vine
## 2800 Trevo
## 2801 4 Grape Blend
## 2802
## 2803 Bourricot
## 2804
## 2805
## 2806 Bubble Pinot Noir Rosé
## 2807 Tinto Ribón Crianza
## 2808 Wallula Vineyard
## 2809 Signature Series
## 2810 Quercetonda
## 2811
## 2812 Verhey Vineyard
## 2813 Estate Grown and Produced
## 2814
## 2815 La Vie en Rouge
## 2816
## 2817 Belle en
## 2818
## 2819
## 2820 Unfiltered
## 2821 Al Canapo
## 2822 Vendimia Seleccionada
## 2823 Casalino
## 2824
## 2825 Murets de Mez
## 2826
## 2827
## 2828 Château Ouvrard
## 2829
## 2830
## 2831
## 2832
## 2833
## 2834 Pratale
## 2835
## 2836 Insoglio del Cinghiale
## 2837
## 2838
## 2839
## 2840
## 2841 Le Cicale
## 2842 Domaine du Paradis
## 2843 Domaine Mont Chavy
## 2844 Flower Label
## 2845 Flower Label
## 2846
## 2847 Vignarè
## 2848
## 2849 Barrel Select
## 2850 Sister Moon
## 2851 Arme Lot Number 3
## 2852 Reserve
## 2853
## 2854
## 2855 Elegido Gran Reserva
## 2856 Saporaia
## 2857 Estate
## 2858 Reserve Northridge Vineyard
## 2859 1865 Single Vineyard
## 2860 I Renai
## 2861
## 2862 Special Harvest
## 2863 Valdisanti
## 2864 Reserve
## 2865 Reserva
## 2866 Stoller Vineyard
## 2867 Falcoaria
## 2868 Harmonie des Cepages
## 2869 Fiddlestix Vineyard
## 2870 Lock Vineyard
## 2871 Riserva Castel Ringberg
## 2872 Cuvée Silex
## 2873 Contrada Salvarenza Vecchie Vigne
## 2874
## 2875 Van der Kamp Vineyard
## 2876
## 2877 Vieilles Vignes
## 2878 Brut Satèn
## 2879 Shea Vineyard
## 2880 Benchmark
## 2881 Rosewynn Vineyard
## 2882
## 2883 Paradiso
## 2884
## 2885 Pence Ranch
## 2886 Euphoric La Vista Vineyard
## 2887
## 2888 Redwood's Edge
## 2889
## 2890 Les Melleresses
## 2891 Château Chevaliers Lagrézette
## 2892 Prieuré de Cénac
## 2893 Zero
## 2894 Notre Dame de Champs
## 2895 El Pájaro Rojo
## 2896 Vieilles Vignes
## 2897
## 2898 Buissonnier
## 2899
## 2900 Lua Cheia em Vinhas Velhas Album
## 2901 Amber's Cuvee
## 2902 Arnegui Reserva
## 2903 Covela
## 2904 Extra Brut
## 2905 Signature Brut
## 2906 Brut Rosé
## 2907 Maple Ranch Estate
## 2908 El Chaparral Old Vines
## 2909 Brut Satèn
## 2910 Les Villages de Jaffelin
## 2911 Clos des Rois Premier Cru
## 2912 Crianza
## 2913 Herrenberg Alte Reben Trocken
## 2914 Vendimia
## 2915 Brut
## 2916 Siebert Ranch
## 2917 Englora
## 2918 Appellation Series
## 2919 Olho de Mocho
## 2920 Podere Cariano
## 2921 Poças Pink
## 2922 QM Blue
## 2923
## 2924 Lily Hill Estate
## 2925
## 2926 La Flor
## 2927 Sauvignon de Saint-Bris
## 2928 Clarissa Vin Rouge
## 2929 Heart Arrow Ranch
## 2930
## 2931 Pionero
## 2932 Artist Series 1
## 2933
## 2934 Cuvee 32
## 2935 Finca la Linda
## 2936 Urban Uco
## 2937 Nevada Ridge First Crush
## 2938
## 2939 Tete-a-Tete
## 2940 Il Volpe
## 2941 Founder's Field Reserve
## 2942
## 2943 Los Cardos
## 2944 Cooper Ranch
## 2945
## 2946 Mason Vineyard
## 2947
## 2948 Altosur
## 2949 Estate
## 2950
## 2951 Nicholas Estate
## 2952 Premier Cuvée
## 2953
## 2954
## 2955 Los Cardos
## 2956 Reserve
## 2957 Prelude Vineyards
## 2958 Riverside Crossing
## 2959
## 2960
## 2961 Crianza
## 2962
## 2963 Montesol
## 2964 Sinestesìa
## 2965 Maipu Vineyards
## 2966
## 2967 Baccante
## 2968 Renegade Ridge Estate
## 2969 Cobble Creek
## 2970 Grand Reserve
## 2971
## 2972
## 2973 Morpheus
## 2974 Josie's Knoll
## 2975
## 2976
## 2977
## 2978
## 2979
## 2980 Grande Réserve
## 2981 Blanc de Noirs Brut
## 2982 Special Select
## 2983 Hyland
## 2984 Orsi Vineyard
## 2985 The Spur
## 2986 Half Mile 2640'
## 2987 Summit Creek
## 2988 Grosso Metodo Classico
## 2989 RK
## 2990 Pinot Noir
## 2991 Founding Farmers
## 2992 Umino Vineyard
## 2993 Trockenbeerenauslese
## 2994 Pillar Box
## 2995 Pahlmeyer
## 2996
## 2997
## 2998 R.012 Brut
## 2999 Secolo Novo Giovanni Biatta Metodo Classico
## 3000 Brut
## 3001 Dry Mineral
## 3002 Rosé Brut Metodo Classico
## 3003 Vieilles Velles
## 3004 Etiqueta Ámbar
## 3005
## 3006 Stagecoach Vineyard Synchrony
## 3007 Proprietary Red
## 3008
## 3009
## 3010 Reserve
## 3011 Ambré
## 3012 Riserva
## 3013
## 3014 Les Collines Vineyard
## 3015 Schlossberg Grand Cru
## 3016 Il Querciolaia
## 3017 Millésime Brut
## 3018 Andau
## 3019 Uriah Estate Grown Red Wine
## 3020 Furstentum Grand Cru
## 3021 Gap's Crown
## 3022 Reserva
## 3023 Rx-3 Red Wine
## 3024 Chaleur Estate Blanc
## 3025 Aix
## 3026 Rabenstein
## 3027
## 3028 VS
## 3029 Library Vineyard
## 3030 Pesenti Vineyard
## 3031 Reserve
## 3032 Quinta da Murta
## 3033 Estate Grown/Viñedo Propio
## 3034
## 3035 Rudhir
## 3036 Falcon Series Estate
## 3037 Falcon Series
## 3038 Spelt Riserva
## 3039 Très Bagos Reserva
## 3040 Penedo do Lexim
## 3041 Rosado
## 3042 Traditions Evergreen Vineyard
## 3043
## 3044
## 3045 En Rémont Vignes de 1939
## 3046 Altísimo
## 3047 L'Enfer des Balloquets
## 3048
## 3049 Stefano Vineyard
## 3050
## 3051 Quadrio
## 3052 Dürkheimer Trocken
## 3053 Top Rail
## 3054
## 3055 Taken
## 3056
## 3057 Broquel
## 3058 Felino
## 3059 Les Michelons
## 3060 Atavus Vineyard
## 3061 Nuthouse
## 3062 Hillside Reserve
## 3063 San Andreas
## 3064
## 3065 Chaleur Estate Blanc
## 3066 Serra della Contessa
## 3067 Soleil
## 3068 Kobler Family Vineyard
## 3069
## 3070
## 3071 Ascent
## 3072 Clavoillon Premier Cru
## 3073 Clos des Mouches Premier Cru
## 3074 Clos Pepe
## 3075 Dragon's Tooth Red Wine
## 3076 Dragon's Tooth Red Wine
## 3077 Destiny Ridge Vineyard Destiny Red
## 3078
## 3079
## 3080 Boushey Grande Côte Vineyard
## 3081 Descendant
## 3082 Alluvium Blanc
## 3083 Campi Magri
## 3084 Podere Bertarole
## 3085
## 3086 Le Quare
## 3087
## 3088 Claret
## 3089 Il Vegro
## 3090 Coda
## 3091 Campo Leòn
## 3092 Capitel de' Roari
## 3093 Signature
## 3094 Manso de Velasco Viejas Viñas Old Vines
## 3095 Terre d'Etoiles
## 3096 Tenuta Lena di Mezzo
## 3097 Giacomo Montresor
## 3098 Riserva
## 3099
## 3100 Bin 128
## 3101 Purisima Mountain Vineyard
## 3102 California Monte Bello
## 3103 Catalina
## 3104 20 Barrels
## 3105 Visión
## 3106
## 3107 Verjago
## 3108 Cuvée Prestige Brut
## 3109
## 3110 Pinot Gris Bonheur Convivial
## 3111 Microterroir de los Lingues
## 3112 Le Grand Rossignol du Château Lamothe Vincent
## 3113
## 3114 Red Cedar Vineyard Estate
## 3115 The Tiller Caliza Vineyard Russell Family Vineyards
## 3116 Lot 10
## 3117
## 3118 Estate Reserve
## 3119
## 3120
## 3121
## 3122
## 3123 Réserve du Propriétaire
## 3124
## 3125
## 3126 Estate
## 3127
## 3128
## 3129
## 3130
## 3131
## 3132 Partager
## 3133 Viña Tobía
## 3134 Grand Théatre
## 3135
## 3136
## 3137 Reserve
## 3138 Steirische Klassik
## 3139 Brut
## 3140 Steinhaus
## 3141 Ferguson Block
## 3142
## 3143
## 3144 Switchback Red
## 3145 Les Marconnets Premier Cru
## 3146
## 3147 Aussere Bergen
## 3148
## 3149
## 3150 Golden Reserve
## 3151 Ferrington Vineyard
## 3152 Pinot Noir Cécile
## 3153 Heritage Reserve
## 3154 Alice Vineyard
## 3155 Celeste Crianza
## 3156 Coastal Estates
## 3157
## 3158 Reserve
## 3159
## 3160 Morena
## 3161 Cuvée Particulière
## 3162 Col Fondo
## 3163 Cuvée Brut
## 3164 Tradition
## 3165 Syrah-Merlot-Cabernet Sauvignon
## 3166 Vendimia Especial
## 3167 Prima Volta Millesimato Dry
## 3168 Mini
## 3169 Miraval Millesimato Extra Dry
## 3170 Millesimato Brut
## 3171
## 3172 Brut
## 3173 Extra Dry
## 3174 Atração
## 3175 Headwaters
## 3176
## 3177 Vignoble d'Epfig
## 3178 Steinert Grand Cru
## 3179 Ezio
## 3180
## 3181 Château de Juliénas
## 3182 Château des Capitans
## 3183 Domaine de Javernière Côte du Py
## 3184 Domaine des Quatres Vents
## 3185 19 Block Mountain Cuvée
## 3186
## 3187 Russian Cuvée
## 3188
## 3189 Proprietor's Cuvée
## 3190
## 3191 Christina's Cuvée
## 3192 Les Mouilles
## 3193
## 3194 Amour de Dieu
## 3195 Thornton Vineyard
## 3196 Haut de Brun
## 3197
## 3198
## 3199 Grand Grü Reserve
## 3200 Ausstich
## 3201 Clos de la Brosse
## 3202 Redigaffi
## 3203 Oberfeld Alte Reben Reserve
## 3204
## 3205
## 3206
## 3207
## 3208
## 3209 Bacigalupi Vineyard
## 3210 Sonoma Brut
## 3211 Inspiración
## 3212
## 3213
## 3214 Blau
## 3215 Sanct Valentin
## 3216 Monga Zin, Lopez Vineyard
## 3217 Fauno Organic Grapes
## 3218 Elicius
## 3219
## 3220 Whispering Angel
## 3221 Cru de Plouget
## 3222
## 3223
## 3224 Eakle Ranch
## 3225 RSV 1601 El Duque de Lerma
## 3226
## 3227 Trabocchetto
## 3228 Estate
## 3229 Touchy-Feely
## 3230 Thea Riserva
## 3231 Truehart Vineyard
## 3232
## 3233 Nuages
## 3234 Gesture
## 3235
## 3236 Monastery
## 3237 EQ
## 3238 Treyu
## 3239
## 3240 Pruno Riserva
## 3241
## 3242 Fumé Blanc Dry
## 3243 Northridge Vineyard
## 3244 Da Vinci Riserva
## 3245
## 3246 Untamed Cuvée
## 3247 Brut
## 3248 White Elephant
## 3249 Riserva
## 3250 Estate Grown
## 3251 Rosé of
## 3252 Château Lestruelle
## 3253 Le Rosé Gourmand de Lestruelle
## 3254 Ceppeto Riserva
## 3255 Winemaker Selection
## 3256
## 3257
## 3258 Breezy Slope Vineyard
## 3259 Minnick Hills Vineyard
## 3260
## 3261 El Picaro
## 3262
## 3263 Ciel du Cheval
## 3264
## 3265 Tradition Brut
## 3266
## 3267 Viñadrian
## 3268 O'Leandro Riserva
## 3269
## 3270 Estate Grown
## 3271 Cuvée des Vignes Centenaires
## 3272 Prova Régia
## 3273 Cubìa
## 3274 Casa do Lago Rosé
## 3275 Lamùri
## 3276
## 3277 Edna Ranch
## 3278 The Turk Shiraz-Grenache-Cabernet-Mourvèdre
## 3279 Marquês de Borba
## 3280
## 3281 Bien Nacido Vineyard Hillside
## 3282 Cocina Blend
## 3283 Maiana Rosso
## 3284
## 3285 Reserve
## 3286
## 3287
## 3288 Torre dei Venti
## 3289 Uncut
## 3290 Spofford Station Vineyard
## 3291 Le Fossette
## 3292 ES Vineyard
## 3293 Floral Clone
## 3294 Ripken Vineyard
## 3295 Monte da Peceguina
## 3296 Old Hill Ranch
## 3297 Proprietary Red Wine
## 3298 Tinta Roriz and Merlot
## 3299 Monte Alentejano
## 3300 Clio Monastrell-Cabernet Sauvignon
## 3301
## 3302 Le Cigar Blanc
## 3303 Brut Rosé
## 3304 Extra Dry
## 3305
## 3306 Star Vineyard
## 3307
## 3308 Vigneto Giardino Dry
## 3309 Antão Vaz-Arinto
## 3310 Brut Millesimato Motus Vitae
## 3311 Brut
## 3312 Sangiacomo Vineyards
## 3313 Reserva Raventós Brut
## 3314 Turner Vineyard
## 3315 Yasmin Kosher Red
## 3316
## 3317 Lola Red
## 3318 Truchard Vineyard
## 3319 Petit Albet
## 3320
## 3321 Reserve Unoaked Kosher
## 3322
## 3323
## 3324
## 3325
## 3326
## 3327 Morning Dew Vineyard
## 3328 Le Vespe
## 3329 White Label
## 3330 Isabelino
## 3331
## 3332
## 3333 Olé
## 3334 Château de Messey Les Crets
## 3335 0 Degree Dry
## 3336
## 3337 Dry
## 3338 Curma
## 3339 William Vigne
## 3340
## 3341 Linteau
## 3342 Covello
## 3343
## 3344
## 3345 Reserve
## 3346
## 3347
## 3348 Les Hâtes
## 3349 Vieilles Vignes
## 3350
## 3351 Khayyam
## 3352 2nd Degree Medium Sweet
## 3353
## 3354 Les Tilles
## 3355 Château de Beauregard
## 3356
## 3357 Jillian's Blend
## 3358 Reserve
## 3359 Conde de Valdemar Old Vines
## 3360 Reserva
## 3361 Spätlese
## 3362
## 3363 Cask 23 Estate
## 3364 Eden Trail
## 3365 Shake Ridge Ranch
## 3366 Santos da Casa Grande Reserva
## 3367 Joie de Vivre
## 3368
## 3369 Original Vines
## 3370 Putnam Vineyard Pinot de Ville
## 3371 Secco
## 3372 Triple Black Slopes
## 3373 Estate Grown
## 3374 Sangiacomo Family Vineyards
## 3375 Le Vivier
## 3376 Arnaut Boushey Vineyard
## 3377 Big River Ranch Vineyard Series
## 3378 Solesce
## 3379 Grande Reserva
## 3380
## 3381
## 3382 Bernkasteler Badstube Auslese
## 3383 Ürziger Würzgarten GG Réserve Alte Reben Erste Lage Dry
## 3384
## 3385 Memorista Tradition
## 3386 Finca Malaveïna
## 3387 Estate
## 3388 Reserva
## 3389 Duas Quintas Reserva
## 3390 Wren Song
## 3391 Hoya de Cadenas Organic
## 3392 Ampakama
## 3393 XA
## 3394 Mountain Cuvée Estate
## 3395 High Roller
## 3396 Suzanne's Blend
## 3397
## 3398
## 3399
## 3400 Valle Las Acequias
## 3401 Montaria Tinto
## 3402 Quartilho Branco
## 3403
## 3404
## 3405 Unoaked
## 3406 Dry
## 3407 Bastardo! Black Edition Tinto
## 3408 Seafood & Co
## 3409
## 3410 Private Reserve
## 3411 La Comtesse
## 3412 Monsaraz Branco
## 3413 The Pintail
## 3414 Castelo do Sulco Colheita
## 3415 Drago
## 3416
## 3417 Altos de Tamaron
## 3418 England-Shaw Vienyard
## 3419
## 3420 Especial
## 3421 Porrais
## 3422 QM Terra Antiga
## 3423 Reserva
## 3424 Grist Vineyard
## 3425
## 3426 Cuvée 3
## 3427 Tagus Creek Tinto
## 3428 Rede Branco
## 3429 Winemaker's Reserve
## 3430 Estate Grown Mt. George Vineyard
## 3431 Aveta
## 3432 Les Michelons
## 3433 Atavus Vineyard
## 3434 Nuthouse
## 3435
## 3436
## 3437 Vineyard Series Clifton Vineyards
## 3438
## 3439 Reserve
## 3440
## 3441 Evidência
## 3442 The Wah
## 3443 Meandro do Vale Meão
## 3444 Dona Matilde Reserva
## 3445 Reserva
## 3446 Reserve
## 3447 Gravel Road
## 3448 Castelletto
## 3449 Gratus Bio
## 3450 Whiplash
## 3451
## 3452 Scrubby Rise
## 3453 Sustainably Farmed Estate Grown and Bottled
## 3454
## 3455
## 3456 Estate Grown
## 3457
## 3458 Gualtallary
## 3459
## 3460 The Dagger
## 3461 Betsy's Backacher
## 3462
## 3463
## 3464 Colmello Rosso
## 3465
## 3466 Brut Rosé Millesimato
## 3467
## 3468 Monte da Peceguina Tinto
## 3469 Maestro
## 3470
## 3471 Cantina Tre Serre
## 3472 Reserva Privada
## 3473 Grand Cuvée
## 3474 Porca de Murça Tinto
## 3475 Reserve Kosher
## 3476 Whole Cluster Reserve
## 3477
## 3478
## 3479
## 3480
## 3481
## 3482 Churchill Estates
## 3483
## 3484
## 3485 Dry
## 3486 Suzanne's Estate Reserve
## 3487 Cuvée Marie
## 3488
## 3489 Tenuta Lena di Mezzo
## 3490 Estate
## 3491
## 3492 Blue Ash Road
## 3493 Reserve Barrel Select
## 3494 Topaz Imperial
## 3495 Paverno
## 3496 Ürziger Würzgarten Alte Reben GG Trocken
## 3497 Reserva
## 3498 Tradition
## 3499
## 3500 Unoaked Ingle Vineyard
## 3501 Sweet Cuvée
## 3502 Brut Royal Rosé
## 3503
## 3504 Cracked Earth
## 3505 Euphoric La Vista Vineyard
## 3506
## 3507
## 3508 Tyto
## 3509
## 3510 Riserva
## 3511 Pollino
## 3512 Madrona Hill Vineyard
## 3513 Principe Strozzi
## 3514 Luvisi Vineyard
## 3515 Lone Tree Vineyard Estate Grown
## 3516 Stonetree Vineyard
## 3517 Grande Réserve Brut
## 3518 Maestro Collection Ranch No. 5
## 3519 Floreano e Punto
## 3520 Brut Régence
## 3521 Tinto
## 3522
## 3523 Oasis
## 3524 Bron& Ruseval Riserva
## 3525 Blanc de Blancs Brut
## 3526 Brut Art Déco
## 3527
## 3528
## 3529 Big Red Blend No 33-1
## 3530 Made With Organic Grapes
## 3531 Costa Grimaldi
## 3532 Auslese
## 3533
## 3534
## 3535 The Coppermine Road
## 3536 Ryo-Fu
## 3537 Rubin Carnuntum
## 3538 Vieilles Vignes
## 3539 Terrassen Smaragd
## 3540 Brunate Le Coste
## 3541 Casot
## 3542 Cascinotta
## 3543 Champoux Vineyard
## 3544
## 3545 Bricco Sarmassa
## 3546 Block 10
## 3547 Bella Una
## 3548 Isolation Ridge Vineyard
## 3549 Vigna Lazzairasco
## 3550 Kent the Younger
## 3551 Zieregg Grosse Lage
## 3552 Bacchus Vineyard Dewpoint
## 3553 Graacher Himmelreich Spätlese
## 3554
## 3555 William Randell
## 3556 Steinsetz Reserve
## 3557 Sagemoor Vineyard
## 3558 Leithagebirge
## 3559
## 3560
## 3561 Dry
## 3562 Ridgecrest Vineyards
## 3563 Reserve
## 3564
## 3565
## 3566 Late Bottled Vintage
## 3567 Première Lune
## 3568
## 3569 Santos da Casa Reserva Sem Barrica Unoaked
## 3570 Piesporter Goldtröpfchen Spätlese
## 3571 Lamùri
## 3572 Felino
## 3573 Carlton Hill Vineyard
## 3574 Single Vineyard
## 3575 Ribeiro Santo
## 3576
## 3577 Pinot Luxembourg
## 3578
## 3579 Five Faces
## 3580 Gran Reserva
## 3581 The Uncarved Block
## 3582
## 3583 Keeler Estate Vineyard
## 3584 Kestener Paulinsberg Kabinett
## 3585
## 3586 Vertice Grande Reserva Branco
## 3587
## 3588 Le Clos du Château de Parnay
## 3589 Estate
## 3590
## 3591 Mas Fenouillet
## 3592
## 3593
## 3594
## 3595 Emeri Moscato
## 3596 Emeri Pink Moscato
## 3597 Brut
## 3598 Sélection Prestige
## 3599 The Scarlet Letter Sparkling
## 3600
## 3601 Sarah's Hill
## 3602
## 3603
## 3604 Le Cinq Montpeyroux
## 3605 Spice Cabinet Vineyard
## 3606 Ai Confini del Bosco
## 3607 Evel Branco
## 3608 Estate
## 3609 Vintner's Selection
## 3610
## 3611 Secreto
## 3612
## 3613 Templários Colheita Seleccionada
## 3614 Castillo de Molina Reserva
## 3615 Vendimia Seleccionada
## 3616 Toques et Clochers Brut
## 3617 Tinto
## 3618 Reserve Barrel Fermented
## 3619 Red Cedar Vineyard
## 3620 Selección
## 3621 Hacienda Araucano Reserva
## 3622 Monte Cascas Reserva Branco
## 3623
## 3624
## 3625 Signature Selection
## 3626 Altes Vineyard
## 3627
## 3628 Cherub Rosé of Syrah
## 3629
## 3630 Del Rio Red
## 3631
## 3632
## 3633 Zinfusion Reserve
## 3634
## 3635
## 3636
## 3637 Reserve
## 3638 Reserva Cabernet Sauvignon-Syrah
## 3639
## 3640
## 3641 Estreia
## 3642 Reserve
## 3643 Barrel Sample
## 3644 Barrel Sample
## 3645 Barrel Sample
## 3646 Campoleone
## 3647 Ried Schütt Smaragd
## 3648 Wösendorfer Kirchweg Smaragd
## 3649 Solomon Hills Special Bottling Two Barrels Made
## 3650 Sagemoor Vineyard
## 3651 Estate Bottled
## 3652 Thompson Vineyard
## 3653 Dürnsteiner Kellerberg Reserve
## 3654
## 3655 Ciel du Cheval Vineyard Red Wine
## 3656 Estate
## 3657 Dürnsteiner Kellerberg Smaragd
## 3658 Apartado
## 3659 Reserve Melange
## 3660 Champoux Vineyard Red Wine
## 3661
## 3662
## 3663
## 3664 Flood Family Vineyards
## 3665 Righteous
## 3666
## 3667 Gran Reserva
## 3668
## 3669 Chukker
## 3670
## 3671 Paso del Sol
## 3672
## 3673
## 3674 Selected Terroir
## 3675
## 3676 Cantina Tre Serre
## 3677 Seigneurs de Bergerac Blanc
## 3678
## 3679
## 3680
## 3681 Temptation The Affair
## 3682 Reserva
## 3683
## 3684 Manor House
## 3685
## 3686 Momo
## 3687
## 3688 Brut Rosé
## 3689 Baranoff Vineyard
## 3690 20-Years-Old Tawny
## 3691 Vaillons Premier Cru
## 3692 Cent-Vignes Premier Cru
## 3693 Veraton
## 3694 Egarade
## 3695 Dosaggio Zero
## 3696 Vintage Collection Brut
## 3697 Twelve Clones
## 3698 Aurea
## 3699 Blanc de Noirs Brut
## 3700 Memory Brut
## 3701 Tremenel
## 3702 Gran Estirpe
## 3703 Berncasteler Doctor Auslese
## 3704
## 3705 Estate Bottled
## 3706 Pas Dosé Vintage
## 3707 Brauneberger Juffer Trocken GG
## 3708 Seven Springs Vineyard
## 3709 Seven Springs Vineyard
## 3710
## 3711 RPLBV Late Bottled Vintage
## 3712 Gran Reserva
## 3713 Heritage Blanc
## 3714 Rubrato
## 3715
## 3716 Neipperger Schlossberg
## 3717 Trocken
## 3718
## 3719 El Albar Lurton Barricas
## 3720 Estate Grown and Bottled
## 3721
## 3722
## 3723 Vintage
## 3724 Stillwater Creek Vineyard
## 3725
## 3726 Diane de Belgrave
## 3727
## 3728 Campo ai Sassi
## 3729 Gran Brut
## 3730
## 3731 Tradition
## 3732
## 3733 Artisan Collection
## 3734
## 3735
## 3736
## 3737
## 3738 Brut Nature
## 3739
## 3740 Tagus Creek Shiraz-Trincadeira
## 3741
## 3742 Château des Vierres
## 3743
## 3744 Puerto Viejo Estate Bottled Single Vineyard Reserve
## 3745
## 3746
## 3747
## 3748 Alba
## 3749
## 3750
## 3751 Red Cedar Vineyard
## 3752
## 3753
## 3754
## 3755
## 3756 Limited Release
## 3757
## 3758 Kinneybrook
## 3759 Paparazzi
## 3760 Colosal
## 3761 HD Reserva
## 3762 Alberta Ferretti
## 3763 3rd Degree Late Harvest Sweet
## 3764
## 3765
## 3766 Reserve Series
## 3767
## 3768
## 3769
## 3770
## 3771 Truchard Vineyard
## 3772 Brut Réserve
## 3773 Estate Grown
## 3774 Orange Label
## 3775
## 3776 Gap's Crown Vineyard
## 3777 Vigna Alta Il Lagarino di Dionisio
## 3778 Alouette
## 3779
## 3780 The Wild
## 3781 A&D Vineyard Dry
## 3782
## 3783
## 3784
## 3785
## 3786 Particella 928
## 3787 Pretiosa
## 3788 D'Alliard Vineyard
## 3789 Estate
## 3790 Edition Adele Blanc de Blancs Brut
## 3791 Seccopassa
## 3792 Carsi Vineyard
## 3793
## 3794
## 3795
## 3796 Murray
## 3797 Riserva
## 3798 Sabazio
## 3799
## 3800
## 3801 Early Wine
## 3802
## 3803
## 3804
## 3805 Paolus
## 3806 Reserva Brut
## 3807 242
## 3808
## 3809 Reserva
## 3810 Reserva
## 3811
## 3812 La Vieille Eglise
## 3813 Reserve
## 3814
## 3815 Renaissance
## 3816 Les Cimels
## 3817 Cuvée des Conti
## 3818 Damo
## 3819 Passagem Reserva
## 3820
## 3821 Bien Nacido Reserve Block Eleven
## 3822 Norte
## 3823 Garys' Vineyard
## 3824 Cuvée le Paon
## 3825 Les Ruchets
## 3826 Domaine de Saint Pierre
## 3827
## 3828 Brosseau Vineyard
## 3829 Niclaire
## 3830 Osterberg Grand Cru
## 3831
## 3832 Reserve
## 3833
## 3834 Brand Grand Cru
## 3835 Persia
## 3836
## 3837 Quinta da Manoella VV
## 3838
## 3839 Schlossberg Grand Cru
## 3840
## 3841 Ridgetop Vineyard
## 3842 Ikon
## 3843
## 3844 Aguia Moura em Vinhas Velhas Reserva
## 3845
## 3846 Rangen de Thann Grand Cru Clos Saint-Théobald
## 3847 Hallberg Vineyard
## 3848 Calidonio
## 3849
## 3850 Estate
## 3851 Graacher Himmelreich Spätlese
## 3852 Arcus Estate
## 3853 Les Grézeaux
## 3854 Clos du Chêne Vert
## 3855 Cuvée Spéciale
## 3856
## 3857
## 3858
## 3859 Windy Hill Vineyard
## 3860 Estate Bottled
## 3861 Estate Limited Edition
## 3862 Estate
## 3863 Pinéro
## 3864 Le Haut-Lieu Sec
## 3865 Walker Vine Hill
## 3866 Purisima Mountain Vineyard
## 3867 Underwood Mountain Vineyards 55% Riesling/45% Gewurztraminer Ice Wine
## 3868 Camarato
## 3869
## 3870 Mitsuko's Vineyard
## 3871 Clos de Saint-Yves
## 3872 Berncasteler Doctor Auslese
## 3873
## 3874 Passito
## 3875 Lachini Family Estate
## 3876 Castello di Semivicoli
## 3877 Reserve
## 3878 Brut
## 3879
## 3880
## 3881
## 3882
## 3883 White Reserva
## 3884
## 3885 Frank Chiullino Chef Blend Red
## 3886
## 3887 Classic
## 3888 Reserva
## 3889
## 3890 Estate
## 3891 Viña do Campo
## 3892 Chaminé
## 3893 Crane Ranch Vineyard
## 3894 Cool Coastal Vineyards
## 3895 Les Bornés
## 3896 Kickass
## 3897 Fazekas
## 3898 Roble
## 3899
## 3900 Barrel Fermented
## 3901
## 3902
## 3903 Santa Lucia
## 3904 Prova Régia
## 3905 Barrel Select American Oak Reserve
## 3906
## 3907 Brut
## 3908 Plotzner
## 3909
## 3910 Col Livius
## 3911 Ritratti
## 3912 Vigna Maso Tratta
## 3913
## 3914 Platine Brut
## 3915 Eichorn
## 3916 Cornerstone Vineyard
## 3917
## 3918 Lindaflor
## 3919
## 3920 Old Vines
## 3921 Lone Oak Vineyard
## 3922 Ranch
## 3923 Templários Colheita Seleccionada
## 3924
## 3925
## 3926 Old Vine
## 3927
## 3928
## 3929 Attila's Selection
## 3930 1492
## 3931
## 3932 Old Vine
## 3933 Carreras Ranch
## 3934
## 3935 Tinto Fundación
## 3936 Rosado
## 3937
## 3938
## 3939 Casal Garcia Tinto
## 3940
## 3941 Organic Legacy Old Vines
## 3942 Pianissimo
## 3943 Hansen Vineyard Reserve
## 3944 Selected Vineyards
## 3945 Dance Del Mar
## 3946 Clemens Reserva
## 3947 The Novelist
## 3948 Deen De Bortoli Vat 10
## 3949 Coreto
## 3950 Bubbles Sparkling White Wine
## 3951 Escolha
## 3952 Andes Crossing
## 3953 DB Family Selection
## 3954 Tinto
## 3955 500ml
## 3956 Clos des Garands
## 3957 Sélection
## 3958 Will Jarvis' Science Project
## 3959 Alazan CJ's Barrel
## 3960 Cuvée Alexandre Las Kuras Vineyard
## 3961 Subduction White
## 3962 Broquel
## 3963 Reserve
## 3964 Les Beaumonts Premier Cru
## 3965 Les Damodes Premier Cru
## 3966
## 3967 M5
## 3968 Family Vineyards
## 3969 Caratello
## 3970
## 3971 Cartizze Dry
## 3972
## 3973
## 3974
## 3975 Kronos Vineyard
## 3976
## 3977 Colson Canyon Vineyard
## 3978 500ml
## 3979 Cristina Ascheri
## 3980 Vicar's Choice
## 3981 Quail Series
## 3982
## 3983
## 3984 Schenkenbichl
## 3985
## 3986
## 3987 Villa Pattono
## 3988 Le Monache
## 3989
## 3990
## 3991
## 3992 Alder Creek Vineyard
## 3993 Marsanne-Roussanne-Viognier
## 3994
## 3995
## 3996 Deseado
## 3997 Tenuta Del Fant
## 3998 Sawmill Creek Vineyards North Block
## 3999
## 4000 Semi-dry
## 4001 g Dehesa Gago
## 4002
## 4003 Reserva
## 4004 Estate
## 4005 Terre Promise
## 4006 Verité du Terroir
## 4007 Selvecorte
## 4008
## 4009 Klipsun Vineyard Blanc
## 4010
## 4011
## 4012
## 4013 The Ambassador
## 4014
## 4015 Celilo
## 4016
## 4017 Brut Reserva Rosé
## 4018
## 4019 Anthologia
## 4020
## 4021 Stiling Vineyard
## 4022 Fog Catcher
## 4023 Stillwater Creek Vineyard
## 4024 Fuente Milano
## 4025 Original Unwooded
## 4026 The Renaissance of
## 4027
## 4028
## 4029
## 4030
## 4031 Haven
## 4032 Zingy
## 4033 Blanc de Blancs Brut
## 4034 Horse Heaven Vineyard
## 4035
## 4036 Les 2 Terres Sur Lie
## 4037 Charmes
## 4038 Comme Dessus
## 4039
## 4040 Runcaris
## 4041 Vin Soave
## 4042 Blanc de Noir
## 4043 Estate Bottled
## 4044 Estate Grown Pink Pape Blackrock Vineyard
## 4045
## 4046 Famiglia Bianchi
## 4047 Toro de Piedra Grand Reserve Late Harvest
## 4048 Reserve
## 4049 Mukuzani
## 4050 Single Vineyard
## 4051 Q
## 4052 B2 Parcela Unica
## 4053 Abracadabra
## 4054 Terre di Cariano Riserva
## 4055 Estate Selection
## 4056 Ethos Reserve
## 4057 Sofa King Bueno
## 4058
## 4059 Signature Series
## 4060 Signature Series
## 4061
## 4062
## 4063 EnTycement
## 4064 Damavian Les Collines Vineyard
## 4065 Grand Vin
## 4066
## 4067 Helena Bench
## 4068 Tenuta Belguardo
## 4069 La Court
## 4070 Clone 877.4.369.362
## 4071 Rocche di Castiglione Falletto
## 4072
## 4073
## 4074 Blanc de Blancs
## 4075 VIneyard Riserva
## 4076 Heritage
## 4077 Copeland Vineayard
## 4078 San Lorenzo Estate
## 4079 I Tre Figli
## 4080
## 4081
## 4082 La Demoiselle de Bourgeois
## 4083 Patriarche
## 4084 Twenty-Seven Blanc de Blanc
## 4085
## 4086 Kuyen
## 4087 Stonetree Vineyard
## 4088 Olive Hill Estate Vineyards
## 4089 Particular
## 4090 Villa Marchesi
## 4091 Filipa de Lencastre
## 4092 Santos da Casa
## 4093 Casaleiro Reserva
## 4094 Rede Branco
## 4095 Winemaker's Reserve
## 4096 Estate Grown Mt. George Vineyard
## 4097 Aveta
## 4098 Marquês de Borba Branco
## 4099 Secreto
## 4100 The Y Series
## 4101 Cardinal's Peak
## 4102
## 4103 Red Rooster Old Vine
## 4104
## 4105 Tannat-Merlot-Zinfandel
## 4106 Cuvée Louis
## 4107
## 4108 Valdazar
## 4109 Tons de Duorum
## 4110 Del Viento Paredones Estate Single Vineyard
## 4111 Chenoweth Vineyard
## 4112 Grand Detour
## 4113 Paysage Estate Grown
## 4114 Estate Bottled
## 4115 Piesporter Goldtröpfchen Kabinett
## 4116 Piesporter Michelsberg Kabinett
## 4117
## 4118 Five Thirteen
## 4119 Grenache Noir
## 4120 Brut Metodo Classico
## 4121 Bernkasteler Badstube Kabinett
## 4122 Carte d'Or Brut
## 4123 Rosé Brut Nature
## 4124 Private Reserve Estate Grown
## 4125 Greenville Summit
## 4126 Extra Brut Metodo Classico
## 4127 Freccianera Brut Vintage Metodo Classico
## 4128 Extra Brut
## 4129 Blanc de Noirs Brut
## 4130 Ultime Extra Brut
## 4131 XXXIV Proprietary
## 4132 Amiral
## 4133
## 4134 Elton
## 4135 Reserva Branco
## 4136 Blanc de Blancs Brut
## 4137 Vintage
## 4138 The Derelict Vineyard
## 4139 Brut Réserve
## 4140 Curious & Ancient 20 Years
## 4141 West Hill
## 4142 Preuses Grand Cru
## 4143 Côte de Lechet Premier Cru
## 4144 Estate Grown
## 4145 Fatica Contadina
## 4146 Confidencial Reserva
## 4147 Califa
## 4148
## 4149 Duvarita Vineyard
## 4150
## 4151 Reserve
## 4152 Instantanée Extra Brut
## 4153 Lumière Unfiltered
## 4154 Platinum Collection
## 4155 Vigna Barbagalli Pre-Phylloxera Rosso
## 4156 Blanc de Blancs Brut
## 4157 Thérèse Vineyards Dos Niñas Vineyard
## 4158 Roberts Road
## 4159 Dry Farmed Estate
## 4160 Square Root Heart Hill Vineyard Estate Grown
## 4161 Black Tie Charlie
## 4162 The Brawler
## 4163 Sagrado Reserva
## 4164 Il Sigillo
## 4165 O Oenólogo Vinhas Velhas
## 4166 Chamise Estate Grown
## 4167
## 4168 Estate
## 4169 Doyenne
## 4170 Hochheimer Domdechaney Beerenauslese
## 4171 Sommelier Quality Fifty-Fifty
## 4172
## 4173 Estate Grown and Bottled
## 4174 Destination Series
## 4175 Blanc de Blancs Reserve
## 4176
## 4177
## 4178
## 4179
## 4180 Whistle Stop
## 4181 Thomas Jefferson Series Madeira
## 4182 Rhythm
## 4183 Block Selection Tinga Reserve
## 4184 Les Papilles
## 4185
## 4186
## 4187
## 4188
## 4189 76 West
## 4190
## 4191 Riserva
## 4192 Hi Vista Vineyard
## 4193 Reserva
## 4194 Flor de Campo
## 4195 Estate
## 4196 Reserve
## 4197
## 4198
## 4199 Serie Riberas Gran Reserva Ribera del Cachapoal
## 4200 Serie Riberas Gran Reserva Ribera del Tinguiririca
## 4201 Magnolia Lane Estate Grown
## 4202 Estate
## 4203 Monte Majore
## 4204 X Reserve Kiler Canyon Vineyard
## 4205
## 4206 Estate Grown
## 4207
## 4208
## 4209
## 4210
## 4211 Selección Especial
## 4212 Mar de Lisboa
## 4213
## 4214 Touriga Nacional-Merlot-Syrah
## 4215
## 4216 Made With Organic Grapes
## 4217 Starr Ridge Vineyard Estate
## 4218 Riserva
## 4219 Animus Branco
## 4220 Gran Vin
## 4221 Estate Grown
## 4222
## 4223 Olmèra
## 4224 Edicion Limitada
## 4225 Barrel Select
## 4226 3 Castas
## 4227
## 4228 Petit Jammes
## 4229 Winemaker's Blend
## 4230 Sceales Vineyard
## 4231
## 4232 [+]
## 4233
## 4234 Olsen Vineyard
## 4235 Proprietary
## 4236 Elston
## 4237
## 4238 Las Brisas Vineyard
## 4239
## 4240
## 4241 Dollarhide Estate Vineyard
## 4242 Nimbus Single Vineyard
## 4243 Beckstoffer Georges III
## 4244 Red Naturally Semi-Sweet
## 4245 Proprietor's Reserve
## 4246 Sangiacomo Vineyard
## 4247 Primo Rosso
## 4248 Spring Harvest
## 4249 USB
## 4250 Pickpocket
## 4251 Gunselman Bench Vineyard
## 4252 Elephant Mountain Vineyard Reserve
## 4253
## 4254 High Elevation Collection
## 4255
## 4256 Awakening
## 4257 Honest
## 4258
## 4259 Bric de Maschi
## 4260 Coastal Cool Climate Estate Bottled
## 4261
## 4262
## 4263 Mireille
## 4264 Barrouge
## 4265
## 4266
## 4267
## 4268 Dry
## 4269 Dona Rae
## 4270 Black and White
## 4271
## 4272
## 4273
## 4274 Ruvei
## 4275
## 4276
## 4277
## 4278 Easy
## 4279 Saint-Jean-de-la-Porte
## 4280 Caprice
## 4281 RTW
## 4282 Naturale Single Vineyard Sparkling
## 4283 Cuvée Prestige
## 4284
## 4285 Sur Lie
## 4286 Cordon Negro Brut
## 4287 BT Bodega Tintoralba
## 4288 Alphabet Wines
## 4289 Cordon Rouge Brut
## 4290
## 4291 Cuvée de la Luna
## 4292 The Shell Mound
## 4293 Garnet
## 4294 Grand Reserve
## 4295 Calvarino
## 4296 Château Julia Assyrtiko
## 4297
## 4298
## 4299 Estate Vineyard
## 4300 Member's Only Red
## 4301 Rosso di Verzella
## 4302 Calico White
## 4303 Chardonnay Blanc de Blancs Brut
## 4304
## 4305 Il Sestante Vigneto Monte Masua
## 4306
## 4307
## 4308
## 4309 Thérèse Vineyards Estate
## 4310
## 4311 Villa Rizzardi
## 4312 Gran Reserva
## 4313 Estate Grown
## 4314
## 4315 Reserva
## 4316
## 4317 Dry
## 4318 10-Year-Old Tawny
## 4319 Late Bottled Vintage
## 4320 SV Estate
## 4321 Gran Reserva
## 4322 Dry Amontillado Los Arcos
## 4323 Cúmaro Riserva
## 4324 Umino Vineyard
## 4325 Awakening
## 4326
## 4327 INOX
## 4328
## 4329 Grand Cuvée Fournier Vieilles Vignes
## 4330 Oloroso
## 4331 Coda della Foce
## 4332 Terre di Giumara Sachia
## 4333 Single Vineyard
## 4334 Reserve
## 4335 Amontillado Carlos VII
## 4336 Gamma
## 4337
## 4338 Terra de Promissio
## 4339
## 4340
## 4341
## 4342 Evolution Lucky No. 9
## 4343 Prince Hill Vineyard
## 4344
## 4345 Huckleberry's Vineyard
## 4346
## 4347 Super Tinto
## 4348 Estate Vineyard
## 4349
## 4350
## 4351 Estate
## 4352 Serendipity Block
## 4353
## 4354
## 4355
## 4356 Baradiero
## 4357
## 4358
## 4359
## 4360
## 4361
## 4362
## 4363
## 4364 D + D
## 4365 Clos de France
## 4366 Rosso Riserva degli Orzoni
## 4367
## 4368 Cincuenta y Cinco
## 4369 Domaine la Soufrandière Climat les Quarts
## 4370 Reserva
## 4371 Quarz
## 4372 Les Caradeux Premier Cru
## 4373 Domaine des Deux Roches Rives de Longsault
## 4374 Le Limosin
## 4375
## 4376 Water Witch Klipsun Vineyard Red Wine
## 4377 Ingrid's Vineyard
## 4378 Alliance
## 4379 Colección Vivanco 4 Varietales
## 4380 Mâcon Milly-Lamartine Clos du Four
## 4381 Tradition
## 4382 Collaboration Series III Ciel du Cheval Vineyard Red Wine
## 4383 Charmes Premier Cru
## 4384 Goutte d'Or Premier Cru
## 4385 Vuril
## 4386
## 4387 Les Gravières Premier Cru
## 4388 Mont-Avril
## 4389
## 4390 Enjoy Walla Walla
## 4391 Welcome to Columbia Valley
## 4392 Escape to Walla Walla
## 4393 Eagle Peak
## 4394 L'abime Corfu Crossing Vineyard
## 4395 Le Beau Hedges Estate Vineyard
## 4396 Merveille Stillwater Creek Vineyard
## 4397 Votre Santé Cuvée de Patron
## 4398 Clos Reyssie
## 4399 Domaine du Bois Rosier
## 4400 Sonoma Brut
## 4401 Rhythm
## 4402 Vieilles Vignes
## 4403 Collection
## 4404 Bricco Faset Riserva
## 4405
## 4406 Estate Bottled
## 4407 Selecció Brut
## 4408 Dry
## 4409
## 4410 Vieilles Vignes
## 4411 The Estates
## 4412 Ciel du Cheval Vineyard
## 4413 Wallula Vineyard
## 4414
## 4415 Bien Nacido Vineyard
## 4416 MR Mountain Wine
## 4417 Rossofuoco
## 4418 Estate
## 4419
## 4420 Weinbau Vineyard
## 4421 Botani Old Vines
## 4422 Hilliard Bruce Vineyard
## 4423
## 4424 Crianza
## 4425 Alder Ridge Vineyard
## 4426 Basarin Riserva
## 4427
## 4428 San Andreas
## 4429 Gallina
## 4430
## 4431 Prestige
## 4432 Ancient Vines
## 4433 Bric' Micca
## 4434 Charmes Premier Cru
## 4435 Les Ecussaux Premier Cru
## 4436 Dessus des Golardes
## 4437
## 4438 Célèbre
## 4439
## 4440
## 4441 Mariposa Estate Old Vines Dry Farmed
## 4442 Neblina
## 4443 Nellie Mae
## 4444
## 4445
## 4446
## 4447
## 4448
## 4449
## 4450 Muralhas de Monção
## 4451 Her Silhouette
## 4452
## 4453 La Vieille Eglise Réserve
## 4454
## 4455
## 4456
## 4457
## 4458
## 4459
## 4460 Terra de Fic 1
## 4461 Organic
## 4462
## 4463
## 4464
## 4465 Estate Grown
## 4466
## 4467 Reserve
## 4468 Seven Brothers
## 4469 Ethos Reserve Late Harvest
## 4470 Rossofonte
## 4471
## 4472 Grace Benoit Ranch Estate Grown
## 4473 Estate Inspired
## 4474
## 4475 Óscar Tobía Reserva
## 4476 Seeds of Empowerment Clone 4 Estate Grown & Bottled
## 4477 Cailloux Vineyard
## 4478 Conner Lee Vineyard
## 4479 Primo Volo
## 4480 Brut
## 4481 Il Lussurioso Riserva
## 4482
## 4483 Canoe Ridge Estate
## 4484 Philippe Girard
## 4485 Vieilles Vignes
## 4486 Sonata
## 4487 Estate Reserve
## 4488
## 4489 Delanda Vineyard
## 4490 Honea Vineyard
## 4491 Stoned Crow Gimblett Gravels
## 4492 Gimblett Gravels
## 4493 Block Twenty One
## 4494 Balletto Vineyard
## 4495 Vieilles Vignes
## 4496 Boushey Vineyard
## 4497 Old Vines Quail Hill Vineyard
## 4498 Closerie des Alisiers Vieilles Vignes
## 4499 Cape Winemakers Guild
## 4500 Cape Winemakers Guild Double Barrel
## 4501 Cape Winemakers Guild
## 4502 Cape Winemakers Guild Swan Song
## 4503 The Traveler
## 4504 Contrada R
## 4505 Rocky Knoll
## 4506 Golden Mean
## 4507 Reed
## 4508 Mother Rock
## 4509 Single Vineyard Reserve
## 4510 Paige's Ridge
## 4511 Heintz Vineyard
## 4512 Westside Road Neighbors
## 4513 Jensen
## 4514 Brunate
## 4515 Single Vineyard
## 4516 Parafada
## 4517 Dutton Ranch
## 4518 Julia's Vineyard
## 4519 Saitone Ranch
## 4520 Grand Cru
## 4521 Wayfarer Vineyard
## 4522 Durell Vineyard Origin
## 4523 Francia
## 4524 Contrada Monte San Nicolò
## 4525 Outis Rosso
## 4526 Los Alamos Vineyard
## 4527 Vin Rare
## 4528 Pithos Rosso
## 4529 Reina Ana
## 4530 Muy Bueno
## 4531 Osiris
## 4532 Pomar Junction Vineyard
## 4533 Rosado
## 4534 Eden Ridge, Barrel Select
## 4535
## 4536
## 4537 Ramal Vineyard
## 4538
## 4539 friends.white
## 4540 Ferrando
## 4541
## 4542
## 4543
## 4544 Assiolo
## 4545 Westside Vineyard
## 4546
## 4547
## 4548
## 4549
## 4550
## 4551
## 4552
## 4553 Protocolo
## 4554
## 4555 Albamar
## 4556 Ramón Roqueta
## 4557 Rondineto
## 4558 Demi Sec
## 4559
## 4560 Quinta Dona Mafalda Vinhas Velhas
## 4561
## 4562 Borges Quinta da Soalheira
## 4563 Reserva
## 4564 Château Tuilerie Pagès
## 4565 Thérèse Vineyards Dos Niñas Vineyard
## 4566 Estate
## 4567
## 4568 Fonte Venna
## 4569 Pieluni Riserva
## 4570 Reserva
## 4571 Adivino Tinto Joven
## 4572
## 4573
## 4574 I Vasari Old Vines
## 4575
## 4576 Esteva
## 4577
## 4578
## 4579 Semi-Sec Rosé
## 4580 Paxis
## 4581 Prazo de Roriz
## 4582 Reserva
## 4583 Grande Reserva
## 4584 Casabel
## 4585 Alchemy
## 4586 Suri
## 4587
## 4588 Selection
## 4589
## 4590
## 4591
## 4592 York Creek
## 4593 Waxing Poetic
## 4594
## 4595 Vigneti di Montegradella
## 4596
## 4597
## 4598 Corte Giara
## 4599
## 4600 Saralee's Vineyard
## 4601 Dry
## 4602
## 4603 Law of Proportions
## 4604 Private Reserve
## 4605
## 4606
## 4607 Visión
## 4608 Podere Bertarole Ripassato
## 4609 Cicilio
## 4610
## 4611
## 4612 Baltos
## 4613 Blanco
## 4614 Ecològic
## 4615 Oughterson Family Estates
## 4616 Falling Man Vineyard Dry
## 4617 Viognier-Sauvignon Blanc-Chardonnay
## 4618 Capitel de' Roari
## 4619 Cannubi
## 4620 La Paciencia Vineyard
## 4621 Sequestered
## 4622 Stanly Ranch
## 4623 Springloaded Monkey Paw Luc's Vineyard
## 4624 Coleraine
## 4625 Terroir Series Finca Ambrosia Single Vineyard
## 4626 Ovello
## 4627 Castellero
## 4628 La Foia
## 4629 Édition Limitée
## 4630 Pratt Vineyard
## 4631 Gattera
## 4632 Paiagallo
## 4633 Le Rochoy
## 4634 Chañar Punco
## 4635 York Creek Vineyard
## 4636 Etienne Henri
## 4637 Sigrid
## 4638 The High Wire Estate
## 4639 Nicolas Catena Zapata
## 4640 Limerick Lane Vineyard
## 4641 Papa's Block
## 4642
## 4643 Palácio Anadia Reserva
## 4644 Monte Cascas Vinha das Cardosas
## 4645 Les Cris
## 4646 Pur Jus
## 4647 Vintage
## 4648 Barrel sample
## 4649 Barrel sample
## 4650 Barrel sample
## 4651 Barrel sample
## 4652 Barrel sample
## 4653 Barrel sample
## 4654 Tre Vigne
## 4655 Barrel sample
## 4656 Barrel sample
## 4657 Barrel sample
## 4658 Babylons Toren
## 4659 La Flor
## 4660
## 4661 Barrel sample
## 4662 Barrel sample
## 4663 Barrel sample
## 4664 Barrel sample
## 4665 Barrel Sample
## 4666 Barrel sample
## 4667 Barrel sample
## 4668 Farráh
## 4669
## 4670 Brut Méthode Traditionelle Sparkling Wine
## 4671
## 4672 Vogelzang Vineyard
## 4673 Rotlack Kabinett Feinherb
## 4674 Cambium
## 4675
## 4676 Goosepen Block
## 4677 Baranoff Vineyard
## 4678
## 4679 Wehlener Sonnenuhr Spätlese
## 4680 Rüdesheimer Berg Rottland Spätlese
## 4681 Antiquum Vineyards
## 4682 Grenache
## 4683 Propiedad
## 4684 Two-Fourteen
## 4685 Lone Oak Vineyard
## 4686 The Flyer
## 4687 Freakshow
## 4688
## 4689
## 4690 Huntington
## 4691 Distraction
## 4692 Riker Vineyard
## 4693 1865 Limited Edition
## 4694 Library Selection Estate
## 4695 Rosé of
## 4696 Rosé of
## 4697 Pinot Noir
## 4698 Reserve
## 4699 Fincas Landaluce Crianza
## 4700 Cosme Palacio Vendimia Seleccionada
## 4701
## 4702
## 4703 Vinha do Putto Branco
## 4704 Oregon
## 4705
## 4706 Bricco Paradiso
## 4707
## 4708 Piesporter Goldtröpfchen Kabinett
## 4709
## 4710 Printi Riserva
## 4711 La Ribelle
## 4712 Crianza
## 4713 Reserve
## 4714 Fiorenza Cascina Meriame
## 4715
## 4716 Ürziger Goldwingert Spätlese
## 4717 Armujan
## 4718 Pomares
## 4719 Rosé of
## 4720
## 4721 Terra d'Alter
## 4722 Terra d'Alter
## 4723 Relax
## 4724
## 4725 Mt. Tabor
## 4726
## 4727
## 4728
## 4729
## 4730 3 Castas
## 4731 Seven Hills Vineyard Reserve
## 4732 Reserve
## 4733 C.S. Ridge Vineyard
## 4734 Hope's Cuvée
## 4735 Late Harvest
## 4736 Oak Ridge Vineyard
## 4737 Winemaker's Reserve
## 4738 Red Willow Vyd
## 4739 Reserve
## 4740 Limited Selection
## 4741 Ciel du Cheval
## 4742 Harvest Reserve
## 4743 Klipsun Vineyard
## 4744
## 4745 Ice Wine
## 4746 Winners Circle
## 4747
## 4748
## 4749 Silhouette
## 4750 Beckstoffer Ranch
## 4751 Reserve
## 4752 Otis Vineyard
## 4753 Reserve
## 4754 Seven Hills Vineyard
## 4755 Seven Hills Vineyard
## 4756 Heritage Reserve
## 4757
## 4758
## 4759 Reserve
## 4760
## 4761 Conde de Valdemar Reserva
## 4762 Lot 418
## 4763
## 4764 Tricata
## 4765 Alder Springs Vineyard Spirit Rock
## 4766 Innere Bergen
## 4767
## 4768 Blason de l'Evangile
## 4769
## 4770
## 4771
## 4772
## 4773
## 4774 de Uco
## 4775
## 4776 Riserva
## 4777 Made with organically grown grapes
## 4778 Mordthal
## 4779 Estate Grown
## 4780 Sulz
## 4781
## 4782 Bramante
## 4783 Lamm Reserve
## 4784 Renner Reserve
## 4785 Red Blend
## 4786
## 4787
## 4788
## 4789 Moscofilero
## 4790
## 4791 White Elephant
## 4792 15er
## 4793 Lunaria
## 4794 Massi di Mandorlaia
## 4795
## 4796
## 4797 Rosé of Malbec
## 4798 Electus
## 4799 Nessuno
## 4800
## 4801
## 4802
## 4803
## 4804
## 4805
## 4806 Conservancy
## 4807
## 4808 Falcon's Perch
## 4809 Laurenz and Sophie Singing
## 4810
## 4811 Hyde Vineyard
## 4812
## 4813 Kloof Street
## 4814
## 4815 Reserva
## 4816 Carte d'Or Brut
## 4817 Estate
## 4818 Barrel Fermented
## 4819 Thompson Vineyard Granddaddy
## 4820 Santa Barbara Highlands Vineyard
## 4821
## 4822
## 4823 Silhouette
## 4824 Amore
## 4825
## 4826 To Kalon Vineyard Reserve
## 4827
## 4828 Premier Cru Brut
## 4829
## 4830 Quail Series
## 4831 Range 30 West
## 4832
## 4833
## 4834
## 4835 Handley Vineyard
## 4836
## 4837 20 Anos Tawny
## 4838 Pear Valley Vineyard
## 4839 Riserva
## 4840 Crasto
## 4841 Avidagos
## 4842 Q Grand Reserve
## 4843
## 4844
## 4845 Reserva
## 4846
## 4847
## 4848 Vignalaparco
## 4849 Bonavita
## 4850 Castell Trocken
## 4851
## 4852
## 4853 Domaine des Hospices Civils de Lyon
## 4854
## 4855
## 4856 L'Ombre Fraîche
## 4857 Selección
## 4858 Gherardino Riserva
## 4859 Riserva
## 4860 Dry
## 4861
## 4862 Terra d'Alter
## 4863 Lone Tree
## 4864 Audaz Reserva
## 4865
## 4866 Reserve Century Vines
## 4867 Tinto
## 4868 Aeolus Estate
## 4869 Estate Bottled
## 4870 Sant Sadurní d'Anoia Rosé
## 4871
## 4872 Extra Brut Metodo Classico
## 4873 Semi-Sweet
## 4874 Quadrato
## 4875 Single Vineyard Selection
## 4876 Kreuznacher
## 4877 Lippo
## 4878
## 4879 Le Cataste
## 4880 Tinto
## 4881 Inferno Riserva
## 4882 Gran Reserva de Los Andes
## 4883 Reserva Estate Bottled
## 4884 Erdener Treppchen Spätlese
## 4885 Claudia Viognier-Assyrtiko
## 4886 II Crianza
## 4887 Luna Nascente Rosé Extra Dry
## 4888 Estate
## 4889 Coastal Collection
## 4890 Mat Kearney
## 4891 Reserva Privada
## 4892 Chungará Gran Reserva
## 4893 Indue
## 4894
## 4895 Estate Grown Reserve
## 4896 Firebrick Vineyard
## 4897 El
## 4898 Vau de Vey Premier Cru
## 4899 Timber Crest Vineyard
## 4900 Josie's Knoll
## 4901 Strummer
## 4902 Atoosa's Vineyard
## 4903 Ribeiro Santo
## 4904 Reserva Branco
## 4905 Dona Maria Amantis Reserva
## 4906 Palpite Reserva Branco
## 4907 Bordini
## 4908 Becker Family Dry
## 4909 Pasionado
## 4910 Muros Antigos
## 4911
## 4912 Trocken
## 4913 Viñas de Dávalos
## 4914 Estate
## 4915
## 4916 Rocca Rubia
## 4917 Monte Cascas Reserva
## 4918 Varanda do Conde
## 4919 Vinum Pro Virtus Arsenal
## 4920 Stoney Vine Vineyard
## 4921 Durell Vineyard Hayfield Block
## 4922 Terre Bianche
## 4923 Cuvée Claude Brosse
## 4924
## 4925 Stellato
## 4926 Pó de Poeira
## 4927
## 4928 Strawberry Fields
## 4929
## 4930 Petit
## 4931
## 4932
## 4933 Don David Finca La Maravilla #6
## 4934 The Estates
## 4935 Split Oak Estates
## 4936 Estate grown
## 4937 Bootjack Ranch
## 4938
## 4939 Branco
## 4940
## 4941 Pink Truck
## 4942 Monte Rosso Vineyard Reserve
## 4943
## 4944
## 4945 Cherokee Lane
## 4946
## 4947 Poggio Stella
## 4948 Premium
## 4949 JP Azeitão Tinto
## 4950 Moscato Spumante Champagne
## 4951 Les Vignes de Julia
## 4952 Reserve
## 4953
## 4954
## 4955 Protocolo Blanco
## 4956 La Multa Old Vine
## 4957 Ammonites
## 4958 Ensemble Lock Vineyard
## 4959
## 4960
## 4961 Brenntal Riserva
## 4962 Dellago
## 4963 Les Terrasses
## 4964
## 4965
## 4966 Estate Grown
## 4967 Els Ameliers
## 4968 Lindaflor
## 4969 Anciennes Vignes
## 4970 Sélection Jour de Fruit
## 4971
## 4972 Cicogna
## 4973 1865 Single Vineyard
## 4974 Cassiopeia Wentzel Vineyard Clone 777
## 4975 Pure
## 4976 La Paloma Larner Vineyard
## 4977 Floodgate Vineyard Rock Hill
## 4978 Neipperger Schlossberg Auslese
## 4979 Dry
## 4980 Accademia del Sole
## 4981 Amativo
## 4982
## 4983
## 4984 Old Vine
## 4985 Donna Chiara Campi Taurasini
## 4986 La Baronne
## 4987
## 4988
## 4989 Madeline
## 4990 Juanita Rosé
## 4991 Cinque Querce
## 4992 Torre Pieve
## 4993
## 4994 Rosemary's Vineyard
## 4995 Capitel San Rocco
## 4996 Swan
## 4997 Cunto
## 4998 Fine Sweet
## 4999 Le Petit Vice
## 5000 Reserva Especial
## 5001 Brauneberger Juffer Kabinett
## 5002 Morrison Lane
## 5003
## 5004
## 5005
## 5006
## 5007 Blend 105 Red Wine
## 5008 San Román
## 5009 The Creator
## 5010
## 5011
## 5012 Lewis Estate Vineyard
## 5013 La Côte Patriarche
## 5014
## 5015 Padrone
## 5016 Cask 23 Estate
## 5017 FAY Estate
## 5018 En Cerise Ovide
## 5019 The Beautiful
## 5020 Vintage VI
## 5021
## 5022
## 5023 Plus Single Vineyard Selection Vyborny Vineyard
## 5024
## 5025 Don Miguel Vineyard La Masía
## 5026 Hillside Select
## 5027 Stoneridge Vineyard
## 5028 Stagecoach Vineyard
## 5029
## 5030
## 5031 Champoux Vineyard
## 5032
## 5033
## 5034 Castelnau de Suduiraut
## 5035 Incógnito
## 5036
## 5037 Rangen de Thann Grand Cru Clos Saint-Théobald
## 5038 Kessler Grand Cru
## 5039 L'Ingenue Naggiar Vineyard
## 5040
## 5041 Cuvée Sauvage
## 5042 Obsidian Block Reserve
## 5043
## 5044 Canto de Apalta Cellar Selection
## 5045 Firehouse Vineyard
## 5046 Pora Riserva
## 5047
## 5048 Reserve
## 5049 Estate
## 5050 Complicated
## 5051 Zotzenberg Grand Cru
## 5052 Reserve
## 5053 Grande Réserve
## 5054 Estate
## 5055 Mural Reserva
## 5056 VT '08
## 5057 Founding Farmers
## 5058 Celilo Vineyard
## 5059 Dineen Vineyard
## 5060 Five Vineyards
## 5061 Creò Clajeux Vineyard
## 5062
## 5063 Smart Dog
## 5064 Periquita
## 5065 Pressenda
## 5066 Scarrone
## 5067 Iberian Series
## 5068 Barrel Select
## 5069 Lello
## 5070
## 5071 Ad Altiora
## 5072 The Hundreth Monkey
## 5073 The Blind Watchmaker
## 5074 Amado Sur Torrontés-Viognier-Chardonnay
## 5075 SP Blanc de Noir Brut
## 5076 Smooth Red
## 5077
## 5078 Le Grand Bouqueteau
## 5079
## 5080
## 5081 Rustique
## 5082
## 5083 Garnacha
## 5084
## 5085
## 5086
## 5087 Bussia
## 5088
## 5089 Hazard Hill
## 5090 Le Pich
## 5091 Private Selection
## 5092 Les Collines Vineyard
## 5093 First Edition
## 5094 Clone 113
## 5095 Guardián Reserva
## 5096 Limited Edition
## 5097
## 5098 Michel Lynch Bio
## 5099
## 5100 Unbridled
## 5101 Max Reserva
## 5102 Classic
## 5103 Vogelzang Vineyard
## 5104 Reserve
## 5105 Pequeñas Producciones Estate Bottled
## 5106
## 5107 Lampyridae Vineyards
## 5108 Natura
## 5109 Pommard Clone
## 5110 Hugo
## 5111 Hugo Rosé Sparkling
## 5112 Allegro
## 5113 Epico
## 5114 Lavignone
## 5115 Private Selection
## 5116 Taylor Family Vineyard
## 5117 Satzing
## 5118
## 5119 Sierra Mar Vineyard
## 5120 Hook Vineyard
## 5121 Smith Vineyard
## 5122 Strummer
## 5123 Tina's Block Maple Vineyards
## 5124 Spiegel
## 5125 Les Capitans
## 5126 Old Vines
## 5127 Gillesberg
## 5128 Indian Springs Ranch Reserve
## 5129 Ried Schnekenbichl Reserve
## 5130
## 5131 Côte du Py
## 5132 Don Melchor Puente Alto Vineyard
## 5133 Vieilles Vignes
## 5134 Schiefer Reserve
## 5135
## 5136 Vaucluse Lawrence Vineyards
## 5137
## 5138 Ilatraia
## 5139
## 5140
## 5141 Royale Los Lingues Vineyard
## 5142 Kreuzgang
## 5143 Pendulum
## 5144 Estate Grown
## 5145 Reserve
## 5146
## 5147
## 5148
## 5149
## 5150 Limited Release
## 5151
## 5152 Estate Grown
## 5153 Viña Borgia
## 5154
## 5155
## 5156
## 5157 Hickinbotham
## 5158 The Custodian
## 5159
## 5160
## 5161 Rodney's Vineyard
## 5162 Del Rio Vineyard
## 5163 Brut Rosé
## 5164 Estate Grown
## 5165
## 5166
## 5167
## 5168
## 5169 Dry
## 5170
## 5171 Envite Crianza
## 5172
## 5173
## 5174 Necessity Red
## 5175
## 5176 Terrassen Federspiel
## 5177 Estate
## 5178
## 5179
## 5180 Jacob-Hart Vineyard
## 5181
## 5182
## 5183 Hollis
## 5184
## 5185
## 5186
## 5187 Sec
## 5188 Varron
## 5189 A la Percenette
## 5190
## 5191
## 5192 Heritage Single Vineyard
## 5193 Domaine des Côtes Blanches
## 5194 Eiswein
## 5195
## 5196 M5
## 5197 Capatosta
## 5198
## 5199 Riserva
## 5200 Branco Reserva
## 5201
## 5202 Small Lot Collection
## 5203 David Vineyard Reserve
## 5204 Les Grands Elevages
## 5205
## 5206 Saulheimer Kalkstein Trocken
## 5207 Schoenenbourg Grand Cru
## 5208 Maffei Vineyard
## 5209 Allegracore Rosso
## 5210 Estate
## 5211 Bacigalupi Vineyard
## 5212 Laumersheimer Alte Reben Trocken
## 5213 Valdehermoso Crianza
## 5214 Estate Riservata
## 5215 Kaseler Dominikanerberg Auslese
## 5216 Bergfeld
## 5217 Morisoli Vineyard
## 5218 Coury
## 5219 Select Whole Cluster
## 5220 Samantha's
## 5221 Figliodienneenne
## 5222 Meyer Vineyard
## 5223 Kill Hill
## 5224 Caroline's Cuvée
## 5225 Elton
## 5226 Reserve Gimblett Gravels
## 5227 Soreka Special Reserve
## 5228
## 5229 Tantrum
## 5230 Cisne
## 5231
## 5232
## 5233 Small Town
## 5234 Railyard
## 5235 Les Chaumées Premier Cru
## 5236 Foray
## 5237
## 5238
## 5239 Estate
## 5240 Nectar Dulce
## 5241
## 5242 Terre de Silex
## 5243 Riserva
## 5244 Crown Block
## 5245 D2
## 5246 Enclos de Maimbray
## 5247 Les Blanchais
## 5248 Fourchaume Premier Cru Vieilles Vignes
## 5249
## 5250
## 5251 L' Hereu
## 5252 Salco
## 5253 Silver Pines Vineyard
## 5254
## 5255
## 5256 Les Brunettes et Planchots
## 5257 Miljenko's Selection Estate Grown
## 5258 La Dame de Châtenoy
## 5259 The Deal Sundance
## 5260 Estate Reserve
## 5261
## 5262
## 5263
## 5264 Grand Reserve Hand Picked Grapes
## 5265 San Lorenzo
## 5266 Villa Angela
## 5267
## 5268 Luigi Ghislieri
## 5269 Estate Vineyard
## 5270 Barriques
## 5271 Tradition
## 5272
## 5273 Lola Evergreen Vineyard
## 5274 Nelson Vineyards
## 5275 Riserva Sassi Neri
## 5276 Riesling 10 Hanging Delta Vineyard
## 5277 Cuvée Saint-Jacques
## 5278 Boya
## 5279 Heideboden Rot
## 5280
## 5281 Sunrise Hill Vineyards
## 5282 Primo
## 5283
## 5284 Dry
## 5285 Estate
## 5286 Del Pozzo Buono
## 5287 White Hawk Vineyard
## 5288 Barrel Select
## 5289 Gorgeous Syrah Destiny Ridge Vineyard
## 5290 Nussberg
## 5291
## 5292
## 5293 Solomon Hills Vineyard
## 5294 Odyssey
## 5295
## 5296 Paisley
## 5297
## 5298 Vortex
## 5299 Pieve dei Monaci
## 5300
## 5301
## 5302
## 5303
## 5304
## 5305
## 5306 Three Monks Fumé Blanc
## 5307 La Togata
## 5308
## 5309 Reserva
## 5310
## 5311
## 5312 Serres Tempranillo-Garnacha
## 5313 Le Ellere
## 5314 Cuvée Orleans
## 5315 Mayacaba
## 5316 Reserve
## 5317 Rosado Garnacha
## 5318
## 5319
## 5320 Laurenz and Sophie Singing
## 5321 White Hill
## 5322
## 5323
## 5324
## 5325 Gran Reserva
## 5326 Cave de Saint-Roch les Vignes
## 5327
## 5328 Proprietor's Reserve
## 5329 Methode Ancienne
## 5330 Twelve Clones
## 5331 Ormilles
## 5332 Domaine de la Rabiotte
## 5333 Sobra
## 5334
## 5335 L de Lyeth
## 5336 Old Vines
## 5337 Is Solinas
## 5338
## 5339 Villa Solais
## 5340
## 5341 Sables d'Azur
## 5342 Patricia Ortelli
## 5343 Perle de Rosé
## 5344
## 5345
## 5346
## 5347 7200
## 5348 Kies
## 5349
## 5350 Giovin Re
## 5351 1846
## 5352
## 5353
## 5354 Franciscus Messwein
## 5355
## 5356
## 5357
## 5358
## 5359
## 5360 Strassertaler
## 5361 Celilo Vineyard
## 5362 I Vasari Old Vines
## 5363 Reserve
## 5364 Hope
## 5365 Unoaked
## 5366
## 5367 Clayvin Single Vineyard Selection
## 5368
## 5369 Amansio Passito
## 5370
## 5371
## 5372 San Giovanni
## 5373 Bellezza Gran Selezione
## 5374 Reserve
## 5375
## 5376
## 5377 Old Vine
## 5378 California Square
## 5379 Petit Bourgeois
## 5380 Old Boys
## 5381 Rufo Branco
## 5382 Estate Bottled Beerenauslese
## 5383 Wetzel Family Estate
## 5384 Alexander School Reserve
## 5385 Estate
## 5386
## 5387
## 5388 Quadriga
## 5389 Tradition
## 5390 Site Archive Norte
## 5391 Brut
## 5392 Hitching Post Cork Dancer
## 5393
## 5394 Brut
## 5395 Reserva Ruby
## 5396
## 5397
## 5398
## 5399
## 5400 Crow Ridge Vineyard Old Vine
## 5401 Riserva
## 5402 Cortijo de Balsillas
## 5403
## 5404 Reserve
## 5405
## 5406 Crianza
## 5407
## 5408 Once Upon a Time
## 5409
## 5410 Barda
## 5411 Terroir du Mâconnais
## 5412 Branco
## 5413 Don Baltazar
## 5414 Monte Cascas Reserva
## 5415 Sorano
## 5416 1769
## 5417 Premium
## 5418
## 5419 Les Mûres
## 5420
## 5421 Fresh As A Daisy
## 5422 Ghielmetti Vineyard
## 5423 Croft Vineyard
## 5424
## 5425 Riserva
## 5426 Finca La Escuela La Arena
## 5427 Cherokee Lane
## 5428
## 5429 Blue Label
## 5430 Coleccion de Familia
## 5431
## 5432 Azul Portugal
## 5433 Uncaged
## 5434
## 5435 The Angel Oak
## 5436
## 5437 Oak Cask
## 5438 Grey [Glacier] Single Block
## 5439 Redwood's Edge
## 5440 A Lisa
## 5441 Premier Cru Réserve
## 5442 Fagher Brut
## 5443
## 5444
## 5445
## 5446 Le Pont
## 5447 Rosè Brut
## 5448 Super Alamedan
## 5449 La Roggia
## 5450 Brut
## 5451 Bin 27 Finest Reserve
## 5452 Bradford Mountain Vineyards
## 5453
## 5454 Reserve Ruby
## 5455 Six Grapes Reserve
## 5456 Tre Venti Brut Millesimato
## 5457 Brut Cuvèe 4 Millesimato
## 5458 Villa Crespia Iacono Riserva Dosaggio Zero
## 5459 Extra Brut
## 5460
## 5461 Cuvée des Moines Brut Blanc de Blancs
## 5462
## 5463
## 5464
## 5465 La Encantada Vineyard
## 5466 Hammerklavier McIntyre Vineyard Pinot Noir-Dornfelder
## 5467 Selección
## 5468 Corralillo
## 5469
## 5470 Mango's Vineyard
## 5471 Sonoma Stage VIneyard
## 5472 Purety
## 5473 Reserva
## 5474 Estate
## 5475 Montetinello
## 5476
## 5477
## 5478 Serrano
## 5479 Sepia Reserva
## 5480 Whole Cluster Fermented
## 5481
## 5482
## 5483 Sauce
## 5484 Estate Grown
## 5485 Tributo Single Vineyard Block #Algarrobo
## 5486 Ma Vie Carol
## 5487 Rouge de Léoube
## 5488 Breezette
## 5489 Vie Vité
## 5490 Collezione
## 5491 Grand Cru
## 5492 Poggio Doria
## 5493 Gotschelle Reserve
## 5494 Klausen
## 5495 Seven Hills Vineyard
## 5496 Kidd Ranch
## 5497 Four Soil Melange
## 5498 Golden Erd
## 5499 Christina
## 5500
## 5501 The Discussion
## 5502 Bien Nacido Vineyard
## 5503 Guado de' Gemoli
## 5504 Strasser Winberge Reserve
## 5505 Lamm Reserve
## 5506
## 5507
## 5508 Gaisberg Reserve
## 5509 Reserve
## 5510 Hundspoint
## 5511 Seeberg
## 5512
## 5513 The Angel Oak Reserva
## 5514 Mandel-Höh
## 5515 Sauberg Tradition
## 5516 Gran Reserva Estate Bottled
## 5517 Hybrid
## 5518 Vale das Donas
## 5519 Reserva Espiritu de Los Andes Estate Bottled
## 5520 Reserva Encinos
## 5521 Herdade dos Templários
## 5522 Reserve
## 5523
## 5524
## 5525
## 5526 Roble
## 5527
## 5528 Under the Sea
## 5529
## 5530 Crianza
## 5531 Coastal Cool Climate Estate Bottled Cabernet Franc
## 5532 Hermanos Lurton
## 5533
## 5534 Classic Series
## 5535 Garnatxa Blanca
## 5536 Estate
## 5537 Brut
## 5538
## 5539 Grand Reserve
## 5540
## 5541 OVG
## 5542 Puerta Vieja Blanco
## 5543 Select Terroir
## 5544
## 5545 Menguante
## 5546 Dr. L
## 5547 Silver Unoaked
## 5548 Oley Late Harvest Sweet
## 5549 Van der Kamp Vineyard
## 5550 Chakalaka
## 5551 Kirchleiten
## 5552 Cuvée Pierre le Grand
## 5553 Cuvée Jean
## 5554 Patiement
## 5555 Campanaro
## 5556 Blue Melosa
## 5557 Les Clos
## 5558 Reserve
## 5559 Cobblers Hill
## 5560 Clos Triguedina
## 5561 Charming
## 5562 Confini
## 5563 Torveto
## 5564 Reserva Old Vine
## 5565
## 5566 Penon
## 5567 Judge Family Vineyard
## 5568
## 5569 Batàr
## 5570 Trisagio
## 5571 Hofstatt
## 5572 Wholer Vineyard
## 5573 Château de Flore
## 5574 Mint Haven
## 5575 Penon
## 5576
## 5577 Cuma Organic
## 5578 Le Moie
## 5579 Garys' Vineyard
## 5580 Cà del Magro
## 5581 Select Late Harvest
## 5582 Rominger Vineyard
## 5583 Ice
## 5584 Gala 2
## 5585 Ai Palazzi
## 5586 Selections
## 5587
## 5588
## 5589 Thérèse Vineyards Estate
## 5590 le Pietre
## 5591 Ciel du Cheval Vineyard
## 5592
## 5593 Toretta Classico
## 5594 Rudesheimer Kabinett Dry
## 5595
## 5596 EQ
## 5597
## 5598 Orzada
## 5599 Reserve
## 5600 Wallhausen Johannisberg GG Trocken
## 5601 Alloro Vineyard
## 5602 Dry
## 5603
## 5604 Take Flight, Artists Collection Limited Edition
## 5605 I Saltari Le Vigne di Turano
## 5606 Reserve
## 5607 Blanc de Blancs
## 5608
## 5609 La Coeta
## 5610 Campi Magri
## 5611
## 5612 Cuvée Brut
## 5613 Semi-Dry
## 5614
## 5615 Nimbus Single Vineyard
## 5616 Westhofener Trocken
## 5617 Zovo
## 5618
## 5619
## 5620 Les Brulés
## 5621 Morenita Cream
## 5622 Buck's Ten Point
## 5623 Innere Bergen
## 5624 Louis
## 5625
## 5626 Nude
## 5627 Eiswein
## 5628 Gobernador Oloroso Seco
## 5629 Radici
## 5630 Suscol Vineyard
## 5631 Obsidian Ridge Vineyard
## 5632 Redwood Ranch
## 5633 A' Scippata Riserva Costa d'Amalfi
## 5634 Sadie Upton
## 5635 Magno Megonio
## 5636 Sanford & Benedict Vineyard
## 5637 Les Folatières Premier Cru
## 5638 Estate Reserve
## 5639 Le Pousseur
## 5640
## 5641 Real De Asúa
## 5642 Cutizzi
## 5643 Estate
## 5644 Riserva
## 5645 V.T.S.
## 5646 Brut Rosé
## 5647
## 5648 Clos des Poruzots Premier Cru
## 5649 Kittmannsberg Reserve
## 5650 Per Sempre
## 5651 Perlato del Bosco
## 5652 Kremser Sandgrube Reserve
## 5653 Kremser Wachtberg Reserve
## 5654 Big Wood Zin
## 5655 Reserve
## 5656 Reserve Series Alcaeus Berger Vineyard
## 5657
## 5658 Blue Terrace Vineyard Reserve
## 5659 Sexton Hill Vineyard Estate Grown Estate Bottled
## 5660 Cuvée Terre de Lumière
## 5661
## 5662 Millepassi
## 5663
## 5664
## 5665 Steel
## 5666 Domaine de Roche Noire
## 5667
## 5668 Cuvée de Lys
## 5669 The Fumé
## 5670 Reserve
## 5671 Sondraia
## 5672 Pfaffenberg Reserve
## 5673 Reserve
## 5674 Fiddlestix Vineyard
## 5675 Steinfeld
## 5676
## 5677
## 5678 Y3 Taureau
## 5679 The Estates
## 5680 Evergreen Vineyard
## 5681 Traditions
## 5682 Gelber Muskateller Klassik
## 5683 Diermannsee
## 5684 Niclaire
## 5685 Sudisfà Riserva
## 5686
## 5687 Lone Oak Vineyard
## 5688
## 5689 Opale Demi-Sec
## 5690 Brut Rosé
## 5691 Casot Riserva
## 5692
## 5693 Reserve
## 5694 Cuvée Reine
## 5695
## 5696
## 5697
## 5698
## 5699 Estate
## 5700
## 5701 Grazia
## 5702 Bouche d'Or
## 5703
## 5704 Spiegel
## 5705 Riserva
## 5706
## 5707
## 5708
## 5709 Bergdistel Smaragd
## 5710
## 5711 Federspiel Selection
## 5712
## 5713 Series
## 5714 Poggio Abate Riserva
## 5715 Scrio
## 5716
## 5717
## 5718
## 5719 Carruades de Lafite
## 5720
## 5721 La Dame de Montrose
## 5722
## 5723 Estate
## 5724
## 5725
## 5726 Langenloiser
## 5727 Rocche di Castiglione
## 5728 Bunkhouse
## 5729 Special Reserve
## 5730 Q
## 5731 Chapter 6
## 5732 Brique Prestige
## 5733 Hillside Estate
## 5734 Cab 5 Rockpile Ridge
## 5735
## 5736 Cuvée Garrigues
## 5737 Clos Mireille
## 5738 Anas-cëtta
## 5739 33 Degrees North BDX Gracie Hill Vineyard
## 5740 Shadow
## 5741
## 5742 Castel Ringberg Riserva
## 5743 Georg Mumelter
## 5744 Mohr-Fry Ranches
## 5745
## 5746 Austrian Pepper
## 5747 Château Saint Hippolyte
## 5748
## 5749 Southern
## 5750
## 5751
## 5752
## 5753 Lindsay's Vineyard
## 5754 Les Beaux Monts Premier Cru
## 5755
## 5756 Arnaut Boushey Vineyard
## 5757 Walker
## 5758 Osso Balenda Vineyard
## 5759 Sexton Hill Vineyard
## 5760
## 5761 Estate Grown Rosé of
## 5762 Conocul Ambrozy
## 5763 Ferrington Vineyards
## 5764 Nobles Vineyard
## 5765 Leimental
## 5766 Calcaire
## 5767 Terroir d'Alsace
## 5768 Clos Mireille
## 5769 Max Reserva
## 5770 Goosebury
## 5771 Escolle Road Vineyard
## 5772 Derbyshire Vineyard
## 5773 Ame de la Vigne
## 5774 Durell Vineyard
## 5775 Scarnocchio
## 5776
## 5777 Vigna Garzon
## 5778 Pierce Ranch
## 5779 Costasera
## 5780
## 5781 District Collection
## 5782
## 5783
## 5784
## 5785 Réserve du Château
## 5786
## 5787 Reserva
## 5788 Chento
## 5789
## 5790
## 5791
## 5792 Conde Valdemar
## 5793
## 5794
## 5795
## 5796 Authentic & Chic
## 5797
## 5798 Grenache
## 5799 La Planta
## 5800 Tinto
## 5801
## 5802
## 5803 No 2 de Saint-Martin
## 5804
## 5805 Marquis de Brim Grande Réserve
## 5806 Estate
## 5807
## 5808
## 5809 Stargazer Vineyard
## 5810 Serras de Azeitão Seleção do Enólogo Branco
## 5811 Quinta da Soalheira Branco
## 5812 Réserve
## 5813 Oscar's Branco
## 5814
## 5815 10-Years-Old Tawny
## 5816
## 5817 Protocolo
## 5818
## 5819 Vértice Cuvée Reserva Brut
## 5820 Sauvignon Blanc-Moscatel
## 5821 Misterio
## 5822 Reserve
## 5823 Meio Seco Sparkling White
## 5824 Tres Obispos Mencía
## 5825
## 5826
## 5827 Alabastro Branco
## 5828 Anne de K Brut Rosé
## 5829 Vila Jardim
## 5830 Serbal
## 5831 Honoro Vera
## 5832 The Bolter
## 5833 Coroa d'Ouro Branco
## 5834 Sete Vales Branco
## 5835 Contos da Terra
## 5836
## 5837 Cerretta
## 5838
## 5839
## 5840 Concerto
## 5841 Stefano Vineyard
## 5842 Camp 4 Vineyard
## 5843 Iperico
## 5844
## 5845
## 5846 Ciel du Cheval
## 5847 Glacial
## 5848 Founders' Estate
## 5849
## 5850 Fonte do Ouro
## 5851 Reserva Tinto
## 5852 Palha Canas
## 5853 Brut
## 5854
## 5855 7ème Génération
## 5856 Dompter la Bête
## 5857
## 5858 Le Cèdre Vintage
## 5859
## 5860 Prestige
## 5861
## 5862 Lila
## 5863
## 5864 Cresta Ridge Vineyard Estate
## 5865 Coryelle Fields Vineyard
## 5866
## 5867
## 5868
## 5869 Block 9 114
## 5870 SRB
## 5871 Swig Vineyard
## 5872 Buchignani Vineyard
## 5873
## 5874 Signature Series
## 5875
## 5876 Gran Reserva
## 5877 La Masia Don Miguel Vineyard
## 5878 All In
## 5879
## 5880 Platinum
## 5881 Proprietary
## 5882
## 5883 Estate
## 5884
## 5885 Winemaker's Blend
## 5886 Ramato Quattro Bassi Ranch Vineyard
## 5887
## 5888
## 5889 Moonlight Sonata
## 5890 Blanc de Noirs
## 5891 Kabinett
## 5892
## 5893
## 5894 Port
## 5895 Charles Vineyard
## 5896 Zaphy
## 5897
## 5898
## 5899
## 5900 Barrel Fermented
## 5901 Viña Famatina
## 5902 Natal
## 5903
## 5904
## 5905
## 5906
## 5907 Grand Reserve
## 5908
## 5909
## 5910 Colección
## 5911
## 5912
## 5913 Monument Tree
## 5914 Wentzel
## 5915 Ranga Ranga Estate Grown Certified Sustainable
## 5916 Genesis
## 5917
## 5918
## 5919 T23 Unoaked
## 5920
## 5921
## 5922 Sonas
## 5923 Cuvée
## 5924
## 5925 Rockaway
## 5926 Glaze
## 5927 Fred Estate
## 5928
## 5929 Blanc de Noirs
## 5930 Cove Cuvée
## 5931
## 5932
## 5933
## 5934
## 5935 Blanc de Noirs Methode Champanoise Estate Bottled
## 5936 Brut Methode Champanoise Estate Bottled
## 5937
## 5938
## 5939
## 5940 Cuvée Prestige
## 5941 Les Hauts de Larrivet Haut-Brion
## 5942
## 5943
## 5944 Cuvée Tradition
## 5945
## 5946 Fools Gold
## 5947
## 5948
## 5949 Harmonie de Gascogne
## 5950
## 5951 Estate Bottled
## 5952 Reserva
## 5953
## 5954 Cold Creek Ranch
## 5955 Adrian's Reserve
## 5956
## 5957 Thomas Barton Réserve
## 5958
## 5959
## 5960 Mediterranean Red
## 5961
## 5962
## 5963
## 5964 Somerston
## 5965 Priest Ranch
## 5966 Rosaenovae
## 5967 Amabile
## 5968 Les Princes Abbés
## 5969
## 5970 Rosso di Gulfa
## 5971
## 5972
## 5973 Caeles Biologico
## 5974 181
## 5975 Passobianco
## 5976 Hybrid
## 5977 Eakle Ranch
## 5978
## 5979 Reserve
## 5980 Coastal Cool Climate Wine Single Vineyard
## 5981 Wildcat Vineyard
## 5982 del Marchese
## 5983 Nimbus Single Vineyard
## 5984
## 5985
## 5986 Al Qasar
## 5987
## 5988 Reserve
## 5989 Codalunga
## 5990 Alisos Vineyard
## 5991 Hand Harvested Estate Bottled
## 5992 Alègre
## 5993 Enrico IV Bianco
## 5994 Blanc
## 5995
## 5996
## 5997 D'Or
## 5998 Russian Cuvée
## 5999
## 6000
## 6001
## 6002 Old Vine Red Lot 66
## 6003 Rosso Campofiorin Oro
## 6004 Freakshow
## 6005
## 6006 Roble
## 6007 Single Vineyard
## 6008 Late Bottled Vintage
## 6009
## 6010 Petrucci
## 6011 Sierra Madre Vineyard
## 6012
## 6013 Martin Vineyards
## 6014 Late Bottled Vintage
## 6015 Evolution Big Time Red 6th Edition
## 6016 La Roverina
## 6017 Foggy Mountain
## 6018 Estate Grown
## 6019 Walala Vineyard
## 6020 Tondre
## 6021 Lampante Riserva
## 6022 Cholqui
## 6023
## 6024
## 6025 Quinta da Aveleda
## 6026 Long Valley
## 6027 Petit Verdot-Merlot
## 6028 Special Cuvée Brut
## 6029 Balcombe Vineyard
## 6030 Demoiselle Cuvée 21
## 6031 Vintage Select
## 6032 Temperance Hill Vineyard
## 6033 Premier Cru Blanc de Blancs Brut
## 6034 Russian Cuvée
## 6035
## 6036 Reserve
## 6037 Nuns Canyon
## 6038 Brut de Noirs
## 6039 Brut
## 6040 Cordon Rouge Brut
## 6041 Reserve
## 6042 Les Vigneaux Corral Creek Vyd
## 6043 Spirit House
## 6044 Blanc De Blancs
## 6045 Reserve
## 6046
## 6047 Louise Vineyard
## 6048 Reserve
## 6049 Brut
## 6050
## 6051 Royal Cuvee Brut
## 6052 20th Anniversary
## 6053 Barrel Select
## 6054 Windhill
## 6055 Bryan Creek Vineyard
## 6056 Brut Rosé
## 6057
## 6058 Le Corti
## 6059 La Cabane aux Oiseaux
## 6060
## 6061
## 6062 Heather Hill Estate
## 6063 Reminiscence
## 6064
## 6065 Mocenni Gran Selezione
## 6066 Embocadero
## 6067
## 6068 Baruffo
## 6069 Riserva
## 6070 Riserva
## 6071 The Rules of Fair Play
## 6072 Qualité Extra Brut
## 6073
## 6074 Espirit de Tablas
## 6075 Ciel du Cheval Vineyard
## 6076
## 6077 Abadia de San Campio
## 6078
## 6079 Red Cedar Vineyard
## 6080 Donatus
## 6081 Coto de Imaz Reserva
## 6082
## 6083
## 6084
## 6085
## 6086 Hermon
## 6087 Yarden
## 6088 Peacock Patch Reserve
## 6089
## 6090
## 6091 Estate Grown
## 6092
## 6093
## 6094 Estate
## 6095
## 6096 Montersino
## 6097 Felino
## 6098 Chérie Sparkling Pinot Noir Rosé
## 6099
## 6100
## 6101
## 6102 Noras
## 6103 Cascas Winemaker Selection
## 6104 Monte Cascas Branco
## 6105 Monte Cascas Colheita
## 6106
## 6107 Adega de Pegões
## 6108
## 6109 Domaine de la Garenne
## 6110 Conde de Vimioso Extra Bruto
## 6111 Conde de Vimioso Colheita Seleccionada
## 6112 Reserve
## 6113 Dule
## 6114 Paradiso
## 6115 Michlovský
## 6116
## 6117 Cactus Hill Estate
## 6118
## 6119 Winderlea Vineyard
## 6120 Reserva
## 6121 Vendimia Seleccionada
## 6122 Brunate
## 6123
## 6124
## 6125
## 6126 Renegade Ridge Estate
## 6127 Whole Cluster Cuvée
## 6128 U.V. Lucky Well Vineyard
## 6129 Trinity-Cass Vineyards
## 6130 Ivoire et Ebène Premier Cru Brut
## 6131 Esprit Grand Cru Brut
## 6132 Casteel
## 6133 Estate
## 6134 Foral de Evora Tinto Colheita
## 6135 del Comune di Serralunga d'Alba
## 6136
## 6137 Côte de Lechet Premier Cru
## 6138
## 6139 Cannubi
## 6140 Rochioli-Allen Vineyards Oak Puncheon Fermented
## 6141 del Comune di Serralunga d'Alba
## 6142 Rojo del Patron
## 6143 Rancho La Vina
## 6144 Lazy River Vineyard
## 6145 Carobric
## 6146
## 6147 District Collection
## 6148 Garzini Ranch
## 6149 Whispering Angel
## 6150 Blanc de Lynch-Bages
## 6151
## 6152 Hyland
## 6153 Le Mont Aimé Premier Cru Blanc de Blancs Brut
## 6154 Pioneer Block #3 43 Degrees
## 6155
## 6156 Kuyen
## 6157 Cuvée Tradition
## 6158 Rouge
## 6159
## 6160 Cartizze
## 6161 Round Mountain Volcano
## 6162
## 6163
## 6164
## 6165 Purity
## 6166
## 6167 Maresh Vineyard
## 6168 Petit Rimauresq Grenache-Cinsault
## 6169 Brut de Nominé
## 6170 Pink Brut
## 6171 Peter's Delight
## 6172
## 6173 Reserve
## 6174
## 6175 Amabile
## 6176
## 6177 Crianza
## 6178
## 6179 Lightly Oaked
## 6180 Collection
## 6181 Black Sheep
## 6182 La Villa de Maison Vialade
## 6183 Old Vine De Ambrogio Block
## 6184 Troupe
## 6185 Lagunilla
## 6186 J.D. Hurley Griva Vineyard
## 6187
## 6188 Lambrusco I Quercioli Secco
## 6189
## 6190 Lollipop Hill Estate Bottled
## 6191 Black Road
## 6192 Rombone
## 6193 Heart of the Hill
## 6194 Les Perriers
## 6195 Vieilles Vignes
## 6196 Lavignone
## 6197 Au Brûlé
## 6198 Tenebrae Stillwater Creek Vineyard
## 6199 William Vigne
## 6200 Dry
## 6201 Perlita
## 6202
## 6203 Ciconia Reserva
## 6204 Dame Nature
## 6205
## 6206
## 6207 Santa Celina
## 6208 Casal Garcia Tinto
## 6209
## 6210 Pluma
## 6211 Rosado of
## 6212 Estate Bottled
## 6213
## 6214 Blue Quail
## 6215
## 6216 Pas si Petit
## 6217
## 6218
## 6219 Meadowlark Vineyard
## 6220 Salsus Lua Cheia em Vinhas Velhas
## 6221
## 6222
## 6223
## 6224
## 6225 Comfort Wine
## 6226 Cabriz Colheita Seleccionada
## 6227 Brigando
## 6228 Brigando
## 6229 Casa do Lago Branco
## 6230 Cray
## 6231 Vernatsch
## 6232 Pressoni
## 6233 Glen Riserva
## 6234 Enxertia
## 6235 Estate
## 6236
## 6237
## 6238 Chemin de Fleurs
## 6239 Clos des Briords Sur Lie
## 6240
## 6241 Sur Lie
## 6242 Hochheimer Domdechaney Trocken Gold Cap
## 6243
## 6244 Castel Ringberg
## 6245
## 6246 Juffer Trocken GG
## 6247 Grey Glacier Single Block Trinidad Vineyard
## 6248 Floodgate
## 6249 Ellis Vineyards
## 6250 Abreu Callado Reserva
## 6251
## 6252 Orquestra Reserva
## 6253 Il Rivale
## 6254 Marquesa da Alorna Reserva Branco
## 6255 Madrigal
## 6256 Late Bottled Vintage
## 6257 Dickerson Single Vineyard
## 6258
## 6259 Old Vine
## 6260 Passion
## 6261
## 6262 Harris Vineyard
## 6263 Reserve
## 6264 Quail Hill Vineyard
## 6265 Estate Vineyard
## 6266 Sori Bricco Vineyard
## 6267 Eaglepoint Ranch
## 6268 Lucille Late Harvest
## 6269 Appassionata
## 6270 Bien Nacido Vineyard
## 6271 Limited
## 6272 Harmonie
## 6273 Zeltinger Sonnenuhr Auslese
## 6274
## 6275 Domaine
## 6276 La Serenité
## 6277 Four Soil Melange
## 6278 Selleck Vineyard
## 6279 Marguerite
## 6280 Vineyard 2131
## 6281 Susanna's Vineyard
## 6282 Cuvée Orleans
## 6283 Whistler Vineyard
## 6284 Rochioli Vineyard
## 6285 Révélation
## 6286 Olivet Lane Vineyard
## 6287
## 6288
## 6289 Sin Zin
## 6290
## 6291 Bigode
## 6292 La Forcine
## 6293
## 6294
## 6295 R Collection Lot No. 7 Field Blend
## 6296 Reserva 3S
## 6297
## 6298 Gilda
## 6299
## 6300 California Square
## 6301
## 6302
## 6303 Brut
## 6304 White
## 6305
## 6306
## 6307
## 6308 Lips
## 6309
## 6310 Riserva Roggiano
## 6311 Unoaked
## 6312
## 6313 Semonnay
## 6314 Ghirardelli Heritage Old Vine
## 6315 Riserva
## 6316 Dirupo Brut
## 6317 Trésor Brut
## 6318 Château de la Ragotière Sélection Vieilles Vignes Sur Lie
## 6319 Lingenfelder Vineyard
## 6320 Barrel Fermented
## 6321 Château de la Ragotière Cuvée Amélie Sur Lie
## 6322 Primo Franco Dry
## 6323 Cut Bank Estate Vottavo
## 6324 Bannockburn
## 6325 Symphonie en P
## 6326 Prestige Rosé
## 6327
## 6328 Plié
## 6329 Z
## 6330 Fusion V
## 6331 Radian Vineyard
## 6332 Gloeckelberg Grand Cru
## 6333
## 6334
## 6335 Blanc de Noirs Pinot Meunier Brut
## 6336 L'Eloquente Brut
## 6337 Hatschbourg Grand Cru
## 6338 Oltreval Rive di Guia Zero
## 6339 Brut Nature Grand Cru
## 6340 152
## 6341 Comes a Time Alta Colina Vineyard
## 6342
## 6343 District Collection
## 6344 Gran Reserva Edición Limitada
## 6345
## 6346 Old Vine Rinaldi Vineyard
## 6347
## 6348 Laumersheimer Vom Kalksteinfels Trocken
## 6349 30 Year Old White
## 6350 Fiachetto XL Vineyard
## 6351
## 6352 Montanello
## 6353 Estates Reserve
## 6354 Mont de Milieu Premier Cru
## 6355 St. Peter's Church
## 6356 Sciala Superiore
## 6357
## 6358 Vaillons Premier Cru
## 6359 Stem Head
## 6360 Bin 28 Kalimna
## 6361
## 6362 Riverwash
## 6363 Domaine Long-Depaquit Les Blanchots Grand Cru
## 6364 Domaine Long-Depaquit Vaucoupin Premier Cru
## 6365 Ovello Vigna Loreto
## 6366 Langley Vineyard
## 6367 Beaureagard Ranch
## 6368 Punto Final Gran Edición Limitada
## 6369
## 6370 Altenasso
## 6371 SJR Vineyard
## 6372 Les Fourneaux Premier Cru
## 6373 Vaulorent Premier Cru
## 6374 Entity
## 6375 Tons de Duorum
## 6376 Appassionatamente Rosso
## 6377 Bergkelder Selection
## 6378 Gouleyant
## 6379 Cold Fusion
## 6380 Certified Biodynamic
## 6381
## 6382
## 6383
## 6384 Homestead Block
## 6385 Duas Quintas Branco
## 6386 Cuvée
## 6387 Barão de Figueira
## 6388 Nature
## 6389 La Fleur Lily
## 6390
## 6391 Conde Vimioso Colheita Seleccionada
## 6392 Pigmentum
## 6393
## 6394 Estate
## 6395 MIO
## 6396
## 6397 Familia Navarro Torrre Grand Gold Medal
## 6398 Cuvée Viviana
## 6399 Terroir Único Pinot Noir
## 6400 Convento da Vila
## 6401 Marquês de Marialva Rosé Bruto
## 6402 Reserve
## 6403 Hundred Point
## 6404
## 6405 Doga delle Clavule Rosato
## 6406 Cabernet Sauvignon de Pennautier
## 6407 Terra Solinas
## 6408
## 6409 Essencia Kosher Trockenbeerenauslese
## 6410
## 6411
## 6412 Private Reserve
## 6413
## 6414
## 6415 The Stones
## 6416
## 6417 Bianco
## 6418 Aussières Blanc
## 6419
## 6420
## 6421
## 6422 Barrel Complete
## 6423
## 6424
## 6425 Riserva
## 6426
## 6427 La Grande Année Brut
## 6428
## 6429
## 6430
## 6431
## 6432 Beckstoffer Dr. Crane Vineyard
## 6433 Beckstoffer To Kalon Vineyard
## 6434
## 6435
## 6436
## 6437 Vigna Paganelli Riserva
## 6438 Termanthia
## 6439 Vieilles Vignes de Cramant Grand Cru
## 6440 Poggio all'Oro Riserva
## 6441
## 6442
## 6443
## 6444
## 6445
## 6446 Poggio alle Mura Riserva
## 6447
## 6448
## 6449 Three Twins Vineyard
## 6450 Hommage à Louis Tarlant Brut
## 6451
## 6452 1
## 6453 Guglielmi di Jago
## 6454 Les Vieilles Vignes Montmains Premier Cru
## 6455
## 6456 Levitation
## 6457 The Enchantress Old Vine
## 6458 The Funkadelic
## 6459 Cinghiale Vineyard
## 6460 Les Millandes Premier Cru
## 6461 Santenots Premier Cru
## 6462 Final-Final
## 6463 Babbitt
## 6464 I Fondatori Riserva
## 6465 Caligo Sweet White Wine
## 6466 Ice Wine
## 6467 I Progni
## 6468 Wild Eyed
## 6469
## 6470 Campo Leòn
## 6471 Meursault Blagny Premier Cru
## 6472 Rockpile Road Vineyard
## 6473
## 6474 Levitation
## 6475 Sundance
## 6476 Proprietary
## 6477 Arnaut
## 6478 Vive-la-Joie Brut
## 6479
## 6480
## 6481 Terra Grande Branco
## 6482 Meruge
## 6483 Año Cero
## 6484 Cuvée Blanc
## 6485 Montefresco
## 6486
## 6487
## 6488 District 3
## 6489
## 6490 Estate Reserve
## 6491
## 6492
## 6493 Monastrell-Tempranillo
## 6494 Ampakama
## 6495
## 6496 Toasted Cow 5th Edition
## 6497 Ophicus Brut Cuvée
## 6498
## 6499 Conde de San Cristóbal
## 6500
## 6501 Estate
## 6502 Quinta da Levandeira Reserva
## 6503
## 6504 Reserva
## 6505 Made With Organic Grapes
## 6506 Brut
## 6507
## 6508 L'Efecte Volador
## 6509 Pura
## 6510 Barrica
## 6511 Cuvée Oligocene
## 6512 Reserva
## 6513
## 6514
## 6515
## 6516 Estate Grown
## 6517
## 6518 Bethlehem Valley
## 6519
## 6520 La Minée
## 6521
## 6522
## 6523
## 6524 Crianza
## 6525 Dry
## 6526 Estates
## 6527 La Boheme
## 6528 Estate Grown
## 6529 Altitud 1.100 Garnacha Tintorera
## 6530 Old Vines Crianza
## 6531
## 6532
## 6533 Cristalino Extra-Dry
## 6534
## 6535 Hybrid
## 6536 Hybrid
## 6537 Octavie Crémieux
## 6538
## 6539
## 6540
## 6541 Surfer Chick
## 6542 Clava Reserve
## 6543 The Reserve
## 6544 Reserve
## 6545
## 6546
## 6547 Dry
## 6548
## 6549 Cefiro Reserva
## 6550 Halo Cass Vineyard
## 6551 Dry
## 6552 Estate
## 6553 Reserva
## 6554 Ventura Reserve
## 6555 Sepia Reserva
## 6556 Reserva Sepia
## 6557 Reserva
## 6558 El Matador
## 6559 Reserva
## 6560 Summit Solitude
## 6561
## 6562 Unwooded
## 6563 Marques de Casa Concha
## 6564 Light Madeira
## 6565 Rosé
## 6566 Valle del Sol
## 6567
## 6568 Paulo Limited Edition
## 6569 Estate Reserve
## 6570 Les Preuses Grand Cru
## 6571 Greg La Follette Van de Kamp Vineyard
## 6572
## 6573 Les Charmes Premier Cru
## 6574 Les Pucelles Premier Cru
## 6575 RiverBend Vineyard
## 6576 Mézes Mály Aszú 6 Puttonyos
## 6577 Les Clos Grand Cru
## 6578 Clavoillon Premier Cru
## 6579 Reserve
## 6580 Reserve
## 6581 Old Vines Dedication Series #26
## 6582 McDougall Vineyard
## 6583 Champs Gains Premier Cru
## 6584 Great Oak Vineyard
## 6585 Trenton Station Vineyard
## 6586
## 6587 Les Pucelles Premier Cru
## 6588
## 6589 Las Madres Vineyard
## 6590
## 6591
## 6592
## 6593 Rubiolo
## 6594 Le Soleil Nantais
## 6595 Lot 59
## 6596
## 6597 Montevasco
## 6598 Tom Feeney Ranch Old Vine
## 6599 Cuvée Tradition
## 6600 La Montée de l'Epine
## 6601
## 6602
## 6603 Reserva Merlot-Carmenère-Cabernet Sauvignon
## 6604 Caspagnolo
## 6605
## 6606 Block Selection Limari Reserve
## 6607 Vigna Aprico
## 6608
## 6609
## 6610
## 6611
## 6612 Home Ranch
## 6613 Ink Grade Vineyard
## 6614
## 6615 Great White Unwooded
## 6616
## 6617
## 6618 Clos Roussots Premier Cru
## 6619 Vintner's Reserve
## 6620 Ice Wine
## 6621 Serrai Extra Dry
## 6622 Pierre's Pirouette Rosé of
## 6623 Rapariga da Quinta Branco
## 6624 Nabucco
## 6625
## 6626 Guado al Melo
## 6627 Losi Millennium Riserva
## 6628
## 6629 Aurora Point
## 6630 Terrace Ridge
## 6631 Once Upon a Dream
## 6632 Monte Carbonare
## 6633
## 6634
## 6635 Finca la Escuela Estate Grown Altamira
## 6636 Tempus
## 6637 I Boschi
## 6638 Vine One
## 6639 Extra Dry 47
## 6640 Madera 5
## 6641 Giana
## 6642 Costebianche
## 6643 Kylie's Cuvée
## 6644
## 6645
## 6646 Laudàri
## 6647 Fontanelle
## 6648 Ruster Ausbruch
## 6649 Frasca's Lane Vineyard
## 6650
## 6651 Tenuta La Solatìa
## 6652
## 6653 Pinot Noir Brut
## 6654 Tenuta Regaleali
## 6655 Grand Cru
## 6656 Los Chamizal
## 6657 El Olivar Alto Single Vineyard
## 6658
## 6659 La Dame Rousse
## 6660 Les Rugiens Premier Cru
## 6661 Grand Reserve
## 6662 Ultra
## 6663
## 6664
## 6665
## 6666
## 6667
## 6668
## 6669 Collaboration Series VI Ciel du Cheval Vineyard
## 6670 Infidels
## 6671 Loner W11-A
## 6672 Misfit
## 6673 Stella Mae
## 6674 Dindori Reserve
## 6675
## 6676 Ciel du Cheval Vineyard
## 6677 Double Canyon Vineyard
## 6678 Reserva
## 6679 Domaine Saint-Rémy Hengst Grand Cru
## 6680 Costa Russi
## 6681
## 6682 Estate Reserve
## 6683 Reflections of Still Waters Estate Grown
## 6684 San Pietro Riserva
## 6685 Tinaquaic Vineyard
## 6686 Clos Häuserer Wintzenheim
## 6687 Dutton Ranch Morelli Lane
## 6688 Ciel du Cheval Vineyard
## 6689 Red Rock Terrace
## 6690 Roncaglie
## 6691 Estate
## 6692 Clos Saint Landelin Vorbourg Grand Cru
## 6693 Nervo
## 6694 Stagecoach Vineyards The Biale Block
## 6695 Pajorè
## 6696 Réserve
## 6697 Bramasole
## 6698
## 6699 X Alphabet Wines
## 6700 Balletto Vineyard
## 6701 Cuvée Brut
## 6702
## 6703
## 6704 Bechthold Vineyard
## 6705 Alisos
## 6706 El Sequé
## 6707
## 6708 Ciabot del Fì
## 6709 Rosé of
## 6710 D
## 6711 Les Cimels
## 6712 La Croix Bonis
## 6713
## 6714 Bussia
## 6715
## 6716 Signature du Haut Bourg
## 6717 Altrovino
## 6718 Trutina
## 6719
## 6720 Founder's Art Reserve
## 6721
## 6722
## 6723 Don Miguel Vineyard La Masía
## 6724 Sentinel
## 6725 12 Clones
## 6726 Selección
## 6727 Casa Lola
## 6728 Ile de Vergelesses Premier Cru
## 6729 The Evil Twin
## 6730 Joy! Rosé
## 6731
## 6732 Les Amoureuses Premier Cru
## 6733 Sixer
## 6734 Clos des Chênes Premier Cru
## 6735 Les St.-Georges Premier Cru
## 6736 Les Rugiens Premier Cru
## 6737 Ried Loibenberg Smaragd
## 6738
## 6739
## 6740 Best Barrels
## 6741 Rosella's Vineyard
## 6742 Vendemmia Tardiva
## 6743
## 6744 Les Rugiens Premier Cru
## 6745
## 6746
## 6747 DaMaNation
## 6748 Marin
## 6749 Dry
## 6750 Dutton Ranch Kylie's Cuvée
## 6751 Vigna Manapetra
## 6752 Das weiße Mammut Reserve
## 6753 Piedra Negra Alta Colección
## 6754 Ferruggini
## 6755 Artisan Collection
## 6756 Lafond Vineyard
## 6757 Loam
## 6758
## 6759 Sweet
## 6760
## 6761 Sernauberg
## 6762 Kirchberg Reserve
## 6763 Anninger
## 6764
## 6765 Stein
## 6766 Lombardo
## 6767 Red Blend
## 6768 Cellar Selection
## 6769
## 6770
## 6771
## 6772
## 6773
## 6774
## 6775
## 6776
## 6777 Grand Mouton
## 6778
## 6779
## 6780 Antu Mountain Vineyard
## 6781
## 6782 Château de Mercuès
## 6783 Reserve
## 6784
## 6785 Vespa
## 6786 Le Moelleux du Clos
## 6787 Reserve
## 6788 Crianza
## 6789 Celilo Vineyard
## 6790 Château de Crouseilles
## 6791
## 6792 Sandgrube 13 Edition Chremisa
## 6793
## 6794 Red Blend
## 6795 Viña Clavidor Cepas Viejas
## 6796
## 6797 Hacienda de Susar
## 6798 Supremacy
## 6799 Sugarille
## 6800
## 6801
## 6802 Riserva
## 6803
## 6804 Estines Vineyard
## 6805 Number One Constitution Road
## 6806
## 6807
## 6808 Rosé Zéro Extra Brut
## 6809
## 6810 Iscay
## 6811 Reserve
## 6812 Finca Monasterio
## 6813 Finca Santa Sabina
## 6814
## 6815
## 6816 Cuvée Compostelle
## 6817 Grande Réserve
## 6818
## 6819 Vinho Tinto
## 6820 Estate
## 6821
## 6822 Skyline
## 6823 Jump Up
## 6824 Riserva
## 6825 Paraboll
## 6826 Crianza
## 6827 Blanc de Blancs Brut
## 6828 Altitud
## 6829
## 6830
## 6831 Voliero
## 6832 Campo del Drago
## 6833
## 6834 Via Cenit
## 6835 Millésime Premier Cru Extra Brut
## 6836 Reserve
## 6837
## 6838
## 6839
## 6840 L'Artolie
## 6841
## 6842
## 6843 Le Chiuse di Sotto
## 6844 Vigna Piaggia
## 6845
## 6846 Martini Reinhardt Selection
## 6847 Privada
## 6848 Molino della Suga
## 6849
## 6850
## 6851
## 6852 Selezione Madonna delle Grazie
## 6853 Oro de Plata
## 6854 L'Universelle Brut
## 6855 Miravel Extra Dry
## 6856 Grand Cuvée del Fondatore Motus Vitae Rive San Pietro di Barbozza Brut Nature
## 6857 Monteagrelo
## 6858 Estate Grown
## 6859 Venta Mazzaron
## 6860 Extra Dry
## 6861 Charles VII Grande Cuvée des Lys Blanc de Noirs Brut
## 6862 Mayerling Brut Rosé
## 6863 Prestige Brut
## 6864
## 6865
## 6866 Estate
## 6867 Graacher Himmelreich Kabinett Feinherb
## 6868 Blanc de Blancs Brut
## 6869 Paisaje de Tupungato
## 6870 Pet Nat Vol. 5
## 6871 Kosher
## 6872
## 6873 Blanc de Blancs Premier Cru Demi-Sec
## 6874 Cuatrocientos Crianza
## 6875 Fagher Brut
## 6876 Tradition Brut
## 6877 Weinkellerei
## 6878
## 6879 Freedom Hill Vineyard
## 6880 Dante Dusi Vineyard
## 6881 Bernkasteler Badstube Kabinett
## 6882 Aberration
## 6883 Dry
## 6884
## 6885
## 6886
## 6887
## 6888
## 6889
## 6890
## 6891
## 6892
## 6893
## 6894 Classic
## 6895 Leopold
## 6896
## 6897 Five Faces
## 6898
## 6899
## 6900 Familia Giraud Billoud
## 6901 Graf von Meran
## 6902 Riserva
## 6903
## 6904
## 6905 Festivo
## 6906 Left Bank Abigail's Vineyard Domaine Barrien
## 6907
## 6908 Semidry
## 6909 Beyra Reserva Quartz
## 6910 Reserve
## 6911
## 6912 Viu 1
## 6913 Companhia das Lezírias Tyto Alba Vinhas Protegidas
## 6914 Winemaker's Reserve
## 6915 Granite
## 6916 Camp Meeting Ridge Estate Vineyard
## 6917 Poboleda Vi de la Villa
## 6918 La Froscà
## 6919 Our Muse
## 6920 Knox Alexander
## 6921 Reserva da Familia
## 6922 Goulaine Vieilles Vignes
## 6923 Machado
## 6924
## 6925
## 6926 Swan/828
## 6927 Angel Wing
## 6928 Beckstoffer Las Piedras Vineyard
## 6929
## 6930 Esporão Reserva
## 6931 Sandra Adele
## 6932
## 6933 Reserva
## 6934 Grande Reserva
## 6935 Sleeping Lady Vineyard
## 6936 Zotovich Vineyard
## 6937
## 6938
## 6939 Pintas Character
## 6940 Tondre Vineyard
## 6941 Reserva
## 6942 Julius
## 6943
## 6944
## 6945 Print
## 6946 Haardt Trocken
## 6947 Dry
## 6948 Ungsteiner Herrenberg Spätlese
## 6949
## 6950 Gunselman Bench Vineyard
## 6951
## 6952
## 6953 Wachenheimer Belz Spätlese
## 6954 Light Fino Jarana
## 6955 Verhey Vineyard
## 6956 Von Rotliegenden Spätlese
## 6957 Dürkheimer Michelsberg Grosses Gewächs
## 6958 Deidesheimer Leinhöhle Spätlese
## 6959
## 6960 I Second Haut Beyzac
## 6961 Lodolaio Riserva
## 6962
## 6963 Robby's
## 6964 Ventale
## 6965
## 6966 Shannon Wood Vineyard
## 6967
## 6968 Estate Grown Rosato di
## 6969 JB Winemaker Series
## 6970 Eolo Gran Reserva
## 6971 Veni Vidi Vici
## 6972
## 6973 Premium
## 6974 Reserva
## 6975 Estate
## 6976 Casal Garcia
## 6977
## 6978
## 6979
## 6980
## 6981
## 6982 Reserva Estate Bottled
## 6983
## 6984
## 6985 Brigando
## 6986
## 6987 Stamp of Australia
## 6988 Treasure of Transylvania Medium Sweet
## 6989 Estate
## 6990
## 6991 Caprice des Rocailles
## 6992
## 6993 Freebird
## 6994 Stagecoach Vineyard Limited Edition Artist Series
## 6995 Sire
## 6996 Alpha
## 6997 Don Giovanni Estate Grown
## 6998 Angel Grande Cuvée Rezerva
## 6999
## 7000
## 7001
## 7002 Leimengrub
## 7003
## 7004 Bellugue
## 7005 Le Second
## 7006
## 7007 Le Berger
## 7008 Bordini
## 7009 Estate Grown and Produced
## 7010 CV Reserve
## 7011 Cuvée Prevenche
## 7012 Vigneto Cialdini
## 7013 Marques de Casa Concha
## 7014 Alabastro Reserva
## 7015 Grande Cuvée
## 7016 Cuvée Nathan
## 7017 Grenache
## 7018 The Porterhouse
## 7019 Finley Vineyard Estate
## 7020 Trutina
## 7021 Jubiléé
## 7022 Wintzheim
## 7023 Treborce Vineyard
## 7024 Millesimato Brut
## 7025 Zerum Riserva Dosaggio Zero
## 7026 Bannockburn Vineyard
## 7027 Estate Bottled
## 7028
## 7029 Sophia Gimblett Gravels
## 7030 Reserve Estate Bottled
## 7031 Estate Bottled
## 7032
## 7033 Gran Cuvée Satèn
## 7034 Basalt Block
## 7035
## 7036 Almirez
## 7037 The Gimblett
## 7038 Highlands Estates Trace Ridge
## 7039 Flax Vineyard
## 7040 Botricelli
## 7041 Branham Rockpile Vineyard
## 7042 McCrone Vineyard
## 7043 Zeltinger Sonnenuhr Spätlese
## 7044
## 7045 Casal da Seara
## 7046 Vinea Tinto
## 7047
## 7048
## 7049
## 7050 Lagar
## 7051 Particular
## 7052 Three Sons Cuvee
## 7053
## 7054 Valle Las Acequias
## 7055 Otton Vineyards
## 7056 VA Viña Aljibes
## 7057
## 7058
## 7059
## 7060 Ysé
## 7061 Senses
## 7062 Family Estate Selection
## 7063
## 7064 Companhia das Lezírias Tyto Alba Vinhas Protegidas
## 7065
## 7066
## 7067 Mariana
## 7068
## 7069
## 7070 Vigna Campo del Gatto
## 7071 Dion Vineyard
## 7072 Monta da Baía
## 7073 Are You Game?
## 7074 Crane Ridge
## 7075
## 7076 Perpetuum
## 7077
## 7078 Vineyard Select
## 7079 The Nth Degree
## 7080
## 7081
## 7082 Estate Grown
## 7083 Sexton Vineyard
## 7084 Contento Vineyard
## 7085
## 7086
## 7087 Cuveé
## 7088 Winemaker's Selection Single Vineyard
## 7089 Estate Grown
## 7090 Morine Ranch
## 7091 Extra Brut
## 7092 Pink Goat
## 7093 Brut
## 7094
## 7095 Gran Reserva
## 7096
## 7097 Los Vascos
## 7098 Padrone Proprietary Red Wine
## 7099 Late Bottled Vintage
## 7100
## 7101 GeG
## 7102 Tradition
## 7103 Rosé
## 7104 Blanc de Blancs Pas Dosé Metodo Classico
## 7105 Ridgecrest Vineyards
## 7106 Extra Brut
## 7107 Premium
## 7108 Cordon Rouge Brut
## 7109 Late Bottled Vintage
## 7110 Vintner Select
## 7111
## 7112 1/1
## 7113
## 7114
## 7115 Sunbird
## 7116 Winemaker's Release
## 7117 Villa Luigia Extra Dry
## 7118 Extra Brut
## 7119 Extra Dry
## 7120 Cuvée Oris
## 7121 Colección Vivanco 4 Varietales Tempranillo-Graciano-Garnacha-Mazuelo
## 7122 Les Michelons
## 7123 Viti di San Mor Brut
## 7124 Cuvee Le Bac
## 7125
## 7126
## 7127 Piedra Negra Alta Colección
## 7128 Family Reserve
## 7129 Hawks View Vineyard
## 7130 Dry
## 7131
## 7132 4 Quatro Castas
## 7133 Reserva
## 7134 Antrum
## 7135 Les Bambins
## 7136 Gran Reserva
## 7137 Passione
## 7138
## 7139
## 7140 Tawny
## 7141 Verde Vineyards
## 7142
## 7143 Bricco delle Olive
## 7144
## 7145 Estate
## 7146 La Petite Perrière
## 7147 Grapes Organically Grown
## 7148 Vino Rosso
## 7149 Clover Creek Vineyard
## 7150 Cuvée Rouge
## 7151
## 7152
## 7153 Indo
## 7154 Torlasco
## 7155 Old Vine Garnacha
## 7156
## 7157 Rosa del Marchese
## 7158 Le Orme
## 7159
## 7160
## 7161 Vigna Cerretta
## 7162 Lurëi
## 7163 Bitner Vineyard
## 7164 Rosalie
## 7165 Reserva
## 7166
## 7167 Cutizzi
## 7168
## 7169 Alon
## 7170 Gilgal White
## 7171
## 7172 Garys' Vineyard
## 7173 Estate Reserve
## 7174 Cometa
## 7175 District Collection
## 7176 Dry
## 7177 Tiara
## 7178 Chenin Avec Chêne
## 7179 Series M
## 7180 Terrer d'Aubert
## 7181
## 7182 Perle de
## 7183 Estate Grown
## 7184
## 7185 Brut
## 7186 Métier
## 7187 Signature
## 7188 Dry Rosé
## 7189
## 7190 Terra de Fic 2
## 7191 Carneros Cuvée
## 7192
## 7193
## 7194 INOX Unoaked
## 7195
## 7196 Bicentenary Vintage
## 7197
## 7198 Grand'Arte
## 7199 Philippe Girard Cuvée Silex
## 7200 La Voûte
## 7201 Origine
## 7202 Hylo Vineyard Rosé of
## 7203 Dardis
## 7204 De la Cava
## 7205 Babu Reserva
## 7206 Brauneberger Kabinett
## 7207 Croft Vineyard
## 7208 Fir Crest Vineyard
## 7209 Sur Lie
## 7210 Kosmos
## 7211 Reserve
## 7212 Reserva Branco
## 7213 Don Antonio
## 7214 Starderi
## 7215 Marcarini
## 7216 Vintage
## 7217 Barile
## 7218 Marsh Estate Vineyard
## 7219
## 7220 G-Force
## 7221 Domaine Petroni
## 7222 Hyland Vineyard
## 7223
## 7224 Tenuta Lena di Mezzo
## 7225 Capitel della Crosara
## 7226
## 7227 Twisted Spur
## 7228 Chappell Vineyard
## 7229 Hudson Vineyard
## 7230 Le Grand Bois
## 7231
## 7232
## 7233 Arindo
## 7234 Il Re Pazzo
## 7235 Sutherland
## 7236
## 7237
## 7238 Château Mi-Pont
## 7239 Estate Bottled
## 7240 Beyond
## 7241
## 7242 Brut Blanc de Blancs
## 7243
## 7244
## 7245
## 7246
## 7247 Prestige
## 7248 Brentino
## 7249
## 7250 12 Meses
## 7251 Les Dames Huguettes
## 7252 Estate
## 7253
## 7254 Colson Canyon Vineyard
## 7255
## 7256 Bravado
## 7257 L'Hospitalet Grand Vin
## 7258
## 7259 Arbitrage
## 7260
## 7261 Cuvée 7
## 7262 Cuvée 13
## 7263
## 7264
## 7265 Cockburn Ranch Vineyard
## 7266 Reserve Estate Unoaked
## 7267 Purpura Valahica
## 7268 Estate
## 7269 Estate
## 7270 Cuvée Jean-Charles
## 7271 Grand Reserve
## 7272 Kindred
## 7273 Roucí
## 7274 Campania Rosso
## 7275 Inside Passage Reserve
## 7276 Skyland Ridge
## 7277 Ferrington Vineyard
## 7278 Estate
## 7279 Vieilles Vignes
## 7280
## 7281 San Leonardo
## 7282 Maso Montalto
## 7283 Piccolo Pio
## 7284 McClellan Estate
## 7285 Home Ranch Reserve
## 7286 Las Amigas Partners Vineyard
## 7287 Cuvée Susan Diane Oakville Station
## 7288
## 7289 SHR Field Blend
## 7290 Estate
## 7291 Contrada Sant'Aniello
## 7292 Dry
## 7293 100 Hills Dry
## 7294 Tradition
## 7295 Oveja Negra
## 7296 Water Witch
## 7297
## 7298 Family Crest Grenache-Shiraz-Mourvèdre
## 7299 Kanzler Vineyard
## 7300 Montage
## 7301 Clone #1 Purisima Mountain Vineyard
## 7302
## 7303 Collection
## 7304 Les Sables
## 7305 Canoe Ridge Estate
## 7306 Cold Creek Vineyard
## 7307 Réserve
## 7308
## 7309 Rosé of
## 7310 Collines de Granit
## 7311 Brut
## 7312 Les Hospices
## 7313 Tradition
## 7314 Flamenco Rojo
## 7315
## 7316
## 7317 Terra de Lobos
## 7318 Vino Dulce Natural
## 7319
## 7320
## 7321 Reserve
## 7322 Vigna di Pallino
## 7323 Lancers Rosé
## 7324 Estate Bottled Reserve Kosher
## 7325 Kosher
## 7326 16 Months Barrel Aged Kosher
## 7327 Vall Sanzo
## 7328 Mohrhardt Ridge
## 7329
## 7330
## 7331 Melange
## 7332
## 7333
## 7334
## 7335
## 7336 Occhio di Pernice
## 7337 Rosemary's Vineyard
## 7338 Thatcher Bay Vineyard
## 7339
## 7340 Tephra Ridge Vineyard
## 7341 Steinagrund
## 7342 Argos
## 7343 Merval
## 7344
## 7345
## 7346
## 7347 Estate Bottled
## 7348 Forbidden
## 7349 Villa al Cortile
## 7350
## 7351 Estate Grown
## 7352
## 7353
## 7354 Underwood Mountain Vineyard
## 7355 Oak Cask
## 7356 Lot 426 Red Hen Ranch
## 7357
## 7358
## 7359
## 7360
## 7361 Bunch Select Late Harvest
## 7362 Annata
## 7363
## 7364
## 7365 Cinghiale Vineyard Pinot Noir
## 7366 La Donella
## 7367 Autonomous
## 7368 Les Dionnières
## 7369 La Viña de Mi Madre Reserva
## 7370
## 7371 Signature
## 7372 Grand Reserve
## 7373 Rosella's Vineyard
## 7374 Grand Reserve
## 7375 Solist
## 7376 La Sereinité
## 7377 Unforgettable
## 7378
## 7379 Schenkenbichl Reserve
## 7380 T Noble Late Harvest
## 7381 San Román
## 7382 Glacier Estate Vineyard
## 7383 Slice of Heaven
## 7384 Marinus Red Wine
## 7385 Angel Hawk
## 7386 Château de Romassan
## 7387 Barrel Select
## 7388 Brookman
## 7389 Cuvée Vieilles Vignes
## 7390
## 7391 Barrua
## 7392 Solpost
## 7393 Estate Grown Cave Fermented
## 7394 Freestone
## 7395 Rosé of
## 7396 Quarz
## 7397 Rezerve
## 7398 Curva Tinto
## 7399 Castello
## 7400 Rockpile Road Vineyard
## 7401
## 7402 E3
## 7403 Proprietor's Reserve Old Vine
## 7404
## 7405 Encounter
## 7406 Au Dessus de la Loi Andlau
## 7407 Umpqua Cuvée
## 7408 Vintner's Blend #9 Red Table Wine
## 7409 Duke of Clarence Rich
## 7410
## 7411
## 7412
## 7413 Cortello
## 7414 Director's Cut
## 7415
## 7416 No 1
## 7417 Crianza
## 7418 Reserve
## 7419 Geyserville Estate
## 7420 Negre
## 7421 Estate Vineyard
## 7422
## 7423 Les Princes Abbés
## 7424
## 7425
## 7426
## 7427
## 7428 Bay Mist
## 7429
## 7430 Cape
## 7431
## 7432 Tintara
## 7433 Evolution 6th Edition
## 7434
## 7435
## 7436 African Tradition Collection - Elephant
## 7437
## 7438 Dry
## 7439 Artist Collection
## 7440 Viña Sol
## 7441
## 7442
## 7443
## 7444 Sunny Slope Vineyard
## 7445 Gallagher Ranch
## 7446
## 7447
## 7448
## 7449 Proyecto 4
## 7450 Gran Devoción
## 7451
## 7452 B&G Réserve
## 7453 Meruzzano
## 7454 Cursus Vitae
## 7455 Roccanera
## 7456
## 7457 Jan Petit
## 7458 Gran Reserva
## 7459
## 7460 Bricco di Neive Riserva
## 7461 Domaine Marie B.
## 7462
## 7463 Estate Winery
## 7464 Canto Sur
## 7465
## 7466 Reserva Terroir La Higuera
## 7467 Falcon Series Tribute
## 7468 Falcon Series Frizzante
## 7469 Falcon Series Estate
## 7470 Vigneto Bordini
## 7471
## 7472 Château de Mirande
## 7473 Les Collines Vineyard
## 7474 Winemaker's
## 7475 Rosé of
## 7476
## 7477 Santo Cristoforo
## 7478 Basarin Riserva
## 7479 S. Martino
## 7480 Premium Select
## 7481
## 7482
## 7483
## 7484
## 7485 Bin Select 513
## 7486 Fino Light
## 7487
## 7488
## 7489
## 7490 Arena Valley Vineyard
## 7491 V. Single Vineyard
## 7492 Blue Moon
## 7493
## 7494 Plan B
## 7495
## 7496
## 7497
## 7498 Conquest
## 7499
## 7500 Coleccion
## 7501 Black Beauty
## 7502 Clone 76 Inox
## 7503 Estate
## 7504 Camp 4 Vineyard
## 7505 Moscato d'Osoyoos
## 7506 The Phantom
## 7507 Keefer Ranch Vineyard
## 7508 Côte du Py
## 7509 Pasionado
## 7510 Naturae
## 7511 Grand Cru Blanc de Blancs Brut
## 7512 Nicolas Catena Zapata
## 7513 Dosaggio Zero
## 7514 CSV Estate Bottled
## 7515 Naylor Vineyard
## 7516 Walther River Block
## 7517 Estate
## 7518 Sexton Vineyard
## 7519 Premier Cru Brut Nature Millésime
## 7520 Blanc de Blancs Réserve Brut
## 7521 Brut Premier
## 7522 Reserva
## 7523 Premier Cru Blanc de Noirs Bisseuil Brut
## 7524 Gregory Ranch
## 7525
## 7526 The Evening Standard
## 7527 Louvau Vineyard
## 7528 Verna's Vineyard
## 7529 Cedar Lane Vineyard
## 7530
## 7531 Riverview Vineyard Estate Grown
## 7532
## 7533
## 7534 Gopher Hill Block Peter's Vineyard
## 7535 Il Morino
## 7536 Lucia Highland Vineyard
## 7537 Riserva
## 7538
## 7539 Elu
## 7540 Terra Rossa Riserva
## 7541 Fin de Journée
## 7542 Riserva
## 7543 Riserva
## 7544 Baby Blue
## 7545
## 7546
## 7547
## 7548 Ingle Vineyard
## 7549 SVR Reserve
## 7550 Lagone
## 7551 Bismark Mountain Vineyard
## 7552 Catarina
## 7553 Taja Excelecia
## 7554 Jensen Vineyard
## 7555 San Martino
## 7556 Clarice
## 7557 Touquinheiras
## 7558 ÀN/2
## 7559 Roncão 20-Year-Old Tawny
## 7560 Estate Bottled
## 7561 Vieilles Vignes
## 7562
## 7563
## 7564 Domaine
## 7565 Quail Hill Vineyard
## 7566 Les Coûtes
## 7567 Marinus
## 7568 Rosso di Valachia
## 7569 Ayios Andronicos
## 7570
## 7571 Susucaru 2 Rosato
## 7572 Old Vine
## 7573 Wetland Winemaker's Selection
## 7574 Premius Bordeaux Sauvignon
## 7575
## 7576 Nagasawa Vineyard
## 7577 Reserve
## 7578 Special Reserve
## 7579 Col di Luna
## 7580 Sauvignon
## 7581 Capitel della Crosara
## 7582 Amethystos
## 7583 Heintz Ranch
## 7584
## 7585 Reserve
## 7586 Estate Selection
## 7587
## 7588 Intense
## 7589 POP Extra Dry
## 7590
## 7591 Flood Family Vineyards
## 7592 Los Vascos
## 7593
## 7594
## 7595
## 7596
## 7597 Estate Bottled
## 7598 Classico
## 7599 Sortesele
## 7600
## 7601
## 7602 Reserve
## 7603 Estate Bottled
## 7604
## 7605 Jardin
## 7606 Gato Negro
## 7607
## 7608 Estate Bottled
## 7609
## 7610
## 7611 CLB Reserve
## 7612 Casal Garcia
## 7613 San Francisco de Mostazal Reserva Especial
## 7614 Rosé Dry Collection Privée
## 7615 Rosé
## 7616
## 7617 Echo Ridge
## 7618
## 7619 Tasi Brut
## 7620
## 7621 Johas Vineyard
## 7622 Three Paddles
## 7623 Sweet
## 7624 Las Brisas Vineyard
## 7625 White Secco Méthode Traditionelle
## 7626
## 7627 Rock Pocket Vineyard
## 7628 Brut Rosé
## 7629 The Water Witch Stagecoach Vineyard
## 7630 Saomì Brut
## 7631 Paysage Estate Grown
## 7632 Grande Réserve Brut
## 7633 Délice Demi-Sec
## 7634
## 7635 Estate
## 7636 L Cuvée
## 7637 San Fermo Brut
## 7638 Brut
## 7639 Estate
## 7640 Mosaic
## 7641 Brut
## 7642 Rive di Col San Martino Brut 26° Primo
## 7643 Cosmo E' Col Fondo
## 7644
## 7645 I Versi Bianco
## 7646
## 7647 Nouveau
## 7648 Deux Chevaux Vineyard
## 7649 Baglio di Serramarrocco
## 7650 Tinto
## 7651 Aquilae
## 7652
## 7653 Automne Festif
## 7654
## 7655 Cavedale Vineyards Pépé
## 7656
## 7657 Sallier de la Tour
## 7658
## 7659 Grand Barossa
## 7660 Reserve
## 7661
## 7662 Bianco
## 7663
## 7664 Cuvée Fût de Chêne
## 7665 Calanìca Frappato-Syrah
## 7666 Force Canyon Vineyard
## 7667 Brut Rosé
## 7668 Sparkling Wine
## 7669 Opera Prima
## 7670 Sunrise Hill Vineyard Semi-Dry
## 7671
## 7672 Bruto
## 7673
## 7674 Ex Anima
## 7675 the V
## 7676
## 7677
## 7678 Gran Reserva Brut Nature
## 7679 Sierra Madre Vineyard
## 7680 Young Vines
## 7681 Rosé of
## 7682
## 7683 Morgeot Premier Cru
## 7684
## 7685 800 Vines Vineyard Rosé of
## 7686 Reserve Single Vineyard Bozokbag
## 7687
## 7688
## 7689 La Terre Promise
## 7690 Vieilles Vignes
## 7691
## 7692 Hierà
## 7693
## 7694 Estate
## 7695 Patrimonio
## 7696
## 7697
## 7698
## 7699 Epos
## 7700 Viña Sanzo
## 7701
## 7702
## 7703
## 7704
## 7705
## 7706 Joven Roble
## 7707
## 7708 Gran Reserva de Familia
## 7709 Estate
## 7710
## 7711 Russell Family Vineyard
## 7712
## 7713 Deen de Bortoli Vat 7
## 7714 Bernkasteler Badstube Kabinett
## 7715 Oak Lane
## 7716 Oak Lane Chenin Blanc - Sauvignon Blanc
## 7717 Rioja Bordón Crianza
## 7718 Arderius Reserva
## 7719 Château Tour Blanche
## 7720
## 7721 Campolargo Branco
## 7722 Underwood Mountain
## 7723 The Velvet Devil
## 7724
## 7725
## 7726 Elegance
## 7727 Délice du Prieuré
## 7728
## 7729
## 7730
## 7731
## 7732 Paso Rouge Alto Pomar Vineyard Estate
## 7733 Côte de Py
## 7734 Claudia's
## 7735 Reserva Unoaked
## 7736
## 7737
## 7738 Boushey Vineyard
## 7739 Nitor Dry
## 7740 Porter and Plot
## 7741 Estate
## 7742 Collection
## 7743
## 7744
## 7745 Sassella
## 7746 Quinta do Valdoeiro Colheita
## 7747 Twin Vineyards
## 7748
## 7749 Estate
## 7750
## 7751 Charisma
## 7752 Courtney's
## 7753
## 7754 Terrassen
## 7755 Terrassen
## 7756 Claret
## 7757 Animo
## 7758 Amylla Loren
## 7759 Bussia
## 7760
## 7761 Fianchetto Xl Vineyard
## 7762 For the Love of the Game
## 7763 Gunsalus Vineyard
## 7764 Sangiacomo Green Acres Catarina Clone 4
## 7765
## 7766
## 7767 Anning
## 7768 StevensBlackTongue
## 7769
## 7770 Classico
## 7771 Kremser Weinberge
## 7772
## 7773
## 7774 Les Miaux
## 7775 Causse du Bousquet
## 7776 Gran Reserva
## 7777 Vieilles Vignes
## 7778 Gemma Camaryn
## 7779 WCS Jack John
## 7780 LFNG Blind Trust
## 7781 Scheiben
## 7782 Vigna Fraschin
## 7783 Berg Reserve
## 7784 Black Tie
## 7785 Sottocastello di Novello
## 7786 The Blind Tiger Single Vineyard
## 7787
## 7788 Endlos Reserve
## 7789 Château de Haute-Serre Cuvée Prestige
## 7790 Estate Grown Late Harvest
## 7791 Fausoni Riserva
## 7792 Barrel Fermented
## 7793 Villero
## 7794 Steinertal Smaragd
## 7795 Spiegel
## 7796 Die Leidenschaft
## 7797
## 7798 Les Collines Vineyard
## 7799 Heiligenstein Alte Reben Reserve
## 7800 Gottschelle Reserve
## 7801 Heytesbury
## 7802 D'Oro
## 7803
## 7804
## 7805
## 7806 Quinta do Cardo
## 7807
## 7808 Kick Ranch
## 7809 Little Flinders
## 7810 Kismet
## 7811 Basket Press
## 7812
## 7813
## 7814
## 7815
## 7816
## 7817 Reserva
## 7818
## 7819 Potts' Catch
## 7820 Estate Vineyard
## 7821 La Charnivolle
## 7822 Steak House
## 7823 Miamba
## 7824 Grand Estates
## 7825 Gran Reserva
## 7826
## 7827
## 7828
## 7829
## 7830
## 7831 Campo ai Sasso
## 7832 Wilgha
## 7833
## 7834 Can Feixes Blanc Selecciò
## 7835
## 7836 Martinelli Vineyard
## 7837 Ricci Vineyard Unfiltered Zinfandel Port
## 7838 Cosecha
## 7839 Quartet
## 7840
## 7841
## 7842
## 7843
## 7844
## 7845
## 7846
## 7847
## 7848 Frei Vineyard
## 7849 Rosato di Sangiovese
## 7850 Bradey Block
## 7851 Ardor
## 7852 Single Vineyard Alizarine
## 7853 Single Vineyard Serenade
## 7854 Barrel Select
## 7855 Manzana Vineyard
## 7856 Vintage Extra Brut
## 7857 Vintage Collection Brut
## 7858 Elevage Estate Grown
## 7859 Cuvée Josephine Brut
## 7860 Dom Ruinart Brut Rosé
## 7861 Édition Limitée
## 7862 Dosaggiozero Riserva
## 7863
## 7864 Stagecoach Vineyard The Biale Block
## 7865 Orion Eiswein
## 7866 Comtes de Champagne Brut Rosé
## 7867 Bramare Marchiori Vineyard
## 7868 Bramare Touza Vineyard
## 7869 Agira Vineyard
## 7870 MR de Compostella
## 7871 Spaulding Vineyard
## 7872 MR de Compostella
## 7873 Ulises Valdez Vineyard
## 7874 Alder Springs Vineyard
## 7875 Albutom Vineyard
## 7876 Blanc de Blancs Brut
## 7877 Georges de Latour Private Reserve
## 7878 Cuvée Annamaria Clementi
## 7879 Riesling Icewine
## 7880 Samurai
## 7881 Russian River Selection
## 7882
## 7883
## 7884 Quartilho
## 7885 Terra de Lobos Branco
## 7886 Herú
## 7887 Cefiro Reserva
## 7888 Cold Creek
## 7889
## 7890
## 7891 Pinot Fusion
## 7892 Ca' de' Rocchi
## 7893 Vineyard Montage
## 7894 Encontro Special Cuvée Brut
## 7895 Les Quatre Cépages
## 7896 Oblate
## 7897 Bojador Branco
## 7898 Ca' del Lago
## 7899
## 7900 L'Excellence
## 7901 Reserva
## 7902 Brut
## 7903 Bella's Collection
## 7904 Ilixens
## 7905 Zenith Vineyard
## 7906
## 7907 Arca Nova
## 7908 Rouge du Tusque
## 7909 Old Vine
## 7910
## 7911
## 7912 Estate
## 7913 Gallina Riserva
## 7914
## 7915 Sciala Vendemmia Tardiva
## 7916 La Casa in Collina
## 7917 Catapult
## 7918
## 7919 Family Crest
## 7920
## 7921 Muros de Melgaço
## 7922 I Selis Rosso Superiore
## 7923 Estate Reserve
## 7924 Old Vines
## 7925 Selected Vines
## 7926
## 7927
## 7928 Mil Piedras
## 7929 33 de Dávalos
## 7930
## 7931 Rodney's Vineyard
## 7932 Ciconia Reserva
## 7933 The Strapper Grenache-Shiraz-Mataro
## 7934
## 7935 Clone 4
## 7936 Colle del Gelso
## 7937 Rabajà Riserva
## 7938 Vieilles Vignes
## 7939
## 7940 Vieilles Vignes
## 7941
## 7942 Promised Land
## 7943 Little Bear Creek Red Wine
## 7944
## 7945 Mademoiselle de T
## 7946 HMR Estate Santa Lucia Highland Range
## 7947
## 7948
## 7949 Sangiacomo Vineyards
## 7950 Estate
## 7951
## 7952 Clarendon
## 7953 L'Aspetto
## 7954 Axel
## 7955 Sibilla Appeninica Vin Santo
## 7956 Zone 2
## 7957 Loibner Klostersatz Federspiel
## 7958 Estate Reserve
## 7959 The Big Game
## 7960
## 7961
## 7962
## 7963 Villa Cusona
## 7964
## 7965 Light Horse
## 7966
## 7967 Market
## 7968 Nana's
## 7969
## 7970 Arcosesto
## 7971 La Croix du Prieur
## 7972
## 7973
## 7974
## 7975 Clos de la Perrière
## 7976 Domaine du Vieux Puits
## 7977 Reserve
## 7978
## 7979
## 7980
## 7981 Especial
## 7982 Chesapeake
## 7983
## 7984 Unoaked
## 7985 Quercione Riserva
## 7986 La Cote
## 7987 Aurea Riserva
## 7988 Monte Fiorentine
## 7989 Re Midas
## 7990 Tinto
## 7991 Rouvière
## 7992
## 7993 Quinta das Tecedeiras Flor de Tecedeiras
## 7994 MIP Made in Provence
## 7995 Quinta de São Francisco
## 7996 SETA
## 7997 Beresini Vineyard
## 7998 Patelin de Tablas Blanc
## 7999 Kali Hart Estate Grown
## 8000 Elsa Bianchi
## 8001 Bacigalupi Vineyard
## 8002
## 8003
## 8004
## 8005
## 8006 Vin Soave
## 8007
## 8008 Matiú Brut
## 8009
## 8010 Reserve Selection
## 8011 Roc-Epine
## 8012 Cuvée des Vignerons Brut Rosé
## 8013 Grande Réserve
## 8014
## 8015 Essence Rosé
## 8016 Forever Wild
## 8017 Saunders Vineyard Reserve
## 8018 Spirit Canyon Vineyards
## 8019 Erdener Treppchen Kabinett
## 8020 Prestige
## 8021 Ciconia
## 8022 Audaz Branco
## 8023 Special Reserve
## 8024 Riverstone
## 8025 Wildflower
## 8026
## 8027
## 8028 Companhia das Lezírias Catapereiro
## 8029 Andreza Códega do Larinho
## 8030 Brut Satèn
## 8031
## 8032 Natural
## 8033 Sweet Rosé
## 8034 Goodchild High 9 Vineyard
## 8035 Family Reserve
## 8036
## 8037
## 8038 Tiradora
## 8039 Give Me Five By Javier Rodriguez
## 8040
## 8041 Reserva
## 8042 Ona Special Reserve Cabernet Sauvignon-Carmenere-Syrah
## 8043 96 Cedars
## 8044 Estate Bottled
## 8045 Estate
## 8046 Eté Intense
## 8047 Cefiro Reserva
## 8048
## 8049 Brut
## 8050 Cren del Gufo
## 8051 Vieilles Vignes
## 8052
## 8053 Dante's Inferno
## 8054 Unoaked
## 8055
## 8056
## 8057
## 8058
## 8059 Camp Four Vinyard
## 8060
## 8061
## 8062
## 8063
## 8064 Fiori Delle Stelle Ice Cuvée
## 8065 Froehn Grand Cru
## 8066
## 8067 The Fumé
## 8068 Camp 4 Vineyard
## 8069 Rivalta Limited Selection
## 8070 Brut Séduction
## 8071
## 8072 Chaos Theory
## 8073 Lukai
## 8074 Estate
## 8075 Colheita Seleccionada
## 8076
## 8077 Max Reserva
## 8078 Reserve Assemblage Carmenère-Syrah-Cabernet Sauvignon
## 8079
## 8080 Tradition
## 8081
## 8082 Ciel du Cheval Vineyard Flagship Reserve
## 8083 Old Vine
## 8084 Rodney's Vineyard
## 8085
## 8086 Aurius
## 8087 Flight
## 8088 Ulises Valdez Diablo Vineyard
## 8089 Altitudes
## 8090 Ramos Premium
## 8091
## 8092 Estate
## 8093 Vinha da Costa
## 8094
## 8095
## 8096 The Pundit
## 8097 S&M Caliza Vineyard
## 8098
## 8099 Les Saint-Georges Premier Cru
## 8100 Les Champs Gains Premier Cru
## 8101 The Brothers Late Harvest
## 8102
## 8103 Charmes Premier Cru
## 8104 Poruzots Premier Cru
## 8105 Les Murgers des Dents de Chien Premier Cru
## 8106 John Sebastiano VIneyard
## 8107 Pisoni Vineyard
## 8108 Campomasua
## 8109 Bien Nacido Vineyard
## 8110 Costasera Riserva
## 8111 Unus
## 8112 DVX
## 8113 Grigsby Vineyard
## 8114 La Marega
## 8115 Estate Wine Black Label
## 8116 Counterpoint
## 8117
## 8118 Hastings Ranch Vineyard
## 8119
## 8120 Le Sol Gimblett Gravels
## 8121 Les Hauts Jarrons Premier Cru
## 8122 Champans Premier Cru
## 8123 Pahi Single Vineyard
## 8124 Grand Klasse Reserve Lawrence Vineyards
## 8125 Estate Vineyards
## 8126 Old Vine Reserve
## 8127 Vigneti di Foscarino
## 8128
## 8129 L'Extra Brut Premier Cru
## 8130 Heart of the Hill Vineyard
## 8131 Sur Lie
## 8132 Cut Bank Estate
## 8133 NEXT
## 8134 Brut Extra Quality
## 8135 Natural Art
## 8136 Brut Rosé
## 8137
## 8138 Brut
## 8139
## 8140 Marrugat Brut Selection
## 8141 Una Selección
## 8142 Reserve
## 8143 Pisa Terrace
## 8144
## 8145 Imperiale Fior d'Arancio Orange
## 8146 Unoaked
## 8147 Reserva
## 8148 Oldfield Series 2Bench
## 8149
## 8150 Cellar Selection
## 8151 Black Dog Ranch
## 8152 Clérotstein Auxerrois
## 8153 Cuvée Perle Rosé Brut
## 8154 Reserve
## 8155
## 8156
## 8157
## 8158 Reserva Especial
## 8159
## 8160
## 8161 Poiano
## 8162 Portada Winemaker's Selection Branco
## 8163 QM Terra Antiga
## 8164
## 8165 Reserva
## 8166 1234 Reserva
## 8167
## 8168 Maddalena
## 8169
## 8170 River's
## 8171 Estate Bottled
## 8172 Maria Bonita
## 8173 A Thousand Words
## 8174 Adrian
## 8175 Golden Land Dry
## 8176 Ea!
## 8177 Cool Climate
## 8178 Le Photographe Rheinriesling
## 8179 Le Photographe
## 8180
## 8181 Old Scratch
## 8182 Estate
## 8183
## 8184 Limited Release Kentucky Derby
## 8185 Alpha M
## 8186 Loibenberg Smaragd
## 8187 Don Maximiano Founder's Reserva
## 8188 La Cumbre
## 8189
## 8190 Katarina Brut
## 8191 Grand Reserve
## 8192 Estate
## 8193 Estate Bottled Reserve
## 8194 Talento Riserva
## 8195 Premier Brut
## 8196
## 8197 B
## 8198
## 8199 Cuvée Francis Courselle
## 8200
## 8201
## 8202 High Slopes
## 8203 Loibenberg Smaragd
## 8204 Steinertal Smaragd
## 8205
## 8206 Ygrec
## 8207
## 8208 Cuvée Prédilection Brut
## 8209 Bien Nacido Vineyard Block UU
## 8210 Ponte das Canas Colheita
## 8211 Alexis
## 8212 Block 9
## 8213 Wichmann Dundee Estate
## 8214 Wehlener Sonnenuhr Auslese
## 8215 Scharlachberg Bingen GG Erste Lage Trocken
## 8216 Montmains Premier Cru Les Vieilles Vignes
## 8217
## 8218 Les Clousots
## 8219 Re di Renieri
## 8220 Reserve
## 8221 Coast Range Estate
## 8222 Vaudésir Grand Cru
## 8223 Estate
## 8224 Quinta do Rocio
## 8225 étoile Rosé
## 8226 Tinaquaic Vineyard
## 8227 Nature
## 8228 Vinothèque Premier Cru Brut
## 8229 Estate Grown Cave Fermented
## 8230 Z Three Estate Grown and Bottled
## 8231 Icewine
## 8232 Cuvée Alain Thienot Brut Millesimé
## 8233 Estates Reserve
## 8234
## 8235 Gold Icewine
## 8236 Beckstoffer To Kalon Vineyard
## 8237 Cuvée Les Meslaines Grand Cru Brut
## 8238 Vigneti di Ravazzol
## 8239 Serie Riberas Gran Reserva Ribera del Cachapoal
## 8240 Reserve
## 8241 Red Jasper
## 8242 Vintage Selection
## 8243 Estate Bottled
## 8244 Estate
## 8245
## 8246 Dragone Vineyard
## 8247
## 8248 Rangen Grand Cru
## 8249
## 8250
## 8251
## 8252
## 8253
## 8254 Point Break
## 8255
## 8256 Tenuta del Cavaliere
## 8257 Cantorì
## 8258
## 8259 Goldberg
## 8260
## 8261 Moffett Block
## 8262 Dry
## 8263 Classique
## 8264
## 8265 Late Harvest
## 8266 Cuvée Château
## 8267 Rugaro Gold
## 8268
## 8269 Station 10
## 8270
## 8271 Sur la Carrière
## 8272
## 8273 Reserve
## 8274
## 8275
## 8276
## 8277 Block Selection Reserve
## 8278 Goff-Whitton Vineyard
## 8279 Charmes
## 8280
## 8281 Sru
## 8282 Elevation
## 8283
## 8284 Campo Quadro
## 8285
## 8286
## 8287
## 8288 Estate
## 8289 Estate
## 8290 The Rocker
## 8291 Vieilles Vignes
## 8292 The Gimblett Gimblett Gravels
## 8293 Frechau Reserve
## 8294 The Fusilier Proprietor's Reserve
## 8295 Cave Block Reserve
## 8296 Mia Madre
## 8297 Gaisberg Reserve
## 8298 The Audition Mount George Estate
## 8299 Old Vine
## 8300 Arise Proprietary
## 8301 Lamm Reserve
## 8302 Sauberg Tradition
## 8303 Rainbow Cuvée Estate Bottled
## 8304 Achleiten Smaragd
## 8305 Steinriegl Smaragd
## 8306
## 8307 Riserva
## 8308 Biglieri Vineyard
## 8309
## 8310 Hundsleiten Reserve
## 8311 Carla's Reserve
## 8312 Von Stein Reserve
## 8313 Ne Cede Malis Estate Grown
## 8314 Loisium Weingarten Reserve
## 8315 Biserno
## 8316
## 8317 Madrone Spring Vineyard
## 8318 Napa Crest
## 8319
## 8320
## 8321
## 8322 Late Harvest
## 8323 Cass Vineyard Cumulus
## 8324 Chelle den Millie Vineyard
## 8325 Dreamweaver
## 8326
## 8327
## 8328 Tradition
## 8329 Late Harvest
## 8330
## 8331 Estate
## 8332 Copeland Vineyard
## 8333 Riserva Ambrosia
## points price province
## 1 87 NA Sicily & Sardinia
## 2 87 15 Douro
## 3 87 14 Oregon
## 4 87 13 Michigan
## 5 87 65 Oregon
## 6 87 15 Northern Spain
## 7 87 16 Sicily & Sardinia
## 8 87 24 Alsace
## 9 87 12 Rheinhessen
## 10 87 27 Alsace
## 11 87 19 California
## 12 87 30 Alsace
## 13 87 34 California
## 14 87 NA Sicily & Sardinia
## 15 87 12 California
## 16 87 24 Mosel
## 17 87 30 Other
## 18 87 13 Mendoza Province
## 19 87 28 Northern Spain
## 20 87 32 Virginia
## 21 87 23 Virginia
## 22 87 20 Oregon
## 23 87 19 Sicily & Sardinia
## 24 87 22 California
## 25 87 35 Sicily & Sardinia
## 26 87 69 California
## 27 87 13 Sicily & Sardinia
## 28 87 10 Sicily & Sardinia
## 29 87 17 Sicily & Sardinia
## 30 86 16 California
## 31 86 NA Beaujolais
## 32 86 NA Sicily & Sardinia
## 33 86 NA Sicily & Sardinia
## 34 86 50 California
## 35 86 20 California
## 36 86 50 Oregon
## 37 86 15 Colchagua Valley
## 38 86 21 Sicily & Sardinia
## 39 86 11 Southern Italy
## 40 86 12 Sicily & Sardinia
## 41 86 17 Sicily & Sardinia
## 42 86 22 Oregon
## 43 86 9 Beaujolais
## 44 86 14 California
## 45 86 9 Maule Valley
## 46 86 40 Virginia
## 47 86 13 Sicily & Sardinia
## 48 86 13 California
## 49 86 16 Virginia
## 50 86 14 Beaujolais
## 51 86 NA Sicily & Sardinia
## 52 85 22 Colchagua Valley
## 53 85 14 Sicily & Sardinia
## 54 85 15 Bordeaux
## 55 85 NA Sicily & Sardinia
## 56 85 30 California
## 57 85 14 California
## 58 85 13 Sicily & Sardinia
## 59 85 13 Maipo Valley
## 60 86 55 Washington
## 61 86 100 California
## 62 86 17 Central Italy
## 63 86 25 Washington
## 64 86 58 Champagne
## 65 86 26 California
## 66 86 24 Burgundy
## 67 86 15 Burgundy
## 68 86 46 Washington
## 69 86 12 California
## 70 86 55 Champagne
## 71 86 12 Washington
## 72 86 40 California
## 73 86 32 Southern Italy
## 74 86 75 California
## 75 86 55 California
## 76 86 75 California
## 77 86 9 Rheinhessen
## 78 86 18 South Australia
## 79 86 25 Oregon
## 80 86 NA Tejo
## 81 86 12 Rapel Valley
## 82 86 16 Galicia
## 83 86 11 France Other
## 84 86 20 South Australia
## 85 86 24 California
## 86 86 10 Rheinhessen
## 87 86 20 Washington
## 88 86 55 California
## 89 86 29 Tuscany
## 90 88 19 Tuscany
## 91 88 23 California
## 92 88 18 California
## 93 88 55 California
## 94 88 12 Burgenland
## 95 88 22 Washington
## 96 88 20 Beaujolais
## 97 88 18 Beaujolais
## 98 88 20 New York
## 99 88 30 Tuscany
## 100 88 75 California
## 101 88 18 New York
## 102 87 20 New York
## 103 87 20 New York
## 104 87 18 Leyda Valley
## 105 87 16 Tuscany
## 106 87 14 Tuscany
## 107 87 30 Tuscany
## 108 87 18 Tuscany
## 109 87 26 California
## 110 87 30 Tuscany
## 111 87 23 Beaujolais
## 112 87 85 California
## 113 87 15 Tuscany
## 114 87 19 Tuscany
## 115 87 18 California
## 116 87 18 California
## 117 87 25 California
## 118 87 44 California
## 119 87 80 Tuscany
## 120 92 80 Alsace
## 121 92 70 Piedmont
## 122 92 36 California
## 123 92 39 California
## 124 92 40 South Australia
## 125 92 45 California
## 126 91 45 Stellenbosch
## 127 91 48 Alsace
## 128 91 13 Alsace
## 129 91 17 Alsace
## 130 91 25 Stellenbosch
## 131 91 70 Piedmont
## 132 91 20 Alsace
## 133 91 30 Simonsberg-Stellenbosch
## 134 91 68 Piedmont
## 135 91 78 California
## 136 91 60 Piedmont
## 137 91 50 Bordeaux
## 138 90 NA Walker Bay
## 139 90 10 Alsace
## 140 90 112 Alsace
## 141 90 26 Piedmont
## 142 90 45 Piedmont
## 143 90 17 California
## 144 90 84 Alsace
## 145 91 85 California
## 146 91 64 California
## 147 91 68 California
## 148 91 68 California
## 149 91 16 Rheinhessen
## 150 91 35 California
## 151 91 25 California
## 152 91 30 Alentejano
## 153 91 55 California
## 154 91 46 California
## 155 91 50 Central Spain
## 156 91 36 California
## 157 91 14 Mosel
## 158 91 26 Alentejano
## 159 91 38 Tuscany
## 160 91 NA Tuscany
## 161 91 35 Southwest France
## 162 91 35 California
## 163 91 28 California
## 164 91 NA Beaujolais
## 165 91 29 Aconcagua Valley
## 166 91 32 Maipo Valley
## 167 91 25 Southwest France
## 168 91 28 California
## 169 91 95 California
## 170 91 44 California
## 171 91 30 Mosel
## 172 91 22 Mosel
## 173 91 20 Loncomilla Valley
## 174 91 38 Oregon
## 175 88 19 Marlborough
## 176 88 25 Northeastern Italy
## 177 88 50 Maipo Valley
## 178 88 22 Tuscany
## 179 88 25 California
## 180 88 27 Burgundy
## 181 88 23 California
## 182 88 36 California
## 183 88 NA Tuscany
## 184 88 12 Other
## 185 88 35 California
## 186 88 15 Colchagua Valley
## 187 88 40 California
## 188 88 48 Sicily & Sardinia
## 189 88 11 Colchagua Valley
## 190 87 11 Casablanca Valley
## 191 87 26 Southern Italy
## 192 87 30 South Australia
## 193 87 20 Veneto
## 194 87 35 Burgundy
## 195 87 NA Tuscany
## 196 87 35 Tuscany
## 197 87 18 Tuscany
## 198 90 23 Western Cape
## 199 90 60 California
## 200 90 28 California
## 201 90 NA Tuscany
## 202 90 62 Northeastern Italy
## 203 90 50 Judean Hills
## 204 90 28 Alentejo
## 205 90 30 California
## 206 90 25 California
## 207 90 25 California
## 208 90 32 California
## 209 90 40 Coastal Region
## 210 90 16 Rhône Valley
## 211 90 20 Western Cape
## 212 90 32 Rhône Valley
## 213 90 40 Northern Spain
## 214 90 48 California
## 215 90 36 California
## 216 90 80 Galilee
## 217 90 57 Tuscany
## 218 90 20 Beira Atlantico
## 219 90 20 California
## 220 90 36 Tokaj
## 221 90 40 California
## 222 90 40 Northeastern Italy
## 223 90 NA Tuscany
## 224 90 NA Northeastern Italy
## 225 90 22 Mendoza Province
## 226 90 25 Stellenbosch
## 227 90 20 Stellenbosch
## 228 85 15 New York
## 229 85 14 New York
## 230 85 18 California
## 231 85 16 New York
## 232 85 10 Mendoza Province
## 233 85 12 South Australia
## 234 85 28 Oregon
## 235 85 10 Central Italy
## 236 85 49 California
## 237 85 85 California
## 238 85 18 Central Italy
## 239 85 29 South Australia
## 240 85 36 California
## 241 85 9 Southwest France
## 242 85 34 California
## 243 85 15 California
## 244 85 30 New York
## 245 85 13 Northern Spain
## 246 85 12 Other
## 247 85 15 South Australia
## 248 85 25 California
## 249 85 45 Oregon
## 250 85 18 Virginia
## 251 85 49 California
## 252 85 22 Oregon
## 253 85 35 California
## 254 85 15 Mendoza Province
## 255 89 45 California
## 256 89 55 California
## 257 89 20 Coastal Region
## 258 89 18 Coastal Region
## 259 89 35 Stellenbosch
## 260 89 13 Southwest France
## 261 89 40 Oregon
## 262 89 37 Mendoza Province
## 263 89 39 California
## 264 89 60 California
## 265 89 19 Stellenbosch
## 266 89 40 Stellenbosch
## 267 89 14 Mendoza Province
## 268 89 40 Central Italy
## 269 89 36 Veneto
## 270 89 17 Leithaberg
## 271 89 25 Northeastern Italy
## 272 89 15 Santorini
## 273 89 26 Northeastern Italy
## 274 89 19 Mendoza Province
## 275 89 13 Piedmont
## 276 89 30 Mendoza Province
## 277 89 20 California
## 278 89 30 California
## 279 89 50 Oregon
## 280 89 52 Northeastern Italy
## 281 92 24 Kremstal
## 282 92 34 California
## 283 92 41 Tuscany
## 284 92 52 Oregon
## 285 92 215 Mendoza Province
## 286 92 NA Kremstal
## 287 92 60 California
## 288 92 40 Catalonia
## 289 92 NA Kremstal
## 290 92 125 California
## 291 92 NA Bordeaux
## 292 92 NA Central Italy
## 293 92 45 France Other
## 294 92 70 South Australia
## 295 92 30 Mendoza Province
## 296 87 35 California
## 297 87 20 Maipo Valley
## 298 87 15 California
## 299 87 19 Aconcagua Valley
## 300 87 NA Piedmont
## 301 87 28 California
## 302 87 14 Washington
## 303 87 NA Piedmont
## 304 87 56 Piedmont
## 305 87 NA Piedmont
## 306 87 24 California
## 307 87 7 Recas
## 308 87 30 Burgundy
## 309 87 18 Santorini
## 310 87 20 Piedmont
## 311 87 18 Piedmont
## 312 87 18 Hawke's Bay
## 313 87 40 California
## 314 87 NA Piedmont
## 315 87 28 California
## 316 86 15 Veneto
## 317 86 NA Bordeaux
## 318 86 NA Bordeaux
## 319 86 18 Curicó Valley
## 320 86 20 Veneto
## 321 86 22 Veneto
## 322 86 16 Veneto
## 323 86 18 Veneto
## 324 86 35 Colchagua Valley
## 325 86 12 Veneto
## 326 86 11 New York
## 327 86 15 Veneto
## 328 86 18 Limarí Valley
## 329 86 16 California
## 330 86 34 California
## 331 86 40 California
## 332 86 15 Casablanca Valley
## 333 86 19 Veneto
## 334 86 18 Veneto
## 335 86 42 Champagne
## 336 86 15 Veneto
## 337 83 35 Colchagua Costa
## 338 83 16 Languedoc-Roussillon
## 339 82 11 Provence
## 340 82 13 Catalonia
## 341 82 18 Alsace
## 342 82 48 California
## 343 82 11 Catalonia
## 344 81 20 Rapel Valley
## 345 80 19 Leyda Valley
## 346 100 350 Victoria
## 347 98 350 Victoria
## 348 97 775 Rheingau
## 349 97 100 Victoria
## 350 97 225 South Australia
## 351 97 150 Piedmont
## 352 96 320 Tokaji
## 353 96 68 California
## 354 96 630 Burgundy
## 355 96 365 Rheingau
## 356 96 68 California
## 357 95 85 Victoria
## 358 95 350 Burgundy
## 359 95 66 Rheingau
## 360 95 110 Burgundy
## 361 95 125 South Australia
## 362 95 60 Piedmont
## 363 95 200 California
## 364 95 380 Burgundy
## 365 95 48 Oregon
## 366 95 60 South Australia
## 367 88 21 Northeastern Italy
## 368 88 10 Maipo Valley
## 369 88 11 Veneto
## 370 88 21 Northeastern Italy
## 371 88 160 California
## 372 88 23 Northeastern Italy
## 373 88 10 Veneto
## 374 88 15 Northeastern Italy
## 375 88 19 California
## 376 88 40 Tuscany
## 377 88 18 Northeastern Italy
## 378 88 NA Naoussa
## 379 88 18 Valle de Guadalupe
## 380 88 15 Northeastern Italy
## 381 88 12 Rapel Valley
## 382 88 11 Veneto
## 383 88 15 Maipo Valley
## 384 88 9 Veneto
## 385 88 30 Northeastern Italy
## 386 88 18 California
## 387 88 34 California
## 388 88 17 California
## 389 88 25 California
## 390 88 15 Northeastern Italy
## 391 88 12 Maipo Valley
## 392 88 14 Central Valley
## 393 87 12 California
## 394 87 11 Lontué Valley
## 395 87 12 Maipo Valley
## 396 87 NA Northeastern Italy
## 397 85 16 California
## 398 85 15 Colchagua Valley
## 399 85 13 Curicó Valley
## 400 85 24 Veneto
## 401 85 13 Italy Other
## 402 85 19 Veneto
## 403 85 11 Colchagua Valley
## 404 85 15 California
## 405 85 45 California
## 406 85 19 Veneto
## 407 85 30 Champagne
## 408 85 14 Casablanca Valley
## 409 85 15 Veneto
## 410 85 20 New York
## 411 85 20 New York
## 412 85 12 California
## 413 85 20 Veneto
## 414 85 13 Veneto
## 415 85 16 Veneto
## 416 85 14 New York
## 417 85 14 Veneto
## 418 85 NA Veneto
## 419 85 NA Burgenland
## 420 89 20 Bordeaux
## 421 89 NA Bordeaux
## 422 89 30 Washington
## 423 89 20 Washington
## 424 89 23 Weinviertel
## 425 89 30 California
## 426 89 18 New York
## 427 89 18 Northern Spain
## 428 89 35 New York
## 429 89 17 Kremstal
## 430 89 42 Washington
## 431 89 30 California
## 432 89 24 California
## 433 89 16 Washington
## 434 89 27 California
## 435 89 89 Piedmont
## 436 89 NA Thermenregion
## 437 89 15 Piedmont
## 438 89 54 California
## 439 89 15 Northern Spain
## 440 89 42 Northern Spain
## 441 89 38 Washington
## 442 89 12 Niederösterreich
## 443 89 35 New York
## 444 88 32 California
## 445 88 12 Wagram
## 446 88 28 Sicily & Sardinia
## 447 88 20 California
## 448 88 14 Loire Valley
## 449 88 19 Rhône Valley
## 450 92 39 Lombardy
## 451 92 NA Champagne
## 452 92 35 Tuscany
## 453 92 NA Burgundy
## 454 92 69 Champagne
## 455 92 30 Ontario
## 456 92 40 California
## 457 92 23 California
## 458 92 45 California
## 459 92 50 Lombardy
## 460 92 100 Champagne
## 461 92 50 Oregon
## 462 92 29 Oregon
## 463 92 66 Burgundy
## 464 92 60 Champagne
## 465 92 115 Rheinhessen
## 466 92 69 Veneto
## 467 92 NA Champagne
## 468 92 65 Oregon
## 469 92 42 Mosel
## 470 92 27 Mosel
## 471 92 70 Champagne
## 472 92 73 Burgundy
## 473 92 72 Burgundy
## 474 92 34 Alentejano
## 475 92 NA Champagne
## 476 92 130 California
## 477 92 88 California
## 478 92 65 Bordeaux
## 479 92 NA Champagne
## 480 87 15 Sicily & Sardinia
## 481 87 45 Washington
## 482 87 18 Sicily & Sardinia
## 483 87 60 California
## 484 87 12 Stellenbosch
## 485 87 12 Western Cape
## 486 87 13 Rhône Valley
## 487 87 13 California
## 488 87 15 Northeastern Italy
## 489 87 18 Northeastern Italy
## 490 87 13 Northeastern Italy
## 491 87 19 Catalonia
## 492 87 18 Kremstal
## 493 87 30 Washington
## 494 87 35 Washington
## 495 87 12 New York
## 496 87 18 California
## 497 87 25 Northern Spain
## 498 87 30 California
## 499 87 17 California
## 500 87 20 Provence
## 501 87 11 Northern Spain
## 502 87 15 California
## 503 87 18 Österreichischer Sekt
## 504 87 19 California
## 505 87 15 Rhône Valley
## 506 87 16 Northern Spain
## 507 87 12 Northeastern Italy
## 508 87 28 Washington
## 509 87 28 Washington
## 510 91 65 California
## 511 91 48 California
## 512 91 70 Champagne
## 513 91 59 Champagne
## 514 91 90 California
## 515 91 35 Colchagua Valley
## 516 91 75 California
## 517 91 55 California
## 518 91 55 California
## 519 91 60 Burgundy
## 520 91 36 California
## 521 91 35 California
## 522 91 35 California
## 523 91 55 Oregon
## 524 91 65 Oregon
## 525 91 35 Washington
## 526 91 49 California
## 527 91 55 Oregon
## 528 91 30 Rheinhessen
## 529 91 42 Champagne
## 530 91 45 California
## 531 91 24 Colchagua Valley
## 532 91 50 Oregon
## 533 91 50 Oregon
## 534 91 50 Oregon
## 535 91 38 California
## 536 91 22 Mosel
## 537 91 50 Washington
## 538 91 110 California
## 539 91 45 Oregon
## 540 93 42 California
## 541 93 60 California
## 542 93 42 California
## 543 93 30 Northeastern Italy
## 544 93 75 California
## 545 93 54 California
## 546 93 85 California
## 547 93 50 California
## 548 93 150 California
## 549 93 85 California
## 550 93 90 Piedmont
## 551 93 35 California
## 552 93 46 California
## 553 93 20 Provence
## 554 93 42 Mendoza Province
## 555 93 40 Provence
## 556 93 75 Washington
## 557 93 88 Northern Spain
## 558 93 40 California
## 559 93 25 California
## 560 93 48 California
## 561 93 45 California
## 562 93 50 California
## 563 93 65 California
## 564 93 48 California
## 565 93 62 California
## 566 93 100 California
## 567 93 53 California
## 568 93 55 Mendoza Province
## 569 93 70 California
## 570 89 38 Washington
## 571 89 50 Washington
## 572 89 25 California
## 573 89 15 Piedmont
## 574 89 14 Bordeaux
## 575 89 11 Rhône Valley
## 576 89 14 Bordeaux
## 577 89 37 Bordeaux
## 578 89 17 New York
## 579 89 15 Bordeaux
## 580 89 13 California
## 581 89 18 Washington
## 582 89 26 Washington
## 583 89 18 Washington
## 584 89 32 California
## 585 89 18 Kamptal
## 586 89 25 Washington
## 587 89 18 Steiermark
## 588 89 20 Südsteiermark
## 589 89 18 California
## 590 89 NA Burgenland
## 591 89 17 California
## 592 89 13 Niederösterreich
## 593 89 41 Washington
## 594 89 16 Niederösterreich
## 595 89 20 Rhône Valley
## 596 89 30 Washington
## 597 89 13 Crete
## 598 89 24 Kremstal
## 599 89 36 California
## 600 87 20 California
## 601 87 19 Piedmont
## 602 87 15 Valle de Guadalupe
## 603 87 69 California
## 604 87 36 New York
## 605 87 35 Northern Spain
## 606 87 30 Mendoza Province
## 607 87 25 Oregon
## 608 87 25 Oregon
## 609 87 15 Douro
## 610 87 20 Oregon
## 611 87 17 California
## 612 87 54 California
## 613 87 40 California
## 614 87 12 Vinho Verde
## 615 87 19 Veneto
## 616 87 11 Mendoza Province
## 617 87 45 California
## 618 87 25 Veneto
## 619 87 35 California
## 620 87 16 Piedmont
## 621 87 20 Veneto
## 622 87 28 California
## 623 87 25 Idaho
## 624 87 28 Idaho
## 625 87 20 Idaho
## 626 87 15 Veneto
## 627 87 23 Veneto
## 628 87 19 Piedmont
## 629 92 35 South Australia
## 630 92 75 California
## 631 92 48 Oregon
## 632 92 54 Alsace
## 633 92 34 Alsace
## 634 92 60 Victoria
## 635 92 48 California
## 636 92 28 Northern Spain
## 637 92 125 South Australia
## 638 92 45 Alsace
## 639 92 36 Alsace
## 640 92 30 Alsace
## 641 92 37 California
## 642 92 25 California
## 643 92 30 Alentejano
## 644 92 60 California
## 645 92 40 California
## 646 92 50 Oregon
## 647 92 23 Tejo
## 648 92 80 Douro
## 649 92 34 Mosel
## 650 92 75 California
## 651 92 24 Northeastern Italy
## 652 92 39 Alsace
## 653 92 21 Western Australia
## 654 92 35 California
## 655 92 43 Alsace
## 656 92 30 California
## 657 92 70 Oregon
## 658 92 50 Coastal Region
## 659 90 40 California
## 660 90 45 Washington
## 661 90 80 California
## 662 90 15 California
## 663 90 65 Piedmont
## 664 90 65 California
## 665 90 35 Piedmont
## 666 90 25 Piedmont
## 667 90 20 Washington
## 668 90 15 Levante
## 669 90 26 New York
## 670 90 30 Washington
## 671 90 13 Washington
## 672 90 45 California
## 673 90 26 New York
## 674 90 44 California
## 675 90 38 California
## 676 90 28 California
## 677 90 32 Washington
## 678 90 50 Tuscany
## 679 90 35 Tuscany
## 680 90 35 Washington
## 681 90 25 Northern Spain
## 682 90 42 Washington
## 683 90 45 Piedmont
## 684 90 70 Tuscany
## 685 90 30 Washington
## 686 90 75 California
## 687 90 53 Piedmont
## 688 90 29 California
## 689 91 90 Washington
## 690 91 35 California
## 691 91 35 Burgenland
## 692 91 50 California
## 693 91 35 Tuscany
## 694 91 65 California
## 695 91 50 Stellenbosch
## 696 91 43 Tuscany
## 697 91 28 Marlborough
## 698 91 NA Wagram
## 699 91 20 Washington
## 700 91 40 Simonsberg-Stellenbosch
## 701 91 30 Mendoza Province
## 702 91 65 Provence
## 703 91 17 Provence
## 704 91 NA Provence
## 705 91 20 Provence
## 706 91 28 Marlborough
## 707 91 20 Provence
## 708 91 20 Provence
## 709 91 25 Provence
## 710 91 38 California
## 711 91 120 Martinborough
## 712 91 23 California
## 713 91 48 California
## 714 91 32 California
## 715 91 50 Central Otago
## 716 91 28 Mendoza Province
## 717 91 30 Central Otago
## 718 91 25 Provence
## 719 85 8 Lisboa
## 720 85 15 Burgundy
## 721 85 22 Alentejano
## 722 85 14 Mendoza Province
## 723 85 25 Mendoza Province
## 724 85 8 Vinho Verde
## 725 85 14 Texas
## 726 85 80 Piedmont
## 727 85 9 Vinho Verde
## 728 85 13 Oregon
## 729 85 17 Other
## 730 85 10 Alentejano
## 731 85 16 California
## 732 85 10 France Other
## 733 85 22 Burgundy
## 734 85 40 Burgundy
## 735 85 15 Mendoza Province
## 736 85 17 Other
## 737 85 32 California
## 738 85 12 Península de Setúbal
## 739 85 17 Mendoza Province
## 740 85 102 Piedmont
## 741 85 NA Texas
## 742 85 10 Burgundy
## 743 85 20 Burgundy
## 744 85 33 California
## 745 85 48 Piedmont
## 746 85 12 Alentejo
## 747 85 9 Australia Other
## 748 87 24 California
## 749 87 75 New York
## 750 87 12 Alsace
## 751 87 45 California
## 752 87 13 Central Valley
## 753 87 NA Alsace
## 754 87 22 California
## 755 87 10 Northern Spain
## 756 87 18 California
## 757 87 35 California
## 758 87 36 California
## 759 87 34 California
## 760 87 70 California
## 761 87 28 California
## 762 87 19 Colchagua Valley
## 763 87 14 Northern Spain
## 764 87 10 Northern Spain
## 765 87 45 California
## 766 87 32 California
## 767 87 18 Tasmania
## 768 87 9 Northern Spain
## 769 87 11 Australia Other
## 770 87 30 Southern Italy
## 771 92 62 Champagne
## 772 92 40 California
## 773 92 66 Champagne
## 774 92 32 Alentejo
## 775 92 70 Oregon
## 776 92 48 Oregon
## 777 92 72 Champagne
## 778 92 18 Northeastern Italy
## 779 92 105 Oregon
## 780 92 101 Champagne
## 781 92 50 Tuscany
## 782 92 85 Northeastern Italy
## 783 92 35 California
## 784 92 38 California
## 785 90 32 Douro
## 786 90 25 Other
## 787 90 12 Douro
## 788 90 125 California
## 789 90 46 Mendoza Province
## 790 90 29 Mosel
## 791 90 17 Washington
## 792 90 85 Oregon
## 793 90 30 Bordeaux
## 794 90 34 Washington
## 795 90 22 California
## 796 90 35 Bordeaux
## 797 90 45 Bordeaux
## 798 90 20 Bordeaux
## 799 90 17 Bordeaux
## 800 90 45 Bordeaux
## 801 90 20 California
## 802 90 50 California
## 803 90 22 Beaujolais
## 804 90 39 Washington
## 805 90 35 Washington
## 806 90 15 Oregon
## 807 90 27 California
## 808 90 66 Victoria
## 809 90 32 Central Italy
## 810 90 20 Central Spain
## 811 90 125 California
## 812 90 16 Franken
## 813 90 42 California
## 814 90 22 South Australia
## 815 86 NA Tuscany
## 816 86 18 Washington
## 817 86 22 New York
## 818 86 12 Colchagua Valley
## 819 86 15 Beaujolais
## 820 86 9 Southwest France
## 821 86 12 Northern Spain
## 822 86 15 Catalonia
## 823 86 20 Tuscany
## 824 86 28 California
## 825 86 10 California
## 826 86 70 Tuscany
## 827 86 28 Tuscany
## 828 86 11 Curicó Valley
## 829 86 30 Southwest France
## 830 86 26 Washington
## 831 86 15 Beaujolais
## 832 86 23 Beaujolais
## 833 86 NA Beaujolais
## 834 86 30 Piedmont
## 835 86 10 Loncomilla Valley
## 836 86 12 Beaujolais
## 837 86 13 Catalonia
## 838 86 15 Catalonia
## 839 86 36 Washington
## 840 86 20 New York
## 841 86 NA Beaujolais
## 842 86 10 California
## 843 86 16 Beaujolais
## 844 86 25 Washington
## 845 90 24 Sicily & Sardinia
## 846 90 NA Sicily & Sardinia
## 847 90 24 Alsace
## 848 90 33 Alsace
## 849 90 NA Burgundy
## 850 90 70 Burgundy
## 851 90 117 Burgundy
## 852 90 NA Burgundy
## 853 90 16 Alsace
## 854 90 30 Mosel
## 855 90 20 California
## 856 90 35 California
## 857 90 25 Southern Italy
## 858 90 28 California
## 859 90 15 Oregon
## 860 90 150 California
## 861 90 45 California
## 862 90 30 Sicily & Sardinia
## 863 90 19 Sicily & Sardinia
## 864 90 45 California
## 865 90 40 Ahr
## 866 90 NA Sicily & Sardinia
## 867 90 25 South Australia
## 868 90 40 Oregon
## 869 90 15 Colchagua Valley
## 870 90 42 California
## 871 90 29 California
## 872 90 42 California
## 873 90 18 Oregon
## 874 90 16 Tokaji
## 875 90 40 Douro
## 876 90 NA Douro
## 877 90 50 Catalonia
## 878 90 NA Tuscany
## 879 90 35 Bordeaux
## 880 90 45 Bordeaux
## 881 90 20 California
## 882 90 44 Catalonia
## 883 90 22 California
## 884 90 NA Tuscany
## 885 90 28 California
## 886 90 27 California
## 887 90 25 Languedoc-Roussillon
## 888 90 60 Douro
## 889 90 72 Washington
## 890 90 44 California
## 891 90 28 California
## 892 90 29 California
## 893 90 58 Washington
## 894 90 15 Australia Other
## 895 90 29 Tuscany
## 896 90 45 Tuscany
## 897 90 70 California
## 898 90 39 Washington
## 899 90 NA Tuscany
## 900 90 28 Tuscany
## 901 90 48 Catalonia
## 902 90 50 Douro
## 903 87 22 Texas
## 904 87 10 Nahe
## 905 87 50 Piedmont
## 906 87 30 Texas
## 907 87 18 Texas
## 908 87 30 Vinho Verde
## 909 87 39 Piedmont
## 910 87 35 Piedmont
## 911 87 30 Mendoza Province
## 912 87 23 France Other
## 913 87 18 Oregon
## 914 87 30
## 915 87 20 Other
## 916 87 25 Oregon
## 917 87 20 Oregon
## 918 87 50 Piedmont
## 919 87 50 Piedmont
## 920 87 15 Mendoza Province
## 921 87 NA Australia Other
## 922 87 9 Tejo
## 923 87 12 Mendoza Province
## 924 87 14 Tejo
## 925 87 18 South Australia
## 926 87 20 California
## 927 87 175 Mendoza Province
## 928 87 12 Vinho Verde
## 929 87 60 Piedmont
## 930 87 20 California
## 931 87 15 Mendoza Province
## 932 87 35 Piedmont
## 933 87 14 Bordeaux
## 934 87 16 Bordeaux
## 935 87 15 Bordeaux
## 936 87 14 Bordeaux
## 937 87 40 Oregon
## 938 87 29 Oregon
## 939 87 15 Northern Spain
## 940 87 55 California
## 941 87 38 Champagne
## 942 87 15 Levante
## 943 87 34 California
## 944 87 18 Northern Spain
## 945 87 27 Oregon
## 946 87 17 California
## 947 87 65 California
## 948 87 13 Douro
## 949 87 15 Alentejano
## 950 87 23 Piedmont
## 951 87 40 California
## 952 87 32 California
## 953 87 16 Catalonia
## 954 87 38 Oregon
## 955 87 15 California
## 956 87 50 Piedmont
## 957 87 30 Southern Italy
## 958 87 24 California
## 959 87 18 Northern Spain
## 960 87 40 Champagne
## 961 87 18 Bordeaux
## 962 87 20 Bordeaux
## 963 85 40 Champagne
## 964 85 11 Bordeaux
## 965 85 17 Lombardy
## 966 85 48 Southern Italy
## 967 85 9 Marlborough
## 968 85 10 Casablanca Valley
## 969 85 NA Veneto
## 970 85 9 Maipo Valley
## 971 85 19 California
## 972 85 15 Champagne
## 973 85 23 California
## 974 85 35 California
## 975 85 30 Washington
## 976 85 12 Sicily & Sardinia
## 977 85 17 California
## 978 85 16 California
## 979 85 15 California
## 980 85 10 Bordeaux
## 981 85 41 Veneto
## 982 85 10 Bordeaux
## 983 85 16 Veneto
## 984 85 25 California
## 985 85 12 Dealu Mare
## 986 88 20 Mendoza Province
## 987 88 NA Port
## 988 88 25 South Australia
## 989 88 20 Oregon
## 990 88 53 Northern Spain
## 991 88 12 California
## 992 88 NA Southwest France
## 993 88 14 Southwest France
## 994 88 12 Southwest France
## 995 88 22 Loire Valley
## 996 88 26 Sicily & Sardinia
## 997 88 14 Sicily & Sardinia
## 998 88 18 South Australia
## 999 88 18 Oregon
## 1000 88 17 Oregon
## 1001 88 24 Oregon
## 1002 88 41 Sicily & Sardinia
## 1003 88 60 Oregon
## 1004 88 26 Southwest France
## 1005 88 25 Southwest France
## 1006 88 16 Loire Valley
## 1007 88 40 Oregon
## 1008 88 21 Loire Valley
## 1009 88 14 South Australia
## 1010 88 18 Maipo Valley
## 1011 88 75 Oregon
## 1012 88 16 New York
## 1013 88 NA Sicily & Sardinia
## 1014 88 45 Sicily & Sardinia
## 1015 88 42 California
## 1016 88 48 California
## 1017 88 22 Sicily & Sardinia
## 1018 88 22 Sicily & Sardinia
## 1019 88 20 Alsace
## 1020 88 125 California
## 1021 88 14 Oregon
## 1022 88 20 Mendoza Province
## 1023 88 27 Sicily & Sardinia
## 1024 88 25 Galilee
## 1025 88 28 Alsace
## 1026 88 42 California
## 1027 88 13 Oregon
## 1028 88 34 Oregon
## 1029 88 19 Northern Spain
## 1030 88 18 Northern Spain
## 1031 88 60 California
## 1032 88 28 Northern Spain
## 1033 88 16 Marlborough
## 1034 88 22 California
## 1035 88 10 Alsace
## 1036 88 12 Sicily & Sardinia
## 1037 88 28 Sicily & Sardinia
## 1038 88 28 Oregon
## 1039 87 20 Hawke's Bay
## 1040 87 15 Galicia
## 1041 87 15 Mendoza Province
## 1042 87 70 Hawke's Bay
## 1043 85 15 Northern Spain
## 1044 85 20 Niederösterreich
## 1045 85 17 Northeastern Italy
## 1046 85 24 Oregon
## 1047 85 28 Northeastern Italy
## 1048 85 16 California
## 1049 85 12 Languedoc-Roussillon
## 1050 85 12 Languedoc-Roussillon
## 1051 85 10 California
## 1052 85 25 Galicia
## 1053 85 12 California
## 1054 85 30 Northern Spain
## 1055 85 19 Northeastern Italy
## 1056 85 24 Kremstal
## 1057 85 10 Niederösterreich
## 1058 85 11 Central Valley
## 1059 85 16 California
## 1060 85 NA Northeastern Italy
## 1061 85 11 Southwest France
## 1062 85 25 France Other
## 1063 85 NA Northeastern Italy
## 1064 85 20 Darling
## 1065 85 NA Sicily & Sardinia
## 1066 94 50 Port
## 1067 94 38 California
## 1068 94 34 California
## 1069 94 100 Oregon
## 1070 94 95 Oregon
## 1071 94 62 Oregon
## 1072 94 57 Piedmont
## 1073 94 150 Douro
## 1074 94 78 Port
## 1075 94 100 South Australia
## 1076 94 52 California
## 1077 94 112 Loire Valley
## 1078 94 180 Piedmont
## 1079 94 35 Oregon
## 1080 94 85 Oregon
## 1081 94 32 Oregon
## 1082 94 32 Oregon
## 1083 94 120 Oregon
## 1084 94 85 California
## 1085 94 120 Loire Valley
## 1086 94 38 California
## 1087 94 32 Oregon
## 1088 94 58 California
## 1089 94 85 Oregon
## 1090 94 80 California
## 1091 94 60 Port
## 1092 94 75 California
## 1093 94 50 Oregon
## 1094 94 60 Loire Valley
## 1095 94 60 Oregon
## 1096 90 28 California
## 1097 90 25 Maipo Valley
## 1098 90 15 Washington
## 1099 90 19 California
## 1100 90 40 California
## 1101 90 35 Maule Valley
## 1102 90 NA Niederösterreich
## 1103 90 45 California
## 1104 90 13 Washington
## 1105 90 15 Rhône Valley
## 1106 90 22 Piedmont
## 1107 90 35 Washington
## 1108 90 20 California
## 1109 90 38 California
## 1110 90 70 Tuscany
## 1111 90 60 Northern Spain
## 1112 90 25 Catalonia
## 1113 90 17 Rhône Valley
## 1114 90 15 Washington
## 1115 90 38 Tuscany
## 1116 90 27 Northern Spain
## 1117 90 10 California
## 1118 90 56 California
## 1119 90 18 Tuscany
## 1120 90 32 Southwest France
## 1121 90 24 France Other
## 1122 90 NA France Other
## 1123 84 16 New York
## 1124 84 40 Washington
## 1125 84 20 Washington
## 1126 84 38 California
## 1127 84 20 Bordeaux
## 1128 84 18 Bordeaux
## 1129 84 NA Bordeaux
## 1130 84 13 Maule Valley
## 1131 84 65 California
## 1132 84 16 Marlborough
## 1133 84 14 Bordeaux
## 1134 84 20 Bordeaux
## 1135 84 15 Bordeaux
## 1136 84 11 Chile
## 1137 84 27 California
## 1138 84 11 Sicily & Sardinia
## 1139 84 10 Southern Italy
## 1140 84 100 California
## 1141 84 25 New York
## 1142 84 18 Leyda Valley
## 1143 84 13 California
## 1144 84 28 California
## 1145 83 11 California
## 1146 83 12 Bordeaux
## 1147 83 NA Southern Italy
## 1148 83 17 Washington
## 1149 83 14 Sicily & Sardinia
## 1150 83 30 Bordeaux
## 1151 83 11 Central Valley
## 1152 83 45 New York
## 1153 87 24 Washington
## 1154 87 15 Südoststeiermark
## 1155 87 19 South Australia
## 1156 87 15 Corinth
## 1157 87 23 Kremstal
## 1158 87 60 California
## 1159 87 16 Burgenland
## 1160 87 21 Burgenland
## 1161 87 13 Halkidiki
## 1162 86 17 Veneto
## 1163 86 15 Veneto
## 1164 86 20 Veneto
## 1165 86 19 Veneto
## 1166 86 23 California
## 1167 86 18 California
## 1168 86 13 Veneto
## 1169 86 26 Washington
## 1170 86 13 Veneto
## 1171 86 17 Mendoza Province
## 1172 86 20 Rheinhessen
## 1173 86 48 California
## 1174 86 40 California
## 1175 86 12 Mendoza Province
## 1176 86 12 Burgenland
## 1177 86 18 Veneto
## 1178 88 14 Douro
## 1179 88 19 Mendoza Province
## 1180 88 10 Burgundy
## 1181 88 26 California
## 1182 88 50 Piedmont
## 1183 88 13 South Australia
## 1184 88 49 Piedmont
## 1185 88 50 Piedmont
## 1186 88 19 Alentejo
## 1187 88 14 Burgundy
## 1188 88 20 Thrace
## 1189 88 28 Burgundy
## 1190 88 70 Burgundy
## 1191 88 13 California
## 1192 88 40 Burgundy
## 1193 88 10 France Other
## 1194 88 16 Mendoza Province
## 1195 87 40 Mendoza Province
## 1196 87 20 Mendoza Province
## 1197 87 35 Oregon
## 1198 87 90 Piedmont
## 1199 87 25 Victoria
## 1200 87 13 South Australia
## 1201 87 10 Pfalz
## 1202 87 32 Burgundy
## 1203 87 26 Texas
## 1204 87 14 California
## 1205 87 10 Lisboa
## 1206 87 75 Piedmont
## 1207 87 35 Oregon
## 1208 93 80 Piedmont
## 1209 93 55 Douro
## 1210 93 24 California
## 1211 93 52 California
## 1212 93 115 California
## 1213 93 60 California
## 1214 93 40 California
## 1215 93 55 California
## 1216 93 28 Douro
## 1217 93 60 California
## 1218 93 33 Piedmont
## 1219 93 57 Central Italy
## 1220 93 75 California
## 1221 93 40 Bordeaux
## 1222 93 58 California
## 1223 93 55 California
## 1224 93 65 California
## 1225 93 75 Alentejo
## 1226 93 38 California
## 1227 93 49 California
## 1228 93 32 California
## 1229 93 55 California
## 1230 93 32 Douro
## 1231 93 65 California
## 1232 93 40 California
## 1233 92 50 California
## 1234 92 42 California
## 1235 92 60 California
## 1236 92 48 California
## 1237 92 36 California
## 1238 88 16 Tuscany
## 1239 88 9 Bordeaux
## 1240 88 35 Tuscany
## 1241 88 40 Bordeaux
## 1242 88 13 Washington
## 1243 88 17 Robertson
## 1244 88 20 Pfalz
## 1245 88 50 California
## 1246 88 35 Stellenbosch
## 1247 88 40 California
## 1248 88 13 Robertson
## 1249 88 50 Washington
## 1250 88 20 Washington
## 1251 88 NA Tuscany
## 1252 88 22 Pfalz
## 1253 88 12 Pfalz
## 1254 88 7 Washington
## 1255 88 10 Washington
## 1256 88 15 Stellenbosch
## 1257 88 40 California
## 1258 88 21 Northern Spain
## 1259 88 90 Tuscany
## 1260 85 7 Central Spain
## 1261 85 22 Sicily & Sardinia
## 1262 85 NA Sicily & Sardinia
## 1263 85 20 California
## 1264 85 13 New York
## 1265 85 35 California
## 1266 85 12 Dan
## 1267 85 16 Michigan
## 1268 85 20 California
## 1269 85 12 Sicily & Sardinia
## 1270 85 30 Galicia
## 1271 85 34 California
## 1272 85 26 California
## 1273 84 NA Sicily & Sardinia
## 1274 84 15 California
## 1275 84 28 Sicily & Sardinia
## 1276 84 10 California
## 1277 84 70 California
## 1278 84 24 California
## 1279 84 10 Sicily & Sardinia
## 1280 84 NA Vinho Verde
## 1281 84 8 Central Spain
## 1282 84 27 Northern Spain
## 1283 84 10 New York
## 1284 84 10 Sicily & Sardinia
## 1285 84 NA Burgundy
## 1286 84 17 Marlborough
## 1287 89 20 Southern Italy
## 1288 89 35 California
## 1289 89 19 Northeastern Italy
## 1290 89 13 Rheinhessen
## 1291 89 48 Northeastern Italy
## 1292 89 26 Northeastern Italy
## 1293 89 13 Northeastern Italy
## 1294 89 75 California
## 1295 89 30 Catalonia
## 1296 89 25 California
## 1297 89 14 Loire Valley
## 1298 89 20 Northwestern Italy
## 1299 89 36 California
## 1300 89 49 Northeastern Italy
## 1301 89 35 California
## 1302 89 20 Loire Valley
## 1303 89 21 Loire Valley
## 1304 89 28 Rheingau
## 1305 89 20 Mosel
## 1306 89 18 Andalucia
## 1307 89 20 Catalonia
## 1308 89 40 Oregon
## 1309 89 13 Vinho Verde
## 1310 89 45 California
## 1311 89 40 California
## 1312 89 32 California
## 1313 89 15 Northeastern Italy
## 1314 89 34 California
## 1315 89 40 Northeastern Italy
## 1316 89 20 Northeastern Italy
## 1317 90 20 Southern Italy
## 1318 90 42 California
## 1319 90 98 California
## 1320 90 25 Awatere Valley
## 1321 90 18 Wiener Gemischter Satz
## 1322 90 25 Catalonia
## 1323 90 15 Kamptal
## 1324 90 36 Catalonia
## 1325 90 35 California
## 1326 90 56 California
## 1327 90 33 Northern Spain
## 1328 90 25 Central Otago
## 1329 90 38 California
## 1330 90 28 Southwest France
## 1331 90 22 Provence
## 1332 90 13 Southwest France
## 1333 90 NA Southwest France
## 1334 90 38 California
## 1335 90 22 New York
## 1336 90 18 New York
## 1337 90 42 California
## 1338 90 25 Southern Italy
## 1339 90 21 Provence
## 1340 90 23 Provence
## 1341 90 30 Provence
## 1342 90 20 Wachau
## 1343 90 39 California
## 1344 90 38 California
## 1345 90 18 Sicily & Sardinia
## 1346 90 22 Oregon
## 1347 86 11 Mendoza Province
## 1348 86 29 Southern Italy
## 1349 86 10 Washington
## 1350 86 35 Sicily & Sardinia
## 1351 86 19 Southern Italy
## 1352 86 NA Bordeaux
## 1353 86 NA Bordeaux
## 1354 86 14 Bordeaux
## 1355 86 30 California
## 1356 86 35 Washington
## 1357 86 75 Bordeaux
## 1358 86 47 Northern Spain
## 1359 86 10 Northern Spain
## 1360 86 17 California
## 1361 86 23 California
## 1362 86 9 Sicily & Sardinia
## 1363 86 27 California
## 1364 86 18 Southern Italy
## 1365 86 NA Bordeaux
## 1366 87 15 Provence
## 1367 87 9 Maipo Valley
## 1368 87 40 Provence
## 1369 87 20 California
## 1370 86 NA Northeastern Italy
## 1371 86 13 California
## 1372 86 28 Pennsylvania
## 1373 86 10 Northeastern Italy
## 1374 86 20 California
## 1375 86 24 California
## 1376 86 15 Provence
## 1377 86 18 California
## 1378 86 11 Douro
## 1379 86 18 Washington
## 1380 86 24 Provence
## 1381 86 12 California
## 1382 86 18 California
## 1383 86 20 Curicó Valley
## 1384 86 15 California
## 1385 88 25 Northeastern Italy
## 1386 88 14 Mosel
## 1387 88 36 Oregon
## 1388 88 27 Northeastern Italy
## 1389 88 42 California
## 1390 88 16 Swartland
## 1391 88 NA Swartland
## 1392 88 20 Northeastern Italy
## 1393 88 48 California
## 1394 88 NA California
## 1395 88 19 Mendoza Province
## 1396 88 40 California
## 1397 88 50 Michigan
## 1398 88 21 Port
## 1399 88 16 Mosel
## 1400 88 19 Northeastern Italy
## 1401 88 11 Dão
## 1402 88 25 Michigan
## 1403 88 23 Northeastern Italy
## 1404 88 30 Northeastern Italy
## 1405 88 28 Northeastern Italy
## 1406 88 22 California
## 1407 88 15 California
## 1408 88 20 Northeastern Italy
## 1409 88 20 Northeastern Italy
## 1410 88 70 California
## 1411 88 9 Mosel
## 1412 88 40 Douro
## 1413 88 30 Port
## 1414 88 16 California
## 1415 93 NA Provence
## 1416 93 31 Alsace
## 1417 93 30 Alsace
## 1418 93 38 California
## 1419 93 45 Washington
## 1420 93 50 Washington
## 1421 93 24 Washington
## 1422 93 NA Alsace
## 1423 93 NA Burgenland
## 1424 93 86 California
## 1425 92 55 Washington
## 1426 92 NA Leithaberg
## 1427 92 28 Alsace
## 1428 92 45 Alsace
## 1429 92 85 California
## 1430 92 50 Washington
## 1431 92 120 California
## 1432 92 30 Washington
## 1433 92 25 Provence
## 1434 92 40 Provence
## 1435 92 50 Simonsberg-Stellenbosch
## 1436 92 32 Washington
## 1437 92 40 Washington
## 1438 92 NA Provence
## 1439 92 46 Wachau
## 1440 92 39 Washington
## 1441 92 85 California
## 1442 92 NA Wagram-Donauland
## 1443 92 60 Burgenland
## 1444 94 75 California
## 1445 94 120 California
## 1446 94 25 Southwest France
## 1447 94 80 Burgundy
## 1448 94 85 Douro
## 1449 94 28 California
## 1450 94 180 Rhône Valley
## 1451 94 85 Burgundy
## 1452 94 135 Burgundy
## 1453 94 125 Tuscany
## 1454 94 90 Burgundy
## 1455 94 154 Veneto
## 1456 94 70 California
## 1457 94 150 California
## 1458 94 56 Mosel
## 1459 94 49 Southwest France
## 1460 94 72 California
## 1461 93 48 Northeastern Italy
## 1462 93 35 California
## 1463 93 70 Tuscany
## 1464 93 132 Burgundy
## 1465 93 38 California
## 1466 93 20 Alentejo
## 1467 93 175 California
## 1468 93 36 California
## 1469 93 60 California
## 1470 93 110 California
## 1471 93 100 California
## 1472 93 85 Tuscany
## 1473 93 80 California
## 1474 86 12 Colchagua Valley
## 1475 86 18 Central Italy
## 1476 86 15 Northeastern Italy
## 1477 86 20 Washington
## 1478 86 14 Rio Claro
## 1479 85 12 South Australia
## 1480 85 9 Maule Valley
## 1481 85 12 Colchagua Valley
## 1482 85 9 California
## 1483 85 10 Mendoza Province
## 1484 85 19 Loire Valley
## 1485 85 11 Marlborough
## 1486 85 75 California
## 1487 85 48 Villány
## 1488 85 22 California
## 1489 85 35 Central Italy
## 1490 85 12 Tuscany
## 1491 85 23 Marlborough
## 1492 85 15 Central Italy
## 1493 85 16 Marlborough
## 1494 85 12 Other
## 1495 85 34 California
## 1496 85 65 California
## 1497 85 10 Mendoza Province
## 1498 85 8 Mendoza Province
## 1499 85 16 Northeastern Italy
## 1500 85 12 Cachapoal Valley
## 1501 92 43 Sicily & Sardinia
## 1502 92 32 California
## 1503 92 71 California
## 1504 92 65 Sicily & Sardinia
## 1505 92 60 Oregon
## 1506 92 NA Kamptal
## 1507 92 15 Southwest France
## 1508 92 35 Southwest France
## 1509 92 NA Beaujolais
## 1510 92 92 Colchagua Valley
## 1511 92 42 California
## 1512 92 65 Sicily & Sardinia
## 1513 92 35 Beaujolais
## 1514 92 43 Sicily & Sardinia
## 1515 92 54 Oregon
## 1516 92 75 California
## 1517 92 16 Bordeaux
## 1518 92 35 Southwest France
## 1519 92 26 Southwest France
## 1520 92 38 Maipo Valley
## 1521 92 50 Southwest France
## 1522 92 29 Cachapoal Valley
## 1523 92 42 Sicily & Sardinia
## 1524 92 48 Oregon
## 1525 92 40 Cachapoal Valley
## 1526 92 100 California
## 1527 86 21 Sicily & Sardinia
## 1528 86 14 Alentejano
## 1529 86 13 Alentejano
## 1530 86 15 California
## 1531 86 15 Catalonia
## 1532 86 9 Levante
## 1533 85 17 Central Spain
## 1534 85 20 California
## 1535 85 34 Loire Valley
## 1536 85 20 Bordeaux
## 1537 85 12 Bordeaux
## 1538 85 NA Bordeaux
## 1539 85 15 Bordeaux
## 1540 85 11 California
## 1541 85 10 Catalonia
## 1542 85 9 Lisboa
## 1543 85 10 Lisboa
## 1544 85 10 Jidvei
## 1545 85 14 Southern Italy
## 1546 85 20 Catalonia
## 1547 85 15 Colchagua Valley
## 1548 85 7 Lisboa
## 1549 85 8 Central Valley
## 1550 85 10 Central Valley
## 1551 85 20 Veneto
## 1552 85 12 Península de Setúbal
## 1553 85 8 Alentejo
## 1554 85 18 Southern Italy
## 1555 85 28 California
## 1556 85 9 Vinho Verde
## 1557 99 125 Washington
## 1558 99 94 California
## 1559 98 1900 Bordeaux
## 1560 98 380 Bordeaux
## 1561 98 50 Washington
## 1562 98 102 Tuscany
## 1563 97 170 Bordeaux
## 1564 97 220 Tuscany
## 1565 97 215 Tuscany
## 1566 97 150 California
## 1567 97 1100 Bordeaux
## 1568 97 82 California
## 1569 96 280 Bordeaux
## 1570 96 200 Bordeaux
## 1571 96 75 Tuscany
## 1572 96 1200 Bordeaux
## 1573 96 NA Bordeaux
## 1574 96 195 Bordeaux
## 1575 96 125 California
## 1576 96 1300 Bordeaux
## 1577 96 400 Bordeaux
## 1578 96 78 California
## 1579 96 75 Bordeaux
## 1580 95 56 California
## 1581 95 89 Bordeaux
## 1582 95 163 Bordeaux
## 1583 95 110 Bordeaux
## 1584 95 60 Washington
## 1585 95 75 California
## 1586 88 28 California
## 1587 88 34 New York
## 1588 88 35 California
## 1589 88 16 Sicily & Sardinia
## 1590 88 45 Bordeaux
## 1591 88 20 Bordeaux
## 1592 88 21 New York
## 1593 88 NA Bordeaux
## 1594 88 30 Bordeaux
## 1595 88 NA Bordeaux
## 1596 88 45 Bordeaux
## 1597 88 22 Bordeaux
## 1598 88 NA Bordeaux
## 1599 88 18 Washington
## 1600 88 58 Bordeaux
## 1601 88 10 California
## 1602 88 55 California
## 1603 88 16 Washington
## 1604 88 25 Sicily & Sardinia
## 1605 88 25 Washington
## 1606 87 18 Hawke's Bay
## 1607 87 20 New York
## 1608 87 12 California
## 1609 87 30 Washington
## 1610 87 14 Sicily & Sardinia
## 1611 87 24 Washington
## 1612 87 19 Bordeaux
## 1613 87 NA Bordeaux
## 1614 87 15 Bordeaux
## 1615 87 26 Bordeaux
## 1616 85 10 France Other
## 1617 85 10 France Other
## 1618 85 12 Tejo
## 1619 85 10 Mendoza Province
## 1620 85 8 Alentejo
## 1621 85 6 Alentejano
## 1622 85 13 Mendoza Province
## 1623 85 13 Mendoza Province
## 1624 85 13 Loire Valley
## 1625 85 12 France Other
## 1626 85 16 Virginia
## 1627 85 12 Mendoza Province
## 1628 85 17 America
## 1629 85 22 Loire Valley
## 1630 85 7 Alentejano
## 1631 85 8 Alentejano
## 1632 85 22 Virginia
## 1633 85 12 France Other
## 1634 85 15 Península de Setúbal
## 1635 85 10 Mendoza Province
## 1636 85 12 California
## 1637 85 8 Australia Other
## 1638 85 20 California
## 1639 85 20 Loire Valley
## 1640 85 10 Douro
## 1641 85 12 Tejo
## 1642 85 15 California
## 1643 85 40 Piedmont
## 1644 85 11 California
## 1645 85 10 California
## 1646 85 27 Catalonia
## 1647 85 13 Mendoza Province
## 1648 85 25 California
## 1649 85 10 Mendoza Province
## 1650 85 16 Western Australia
## 1651 85 9 Lisboa
## 1652 85 20 Other
## 1653 85 18 Oregon
## 1654 85 10 Lisboa
## 1655 85 10 Alentejano
## 1656 85 11 Douro
## 1657 85 13 Bordeaux
## 1658 85 20 Bordeaux
## 1659 85 13 Bordeaux
## 1660 85 25 Oregon
## 1661 85 35 Oregon
## 1662 85 28 Oregon
## 1663 85 10 Central Italy
## 1664 85 13 Alentejano
## 1665 85 10 California
## 1666 85 12 Other
## 1667 85 9 Australia Other
## 1668 85 12 California
## 1669 85 19 Central Italy
## 1670 85 20 Bordeaux
## 1671 85 28 Bordeaux
## 1672 85 25 Oregon
## 1673 90 65 Oregon
## 1674 90 20 California
## 1675 90 40 Rhône Valley
## 1676 90 126 Rhône Valley
## 1677 90 NA Tuscany
## 1678 90 50 California
## 1679 90 30 California
## 1680 90 28 California
## 1681 90 25 Mendoza Province
## 1682 90 20 Niederösterreich
## 1683 90 NA Tuscany
## 1684 90 16 Oregon
## 1685 90 16 Traisental
## 1686 90 NA Tuscany
## 1687 90 18 Oregon
## 1688 90 NA Tuscany
## 1689 90 115 California
## 1690 90 35 California
## 1691 90 20 California
## 1692 90 63 Rhône Valley
## 1693 90 18 California
## 1694 90 44 Niederösterreich
## 1695 90 12 California
## 1696 90 15 Mendoza Province
## 1697 86 50 Tuscany
## 1698 86 16 Galilee
## 1699 86 85 Tuscany
## 1700 86 16 Tuscany
## 1701 86 15 Bairrada
## 1702 86 12 Northern Spain
## 1703 86 14 California
## 1704 86 10 New York
## 1705 86 35 Negev Hills
## 1706 86 15 Tuscany
## 1707 86 14 Australia Other
## 1708 86 23 Western Australia
## 1709 86 15 Northern Spain
## 1710 86 65 Tuscany
## 1711 86 25 California
## 1712 85 10 Northern Spain
## 1713 85 20 South Australia
## 1714 85 29 Tuscany
## 1715 85 20 Douro
## 1716 85 23 Galilee
## 1717 85 19 California
## 1718 85 11 Ribatejano
## 1719 85 15 Catalonia
## 1720 85 10 California
## 1721 85 10 Central Spain
## 1722 85 8 Northern Spain
## 1723 85 10 Galicia
## 1724 85 30 South Australia
## 1725 85 22 Pennsylvania
## 1726 85 18 New York
## 1727 92 47 Northern Spain
## 1728 92 NA Bordeaux
## 1729 92 48 California
## 1730 92 30 California
## 1731 92 35 Washington
## 1732 92 20 Washington
## 1733 92 90 Tuscany
## 1734 92 135 Bordeaux
## 1735 92 40 Washington
## 1736 92 40 Washington
## 1737 92 50 Tuscany
## 1738 92 22 California
## 1739 92 80 Tuscany
## 1740 92 29 California
## 1741 92 75 Tuscany
## 1742 92 56 Washington
## 1743 92 45 California
## 1744 92 45 Tuscany
## 1745 92 NA Bordeaux
## 1746 92 NA Bordeaux
## 1747 92 NA Bordeaux
## 1748 92 49 Bordeaux
## 1749 92 NA Bordeaux
## 1750 92 30 California
## 1751 84 13 Bordeaux
## 1752 84 12 Levante
## 1753 84 10 Washington
## 1754 84 25 Northern Spain
## 1755 84 20 Bordeaux
## 1756 84 13 Catalonia
## 1757 84 29 Washington
## 1758 84 15 Loire Valley
## 1759 84 19 France Other
## 1760 84 10 Central Spain
## 1761 84 12 Bordeaux
## 1762 84 25 New York
## 1763 84 37 California
## 1764 84 20 New York
## 1765 84 14 Catalonia
## 1766 84 12 Bordeaux
## 1767 84 18 Washington
## 1768 84 25 Bordeaux
## 1769 84 25 Bordeaux
## 1770 84 15 Cachapoal Valley
## 1771 84 NA Bordeaux
## 1772 84 9 California
## 1773 84 13 France Other
## 1774 84 13 Central Valley
## 1775 84 22 California
## 1776 84 NA Bordeaux
## 1777 84 17 Bordeaux
## 1778 84 23 Bordeaux
## 1779 84 NA Bordeaux
## 1780 84 15 Bordeaux
## 1781 91 33 Washington
## 1782 91 55 Tuscany
## 1783 91 33 Catalonia
## 1784 91 35 Bordeaux
## 1785 91 NA Bordeaux
## 1786 91 26 Bordeaux
## 1787 91 20 Idaho
## 1788 91 45 California
## 1789 91 50 California
## 1790 91 40 California
## 1791 91 24 Mendoza Province
## 1792 91 60 California
## 1793 91 29 Washington
## 1794 91 NA Tuscany
## 1795 91 30 California
## 1796 91 40 California
## 1797 91 45 Washington
## 1798 91 NA Tuscany
## 1799 91 50 Piedmont
## 1800 91 NA Bordeaux
## 1801 91 29 Bordeaux
## 1802 85 10 Tejo
## 1803 85 20 Duriense
## 1804 85 19 Beaujolais
## 1805 85 NA Beaujolais
## 1806 85 28 California
## 1807 85 15 Catalonia
## 1808 85 50 Champagne
## 1809 85 15 California
## 1810 85 11 Levante
## 1811 85 16 Northern Spain
## 1812 85 14 California
## 1813 85 11 Tejo
## 1814 85 20 Duriense
## 1815 85 9 Levante
## 1816 85 12 Mendoza Province
## 1817 85 15 Catalonia
## 1818 85 25 California
## 1819 85 NA Beaujolais
## 1820 85 NA Beaujolais
## 1821 85 15 Beaujolais
## 1822 85 13 Alentejano
## 1823 85 12 Mendoza Province
## 1824 85 20 Beaujolais
## 1825 85 22 Beaujolais
## 1826 84 18 California
## 1827 84 12 Beaujolais
## 1828 84 23 Galicia
## 1829 84 16 Levante
## 1830 84 46 California
## 1831 84 15 Oregon
## 1832 84 50 California
## 1833 84 10 California
## 1834 84 13 Northern Spain
## 1835 84 23 California
## 1836 84 25 Northern Spain
## 1837 84 19 Michigan
## 1838 84 23 Alsace
## 1839 84 47 California
## 1840 84 60 California
## 1841 84 42 California
## 1842 84 13 California
## 1843 83 16 California
## 1844 83 25 Northern Spain
## 1845 83 NA Mendoza Province
## 1846 83 20 Galicia
## 1847 83 30 Northern Spain
## 1848 83 12 Northern Spain
## 1849 83 9 Central Spain
## 1850 83 38 California
## 1851 83 25 New Jersey
## 1852 83 13 Mendoza Province
## 1853 83 21 Alsace
## 1854 83 25 Oregon
## 1855 83 15 Northern Spain
## 1856 83 25 Mendoza Province
## 1857 83 55 California
## 1858 83 NA California
## 1859 83 29 Oregon
## 1860 83 30 Sicily & Sardinia
## 1861 94 180 Bordeaux
## 1862 94 74 Bordeaux
## 1863 94 NA Bordeaux
## 1864 94 300 California
## 1865 94 130 Tuscany
## 1866 93 120 Tuscany
## 1867 93 30 Washington
## 1868 93 36 California
## 1869 93 85 Washington
## 1870 93 75 Tuscany
## 1871 93 NA Dão
## 1872 93 45 Bordeaux
## 1873 93 90 Bordeaux
## 1874 93 36 Washington
## 1875 93 75 Languedoc-Roussillon
## 1876 93 80 Tuscany
## 1877 93 NA Tuscany
## 1878 93 NA Tuscany
## 1879 93 50 California
## 1880 93 47 Bordeaux
## 1881 93 270 Bordeaux
## 1882 93 50 Washington
## 1883 93 28 Washington
## 1884 93 55 California
## 1885 93 70 Beiras
## 1886 93 60 Tuscany
## 1887 93 50 South Australia
## 1888 93 48 California
## 1889 93 22 Washington
## 1890 89 23 Burgundy
## 1891 89 20 South Australia
## 1892 89 25 South Australia
## 1893 89 21 Southern Italy
## 1894 89 46 California
## 1895 89 18 South Australia
## 1896 89 22 Southern Italy
## 1897 89 30 Oregon
## 1898 89 12 South Australia
## 1899 89 150 Catalonia
## 1900 89 10 Mendoza Province
## 1901 89 18 Oregon
## 1902 89 28 Burgundy
## 1903 89 12 Mendoza Province
## 1904 89 30 Victoria
## 1905 89 24 Southern Italy
## 1906 89 55 California
## 1907 89 53 Spanish Islands
## 1908 89 30 Southern Italy
## 1909 88 14 Australia Other
## 1910 88 22 South Australia
## 1911 88 15 California
## 1912 87 25 California
## 1913 87 32 Österreichischer Sekt
## 1914 87 14 Washington
## 1915 87 50 California
## 1916 87 30 Colchagua Valley
## 1917 87 16 Casablanca Valley
## 1918 87 19 Aconcagua Valley
## 1919 87 12 Bordeaux
## 1920 87 20 Bordeaux
## 1921 87 13 Bordeaux
## 1922 87 26 Washington
## 1923 87 17 Wachau
## 1924 87 32 California
## 1925 87 15 Colchagua Valley
## 1926 87 50 Piedmont
## 1927 87 28 Washington
## 1928 87 17 Bordeaux
## 1929 87 25 Piedmont
## 1930 87 11 California
## 1931 87 30 Western Australia
## 1932 87 35 Upper Galilee
## 1933 87 80 Piedmont
## 1934 87 18 Bordeaux
## 1935 87 53 South Australia
## 1936 87 18 Leyda Valley
## 1937 87 60 California
## 1938 87 30 Colchagua Valley
## 1939 87 19 Maipo Valley
## 1940 87 15 Washington
## 1941 87 20 Bordeaux
## 1942 87 14 Wachau
## 1943 87 40 Washington
## 1944 87 19 California
## 1945 87 13 Southwest France
## 1946 87 65 California
## 1947 87 36 California
## 1948 87 24 Washington
## 1949 86 32 California
## 1950 86 10 Maipo Valley
## 1951 86 15 Washington
## 1952 86 15 Bordeaux
## 1953 86 24 California
## 1954 86 32 Washington
## 1955 86 18 Cachapoal Valley
## 1956 86 15 Galilee
## 1957 86 24 California
## 1958 88 17 Beaujolais
## 1959 88 40 California
## 1960 88 35 Virginia
## 1961 88 30 Sicily & Sardinia
## 1962 88 32 Sicily & Sardinia
## 1963 88 35 California
## 1964 88 60 California
## 1965 88 15 Beaujolais
## 1966 88 20 Casablanca Valley
## 1967 88 40 Oregon
## 1968 88 20 Southern Italy
## 1969 88 10 Bordeaux
## 1970 88 35 Bordeaux
## 1971 88 20 Beaujolais
## 1972 88 18 Southwest France
## 1973 88 14 Sicily & Sardinia
## 1974 88 22 Oregon
## 1975 88 50 Oregon
## 1976 88 15 Southern Italy
## 1977 88 16 Southwest France
## 1978 88 15 Southern Italy
## 1979 88 25 Southern Italy
## 1980 88 45 California
## 1981 88 28 California
## 1982 88 NA Sicily & Sardinia
## 1983 88 22 Virginia
## 1984 88 19 Sicily & Sardinia
## 1985 88 40 California
## 1986 88 18 California
## 1987 88 14 Beaujolais
## 1988 85 4 Central Spain
## 1989 85 13 Levante
## 1990 85 16 Oregon
## 1991 85 25 Alsace
## 1992 84 15 Mendoza Province
## 1993 84 20 Mendoza Province
## 1994 84 11 Mendoza Province
## 1995 84 18 Virginia
## 1996 84 20 California
## 1997 84 25 Oregon
## 1998 84 11 Sicily & Sardinia
## 1999 84 15 Alsace
## 2000 84 19 Alsace
## 2001 84 12 Sicily & Sardinia
## 2002 84 10 Central Spain
## 2003 84 10 Mendoza Province
## 2004 84 8 Alsace
## 2005 84 19 Oregon
## 2006 84 20 Vinho Espumante
## 2007 84 11 Península de Setúbal
## 2008 84 23 Alsace
## 2009 84 15 California
## 2010 84 19 Alsace
## 2011 84 24 Alsace
## 2012 84 15 California
## 2013 84 12 Mendoza Province
## 2014 84 15 Alsace
## 2015 84 17 Northern Spain
## 2016 84 16 Alsace
## 2017 84 17 Alsace
## 2018 87 NA Tejo
## 2019 87 25 California
## 2020 87 38 California
## 2021 87 28 California
## 2022 87 40 Oregon
## 2023 87 NA Lombardy
## 2024 87 19 Northeastern Italy
## 2025 87 45 Oregon
## 2026 87 15 Maipo Valley
## 2027 87 15 Burgundy
## 2028 87 15 Maipo Valley
## 2029 87 9 Northeastern Italy
## 2030 87 15 Lombardy
## 2031 87 39 Tuscany
## 2032 87 25 California
## 2033 87 13 Douro
## 2034 87 NA Tejo
## 2035 87 45 California
## 2036 87 35 California
## 2037 87 15 Veneto
## 2038 87 17 Northeastern Italy
## 2039 87 22 Bordeaux
## 2040 92 NA Piedmont
## 2041 92 NA Champagne
## 2042 92 70 Champagne
## 2043 92 25 California
## 2044 92 82 Piedmont
## 2045 92 75 Piedmont
## 2046 92 85 Piedmont
## 2047 92 NA Piedmont
## 2048 92 NA Piedmont
## 2049 92 NA Burgenland
## 2050 92 40 Niederösterreich
## 2051 92 40 Niederösterreich
## 2052 92 35 Niederösterreich
## 2053 92 48 California
## 2054 92 55 California
## 2055 92 50 Piedmont
## 2056 92 48 Piedmont
## 2057 92 NA Piedmont
## 2058 92 NA Piedmont
## 2059 92 NA Piedmont
## 2060 92 NA Piedmont
## 2061 92 76 Piedmont
## 2062 92 NA Piedmont
## 2063 91 17 California
## 2064 91 60 Champagne
## 2065 91 58 California
## 2066 90 25 California
## 2067 90 35 California
## 2068 90 65 California
## 2069 90 36 Washington
## 2070 90 35 California
## 2071 90 49 California
## 2072 90 31 Bordeaux
## 2073 90 NA Veneto
## 2074 90 28 Washington
## 2075 90 45 Sicily & Sardinia
## 2076 90 41 Sicily & Sardinia
## 2077 90 37 Bordeaux
## 2078 90 40 Washington
## 2079 90 25 Casablanca Valley
## 2080 90 85 Champagne
## 2081 90 28 California
## 2082 90 35 California
## 2083 90 42 California
## 2084 90 39 Mendoza Province
## 2085 90 22 Maipo Valley
## 2086 90 24 California
## 2087 90 50 California
## 2088 90 22 California
## 2089 90 26 California
## 2090 90 60 Champagne
## 2091 90 19 Washington
## 2092 87 12 Alentejo
## 2093 87 13 Northeastern Italy
## 2094 87 20 Northeastern Italy
## 2095 87 17 Vinho Verde
## 2096 87 12 California
## 2097 87 29 Northeastern Italy
## 2098 87 18 California
## 2099 87 21 Northeastern Italy
## 2100 87 30 California
## 2101 87 24 California
## 2102 87 20 California
## 2103 87 NA Northeastern Italy
## 2104 87 22 Northeastern Italy
## 2105 87 NA Alentejano
## 2106 87 15 Maipo Valley
## 2107 87 19 Northeastern Italy
## 2108 87 24 California
## 2109 87 12 Northeastern Italy
## 2110 87 17 Oregon
## 2111 87 NA Northeastern Italy
## 2112 87 36 Provence
## 2113 87 NA Provence
## 2114 88 30 Bordeaux
## 2115 88 30 Bordeaux
## 2116 88 79 Epanomi
## 2117 88 20 California
## 2118 88 20 Washington
## 2119 88 25 Washington
## 2120 88 24 California
## 2121 88 20 New York
## 2122 88 NA Bordeaux
## 2123 88 53 Bordeaux
## 2124 88 42 Bordeaux
## 2125 88 15 Bordeaux
## 2126 88 98 California
## 2127 88 13 California
## 2128 88 25 California
## 2129 88 45 Washington
## 2130 88 15 Piedmont
## 2131 88 22 Loire Valley
## 2132 88 44 California
## 2133 88 NA Bordeaux
## 2134 88 10 Piedmont
## 2135 85 10 Central Italy
## 2136 85 NA Catalonia
## 2137 84 42 California
## 2138 84 21 South Australia
## 2139 84 12 Northern Spain
## 2140 84 8 Central Italy
## 2141 84 12 Northern Spain
## 2142 84 10 Mendoza Province
## 2143 84 22 Bordeaux
## 2144 84 22 Beaujolais
## 2145 84 28 Washington
## 2146 84 8 Northern Spain
## 2147 84 28 Oregon
## 2148 84 10 Central Italy
## 2149 84 11 Central Italy
## 2150 84 33 Douro
## 2151 84 12 California
## 2152 84 11 Central Spain
## 2153 84 11 California
## 2154 84 9 Central Spain
## 2155 84 18 Levante
## 2156 84 11 Other
## 2157 84 21 Washington
## 2158 84 14 Beaujolais
## 2159 84 9 Lisboa
## 2160 84 15 Central Italy
## 2161 84 NA Central Italy
## 2162 84 23 California
## 2163 84 16 Galicia
## 2164 84 85 Oregon
## 2165 90 22 New York
## 2166 90 17 New York
## 2167 90 15 Nemea
## 2168 90 24 California
## 2169 90 30 California
## 2170 90 28 California
## 2171 90 25 Wachau
## 2172 90 107 Piedmont
## 2173 90 35 Washington
## 2174 90 58 Piedmont
## 2175 90 32 California
## 2176 90 31 Northern Spain
## 2177 90 32 California
## 2178 90 60 California
## 2179 90 16 Niederösterreich
## 2180 90 31 Catalonia
## 2181 90 23 Rhône Valley
## 2182 90 30 Northern Spain
## 2183 90 25 California
## 2184 89 18 Peloponnese
## 2185 89 70 Washington
## 2186 89 16 Crete
## 2187 89 25 Piedmont
## 2188 89 13 California
## 2189 89 15 New York
## 2190 89 30 California
## 2191 89 20 California
## 2192 89 35 California
## 2193 89 34 California
## 2194 89 24 Washington
## 2195 88 20 Colchagua Valley
## 2196 88 24 California
## 2197 88 25 California
## 2198 88 30 California
## 2199 88 50 Veneto
## 2200 88 18 Alsace
## 2201 88 62 California
## 2202 88 85 California
## 2203 88 32 California
## 2204 88 10 Washington
## 2205 88 10 Washington
## 2206 88 20 Aconcagua Costa
## 2207 88 48 California
## 2208 88 19 Alsace
## 2209 88 75 California
## 2210 88 32 California
## 2211 88 40 California
## 2212 88 NA California
## 2213 88 23 Alsace
## 2214 88 53 Veneto
## 2215 88 NA Burgundy
## 2216 88 30 California
## 2217 88 17 Marlborough
## 2218 88 21 Alsace
## 2219 88 20 Maule Valley
## 2220 88 17 Maipo Valley
## 2221 88 24 California
## 2222 88 14 California
## 2223 88 12 Washington
## 2224 88 15 New York
## 2225 94 92 Tuscany
## 2226 94 85 Tuscany
## 2227 94 90 Tuscany
## 2228 94 85 Burgundy
## 2229 94 70 Tuscany
## 2230 94 36 California
## 2231 94 40 Tuscany
## 2232 94 64 California
## 2233 94 120 Tuscany
## 2234 94 73 Tuscany
## 2235 94 65 Tuscany
## 2236 94 55 California
## 2237 94 45 Tuscany
## 2238 94 NA Tuscany
## 2239 94 46 California
## 2240 94 106 Tuscany
## 2241 94 72 Tuscany
## 2242 94 60 California
## 2243 94 40 California
## 2244 94 75 Tuscany
## 2245 94 225 Burgundy
## 2246 94 260 Burgundy
## 2247 94 40 California
## 2248 94 55 Tuscany
## 2249 94 65 Tuscany
## 2250 94 150 Tuscany
## 2251 94 50 California
## 2252 87 22 California
## 2253 87 65 California
## 2254 87 20 California
## 2255 87 19 Mendoza Province
## 2256 87 25 California
## 2257 87 16 South Australia
## 2258 87 26 Piedmont
## 2259 87 NA Bordeaux
## 2260 87 NA Bordeaux
## 2261 87 16 Piedmont
## 2262 87 NA Bordeaux
## 2263 87 40 Lombardy
## 2264 87 26 Lombardy
## 2265 87 NA Bordeaux
## 2266 87 13 Niederösterreich
## 2267 87 20 California
## 2268 87 40 California
## 2269 87 30 California
## 2270 87 35 California
## 2271 87 30 California
## 2272 87 15 California
## 2273 85 25 Moravia
## 2274 85 11 Vinho Verde
## 2275 85 18 California
## 2276 85 20 Tuscany
## 2277 85 12 Tuscany
## 2278 85 29 Mendoza Province
## 2279 85 20 California
## 2280 85 17 Alsace
## 2281 85 17 California
## 2282 85 20 Oregon
## 2283 85 15 Tuscany
## 2284 85 15 Oregon
## 2285 85 34 Galicia
## 2286 85 25 Northern Spain
## 2287 85 25 California
## 2288 85 32 Tuscany
## 2289 85 18 Moravia
## 2290 84 20 California
## 2291 84 16 California
## 2292 84 17 Mendoza Province
## 2293 84 20 Slovenia
## 2294 90 32 Tuscany
## 2295 90 23 Pfalz
## 2296 90 66 Tuscany
## 2297 90 28 Tuscany
## 2298 90 33 California
## 2299 90 40 Washington
## 2300 90 47 Pfalz
## 2301 90 36 Pfalz
## 2302 90 75 California
## 2303 90 20 Stellenbosch
## 2304 90 18 Washington
## 2305 90 14 California
## 2306 90 58 Tuscany
## 2307 90 NA Bordeaux
## 2308 90 53 Tuscany
## 2309 90 30 California
## 2310 90 54 Northern Spain
## 2311 90 NA Pfalz
## 2312 90 27 Pfalz
## 2313 90 33 Western Australia
## 2314 90 37 Tuscany
## 2315 90 65 Tuscany
## 2316 90 70 Tuscany
## 2317 90 30 California
## 2318 90 34 Tuscany
## 2319 90 NA Tuscany
## 2320 85 13 Loire Valley
## 2321 85 15 Bordeaux
## 2322 85 25 Bordeaux
## 2323 85 NA Bordeaux
## 2324 85 15 Bordeaux
## 2325 85 24 France Other
## 2326 85 12 California
## 2327 85 10 Washington
## 2328 85 10 California
## 2329 85 12 California
## 2330 85 20 Piedmont
## 2331 85 16 New York
## 2332 85 18 Maule Valley
## 2333 85 14 Loire Valley
## 2334 85 32 California
## 2335 85 15 Levante
## 2336 85 6 Washington
## 2337 85 15 Maule Valley
## 2338 85 15 California
## 2339 85 13 Colchagua Valley
## 2340 85 10 California
## 2341 85 10 Washington
## 2342 85 12 Colchagua Valley
## 2343 85 18 New York
## 2344 85 10 California
## 2345 85 NA Loire Valley
## 2346 85 15 California
## 2347 85 15 California
## 2348 85 29 California
## 2349 85 15 Washington
## 2350 88 17 California
## 2351 88 NA Veneto
## 2352 88 19 Mendoza Province
## 2353 88 35 Virginia
## 2354 88 13 California
## 2355 88 19 California
## 2356 88 45 California
## 2357 88 16 Northern Spain
## 2358 88 15 California
## 2359 88 29 California
## 2360 88 35 Burgundy
## 2361 88 35 Burgundy
## 2362 88 40 Burgundy
## 2363 88 42 Veneto
## 2364 88 75 California
## 2365 88 20 Southwest France
## 2366 88 NA Burgenland
## 2367 88 28 Washington
## 2368 88 35 Washington
## 2369 88 20 Beaujolais
## 2370 88 85 Veneto
## 2371 88 11 Washington
## 2372 88 17 Alsace
## 2373 88 NA Southwest France
## 2374 88 20 Veneto
## 2375 88 30 Northeastern Italy
## 2376 88 40 Washington
## 2377 88 27 Veneto
## 2378 88 13 Washington
## 2379 88 47 Veneto
## 2380 87 18 Virginia
## 2381 87 25 America
## 2382 87 13 Vinho Verde
## 2383 87 15 Alentejano
## 2384 87 26 Douro
## 2385 87 10 Terras do Dão
## 2386 87 30 California
## 2387 87 25 Oregon
## 2388 87 16 Mendoza Province
## 2389 87 NA France Other
## 2390 87 25 Loire Valley
## 2391 87 12 Loire Valley
## 2392 87 13 Tejo
## 2393 87 15 Douro
## 2394 87 80 Port
## 2395 87 30 Douro
## 2396 87 27 Oregon
## 2397 87 12 Beira Interior
## 2398 87 12 Douro
## 2399 87 10 Douro
## 2400 87 28 Oregon
## 2401 87 20 Marlborough
## 2402 87 14 Sicily & Sardinia
## 2403 87 30 California
## 2404 87 12 France Other
## 2405 87 18 California
## 2406 87 18 Marlborough
## 2407 87 27 America
## 2408 87 10 France Other
## 2409 85 14 California
## 2410 85 13 Sicily & Sardinia
## 2411 85 13 Maipo Valley
## 2412 85 NA Southern Italy
## 2413 85 14 Sicily & Sardinia
## 2414 85 15 Bordeaux
## 2415 85 NA Sicily & Sardinia
## 2416 85 24 California
## 2417 85 12 Southern Italy
## 2418 85 20 California
## 2419 85 18 Aconcagua Valley
## 2420 85 30 California
## 2421 85 40 Sicily & Sardinia
## 2422 85 12 Beaujolais
## 2423 85 15 Bordeaux
## 2424 85 28 Oregon
## 2425 85 16 Maipo Valley
## 2426 85 NA Sicily & Sardinia
## 2427 85 NA Sicily & Sardinia
## 2428 85 15 Beaujolais
## 2429 85 25 California
## 2430 85 50 Oregon
## 2431 85 14 Oregon
## 2432 85 11 Beaujolais
## 2433 85 12 Southwest France
## 2434 85 14 Casablanca Valley
## 2435 85 17 Southern Italy
## 2436 85 10 California
## 2437 85 25 Virginia
## 2438 85 20 Niederösterreich
## 2439 90 18 Central Italy
## 2440 90 55 California
## 2441 90 14 California
## 2442 90 60 California
## 2443 90 55 Oregon
## 2444 90 65 California
## 2445 90 30 Central Italy
## 2446 90 19 Central Italy
## 2447 90 15 California
## 2448 90 40 Central Italy
## 2449 90 20 Central Italy
## 2450 90 13 New York
## 2451 90 80 Tuscany
## 2452 90 45 California
## 2453 90 40 California
## 2454 90 50 Washington
## 2455 90 25 Washington
## 2456 90 30 Washington
## 2457 90 38 California
## 2458 90 33 California
## 2459 90 22 California
## 2460 90 55 Tuscany
## 2461 90 45 California
## 2462 90 50 Bordeaux
## 2463 90 65 Bordeaux
## 2464 90 19 Bordeaux
## 2465 90 NA Bordeaux
## 2466 90 42 Bordeaux
## 2467 90 NA Bordeaux
## 2468 90 19 Bordeaux
## 2469 90 75 Tuscany
## 2470 90 16 Andalucia
## 2471 90 45 Northern Spain
## 2472 90 15 California
## 2473 90 18 New York
## 2474 90 11 California
## 2475 90 38 California
## 2476 90 39 California
## 2477 90 32 California
## 2478 88 50 California
## 2479 88 32 California
## 2480 88 38 California
## 2481 88 42 California
## 2482 88 10 Washington
## 2483 88 25 Washington
## 2484 88 18 Washington
## 2485 88 9 Washington
## 2486 88 12 Washington
## 2487 88 22 Dealu Mare
## 2488 88 14 Colchagua Valley
## 2489 88 35 Washington
## 2490 88 15 California
## 2491 88 18 Alsace
## 2492 88 19 Alsace
## 2493 88 30 Burgundy
## 2494 88 17 Colchagua Valley
## 2495 88 17 Colchagua Valley
## 2496 88 35 California
## 2497 88 16 Veneto
## 2498 88 43 Northeastern Italy
## 2499 88 40 California
## 2500 88 18 New York
## 2501 88 19 Alsace
## 2502 88 20 Panciu
## 2503 88 16 Washington
## 2504 88 75 California
## 2505 88 17 Colchagua Valley
## 2506 88 40 California
## 2507 88 44 California
## 2508 95 75 California
## 2509 95 300 Northern Spain
## 2510 95 65 Piedmont
## 2511 95 60 Piedmont
## 2512 95 96 Piedmont
## 2513 95 59 Piedmont
## 2514 95 32 Oregon
## 2515 94 60 Piedmont
## 2516 94 43 California
## 2517 94 42 Piedmont
## 2518 94 225 South Australia
## 2519 94 48 Piedmont
## 2520 94 70 Piedmont
## 2521 94 80 Piedmont
## 2522 94 NA Piedmont
## 2523 94 46 Piedmont
## 2524 94 80 Piedmont
## 2525 94 64 Piedmont
## 2526 94 75 Piedmont
## 2527 89 18 Northeastern Italy
## 2528 89 28 California
## 2529 89 10 Niederösterreich
## 2530 89 25 Niederösterreich
## 2531 89 70 California
## 2532 89 20 Northern Spain
## 2533 89 45 Central Otago
## 2534 89 14 California
## 2535 89 25 Northern Spain
## 2536 89 14 Burgenland
## 2537 89 29 California
## 2538 89 20 Northeastern Italy
## 2539 89 25 France Other
## 2540 89 22 California
## 2541 89 28 Central Italy
## 2542 89 20 France Other
## 2543 89 24 California
## 2544 89 19 Provence
## 2545 89 28 California
## 2546 89 16 New York
## 2547 89 14 Marlborough
## 2548 89 13 Niederösterreich
## 2549 89 15 Galicia
## 2550 89 30 Northern Spain
## 2551 89 35 California
## 2552 89 20 Mendoza Province
## 2553 89 17 California
## 2554 89 24 California
## 2555 89 55 California
## 2556 89 45 California
## 2557 89 45 California
## 2558 89 24 California
## 2559 89 25 California
## 2560 89 65 California
## 2561 89 19 Marlborough
## 2562 89 28 California
## 2563 89 27 Sicily & Sardinia
## 2564 89 25 California
## 2565 89 20 California
## 2566 89 21 Burgenland
## 2567 89 55 Washington
## 2568 89 34 Washington
## 2569 89 30 Washington
## 2570 89 29 Washington
## 2571 89 45 Sicily & Sardinia
## 2572 89 30 Washington
## 2573 89 24 Washington
## 2574 89 20 Southern Italy
## 2575 89 30 Washington
## 2576 89 32 California
## 2577 89 35 Washington
## 2578 89 33 Washington
## 2579 89 45 Washington
## 2580 89 45 Washington
## 2581 89 35 Washington
## 2582 89 32 Washington
## 2583 89 50 Washington
## 2584 89 45 California
## 2585 89 20 Bordeaux
## 2586 90 20 Bordeaux
## 2587 90 NA Wachau
## 2588 90 35 Western Australia
## 2589 90 NA Niederösterreich
## 2590 90 42 Pfalz
## 2591 90 35 Washington
## 2592 90 92 Piedmont
## 2593 90 82 Piedmont
## 2594 90 25 Washington
## 2595 90 20 Western Australia
## 2596 90 NA Kamptal
## 2597 90 39 Galilee
## 2598 90 29 Mosel
## 2599 90 20 Western Australia
## 2600 90 25 Rheinhessen
## 2601 90 30 Western Australia
## 2602 90 27 California
## 2603 90 17 California
## 2604 90 40 Colchagua Valley
## 2605 90 42 California
## 2606 90 52 California
## 2607 90 23 Maipo Valley
## 2608 90 21 Maipo Valley
## 2609 90 17 Washington
## 2610 90 28 Washington
## 2611 90 24 California
## 2612 90 21 Western Australia
## 2613 90 34 Washington
## 2614 90 13 Mosel
## 2615 90 11 Washington
## 2616 83 12 Other
## 2617 83 12 Ontario
## 2618 83 8 Australia Other
## 2619 83 6 Mendoza Province
## 2620 83 18 Southern Italy
## 2621 83 13 New Jersey
## 2622 82 12 California
## 2623 82 12 California
## 2624 82 10 California
## 2625 82 18 California
## 2626 82 55 California
## 2627 82 27 California
## 2628 82 13 California
## 2629 82 13 Oregon
## 2630 82 24 California
## 2631 82 14 California
## 2632 90 20 South Australia
## 2633 90 57 Tuscany
## 2634 90 18 Dão
## 2635 90 NA Tuscany
## 2636 90 NA Bordeaux
## 2637 90 NA Bordeaux
## 2638 90 20 Bordeaux
## 2639 90 20 Bordeaux
## 2640 90 24 California
## 2641 90 22 Tasmania
## 2642 90 30 Maipo Valley
## 2643 89 13 South Australia
## 2644 89 49 Tuscany
## 2645 89 44 California
## 2646 89 12 California
## 2647 89 NA Tuscany
## 2648 89 18 New York
## 2649 89 28 Washington
## 2650 89 50 Washington
## 2651 89 24 Washington
## 2652 89 50 Beiras
## 2653 89 23 Tejo
## 2654 89 18 Douro
## 2655 89 NA Tuscany
## 2656 89 40 Bordeaux
## 2657 89 70 Bordeaux
## 2658 89 38 Bordeaux
## 2659 89 45 Bordeaux
## 2660 89 NA Tuscany
## 2661 89 NA Tuscany
## 2662 90 150 Veneto
## 2663 90 45 California
## 2664 90 55 Washington
## 2665 90 30 Washington
## 2666 90 NA Burgenland
## 2667 90 26 Veneto
## 2668 90 45 California
## 2669 90 52 California
## 2670 90 24 Languedoc-Roussillon
## 2671 90 65 California
## 2672 90 NA Beaujolais
## 2673 90 38 California
## 2674 90 35 Mendoza Province
## 2675 90 24 Languedoc-Roussillon
## 2676 90 45 Washington
## 2677 90 45 California
## 2678 90 15 Washington
## 2679 90 20 Washington
## 2680 90 NA Southwest France
## 2681 90 36 California
## 2682 90 34 California
## 2683 90 35 Burgundy
## 2684 90 50 Northern Spain
## 2685 90 125 Veneto
## 2686 90 NA Burgenland
## 2687 90 30 Washington
## 2688 90 NA Burgundy
## 2689 90 65 California
## 2690 90 32 California
## 2691 90 150 California
## 2692 87 9 Northeastern Italy
## 2693 87 18 Valle de Guadalupe
## 2694 87 10 Colchagua Valley
## 2695 87 12 Maipo Valley
## 2696 87 22 California
## 2697 87 14 California
## 2698 87 14 California
## 2699 87 10 Maipo Valley
## 2700 87 95 California
## 2701 87 25 California
## 2702 87 45 California
## 2703 87 15 Northeastern Italy
## 2704 87 12 Colchagua Valley
## 2705 87 9 Colchagua Valley
## 2706 87 8 Rapel Valley
## 2707 87 25 California
## 2708 87 12 Aconcagua Valley
## 2709 87 35 Northeastern Italy
## 2710 87 15 California
## 2711 87 32 California
## 2712 87 35 California
## 2713 87 16 Northeastern Italy
## 2714 87 NA Maipo Valley
## 2715 87 18 California
## 2716 87 10 Northeastern Italy
## 2717 87 11 Veneto
## 2718 87 15 Veneto
## 2719 87 20 Curicó Valley
## 2720 87 7 Rapel Valley
## 2721 86 13 Alsace
## 2722 86 10 France Other
## 2723 86 13 California
## 2724 86 10 Bordeaux
## 2725 86 12 Northern Spain
## 2726 86 11 Sicily & Sardinia
## 2727 86 30 Southern Italy
## 2728 86 29 California
## 2729 86 10 Languedoc-Roussillon
## 2730 86 19 Alsace
## 2731 86 28 Southern Italy
## 2732 86 12 California
## 2733 86 17 Leyda Valley
## 2734 86 70 California
## 2735 86 11 Chile
## 2736 86 8 California
## 2737 86 14 Northern Spain
## 2738 86 11 Central Valley
## 2739 86 11 Central Valley
## 2740 86 19 Alsace
## 2741 86 19 California
## 2742 86 23 Bío Bío Valley
## 2743 86 23 California
## 2744 86 13 Northern Spain
## 2745 86 20 Bordeaux
## 2746 86 15 Bordeaux
## 2747 86 30 Southern Italy
## 2748 86 9 Romania
## 2749 86 9 Romania
## 2750 86 7 Romania
## 2751 84 11 California
## 2752 84 15 Bordeaux
## 2753 84 11 Northern Spain
## 2754 84 12 Central Valley
## 2755 84 10 Languedoc-Roussillon
## 2756 84 11 Languedoc-Roussillon
## 2757 84 25 Casablanca Valley
## 2758 84 20 California
## 2759 84 9 Languedoc-Roussillon
## 2760 84 13 Northern Spain
## 2761 84 13 Colchagua Costa
## 2762 84 8 Central Valley
## 2763 84 12 Central Valley
## 2764 84 13 California
## 2765 84 50 California
## 2766 84 29 California
## 2767 84 8 California
## 2768 84 52 Northern Spain
## 2769 84 11 Bordeaux
## 2770 84 13 Bordeaux
## 2771 84 26 California
## 2772 84 20 California
## 2773 84 15 Loncomilla Valley
## 2774 83 12 Casablanca Valley
## 2775 83 15 Casablanca Valley
## 2776 83 25 California
## 2777 83 25 California
## 2778 83 10 Maipo Valley
## 2779 83 19 California
## 2780 83 16 Maule Valley
## 2781 84 5 Alentejano
## 2782 84 32 California
## 2783 84 13 Vinho Verde
## 2784 84 22 California
## 2785 84 10 California
## 2786 84 10 California
## 2787 84 15 California
## 2788 84 NA Alentejano
## 2789 84 NA Portuguese Table Wine
## 2790 84 8 France Other
## 2791 84 25 California
## 2792 84 25 California
## 2793 84 NA Beiras
## 2794 84 20 California
## 2795 84 20 California
## 2796 84 10 Mendoza Province
## 2797 84 NA Languedoc-Roussillon
## 2798 84 60 California
## 2799 84 20 California
## 2800 84 9 Vinho Verde
## 2801 84 10 California
## 2802 84 24 California
## 2803 84 12 France Other
## 2804 84 13 California
## 2805 87 NA Tuscany
## 2806 87 16 New York
## 2807 87 32 Northern Spain
## 2808 87 60 Washington
## 2809 87 15 California
## 2810 87 50 Tuscany
## 2811 87 14 Washington
## 2812 87 30 Washington
## 2813 87 25 California
## 2814 86 20 Washington
## 2815 86 14 Washington
## 2816 86 18 Tuscany
## 2817 86 18 California
## 2818 86 20 Tuscany
## 2819 86 25 Galicia
## 2820 86 35 California
## 2821 86 15 Tuscany
## 2822 86 13 Northern Spain
## 2823 86 NA Tuscany
## 2824 86 NA Tuscany
## 2825 86 10 Bordeaux
## 2826 86 12 Washington
## 2827 86 NA Bordeaux
## 2828 86 NA Bordeaux
## 2829 86 12 Bordeaux
## 2830 86 NA Bordeaux
## 2831 86 13 Bordeaux
## 2832 86 12 Bordeaux
## 2833 86 10 Bordeaux
## 2834 86 13 Tuscany
## 2835 88 24 California
## 2836 88 30 Tuscany
## 2837 88 NA Beaujolais
## 2838 88 15 Marlborough
## 2839 88 15 Washington
## 2840 88 NA Tuscany
## 2841 88 30 Tuscany
## 2842 88 22 Beaujolais
## 2843 88 20 Beaujolais
## 2844 88 20 Beaujolais
## 2845 88 20 Beaujolais
## 2846 88 16 California
## 2847 88 75 Tuscany
## 2848 88 9 California
## 2849 88 24 Washington
## 2850 88 55 Tuscany
## 2851 88 25 California
## 2852 88 25 New York
## 2853 88 42 California
## 2854 88 20 Tuscany
## 2855 88 18 Colchagua Valley
## 2856 88 45 Tuscany
## 2857 88 38 California
## 2858 88 35 Washington
## 2859 88 18 Maipo Valley
## 2860 88 45 Tuscany
## 2861 88 35 Tuscany
## 2862 88 10 Idaho
## 2863 88 40 Tuscany
## 2864 88 27 California
## 2865 91 55 Northern Spain
## 2866 91 30 Oregon
## 2867 91 15 Tejo
## 2868 91 44 California
## 2869 91 49 California
## 2870 91 38 California
## 2871 91 37 Northeastern Italy
## 2872 91 40 Loire Valley
## 2873 91 25 Veneto
## 2874 91 30 California
## 2875 91 50 California
## 2876 91 55 California
## 2877 91 23 Loire Valley
## 2878 91 34 Lombardy
## 2879 91 60 Oregon
## 2880 91 29 Washington
## 2881 91 36 California
## 2882 91 25 California
## 2883 91 75 California
## 2884 91 45 California
## 2885 91 35 California
## 2886 91 48 California
## 2887 91 48 California
## 2888 91 55 California
## 2889 91 34 Washington
## 2890 91 55 Loire Valley
## 2891 91 30 Southwest France
## 2892 91 24 Southwest France
## 2893 91 NA Lombardy
## 2894 91 48 Southwest France
## 2895 86 18 Northern Spain
## 2896 86 30 Burgundy
## 2897 86 15 Oregon
## 2898 86 26 Burgundy
## 2899 86 65 Veneto
## 2900 86 12 Alentejano
## 2901 86 40 California
## 2902 86 20 Northern Spain
## 2903 86 16 Minho
## 2904 86 47 Lombardy
## 2905 86 15 Alsace
## 2906 86 18 Alsace
## 2907 86 35 Oregon
## 2908 86 15 Northern Spain
## 2909 86 41 Lombardy
## 2910 86 20 Burgundy
## 2911 86 NA Burgundy
## 2912 86 30 Northern Spain
## 2913 86 42 Mosel
## 2914 86 15 Northern Spain
## 2915 86 30 Northeastern Italy
## 2916 86 40 California
## 2917 86 21 Catalonia
## 2918 86 29 California
## 2919 86 30 Alentejano
## 2920 86 35 Veneto
## 2921 86 15 Port
## 2922 86 9 Vinho Verde
## 2923 84 9 Missouri
## 2924 84 40 California
## 2925 84 10 Curicó Valley
## 2926 84 16 Mendoza Province
## 2927 84 13 Burgundy
## 2928 84 47 California
## 2929 84 24 California
## 2930 84 8 Texas
## 2931 84 9 Rapel Valley
## 2932 84 35 New Mexico
## 2933 84 12 California
## 2934 84 25 California
## 2935 84 11 Mendoza Province
## 2936 84 11 Mendoza Province
## 2937 84 75 Nevada
## 2938 84 16 California
## 2939 84 18 California
## 2940 84 23 Virginia
## 2941 84 26 New York
## 2942 84 13 Washington
## 2943 84 10 Mendoza Province
## 2944 84 22 California
## 2945 84 32 Washington
## 2946 84 18 New York
## 2947 84 16 New York
## 2948 83 11 Mendoza Province
## 2949 83 26 Washington
## 2950 86 14 South Australia
## 2951 86 30 Oregon
## 2952 86 37 Oregon
## 2953 86 12 California
## 2954 86 19 South Australia
## 2955 86 10 Mendoza Province
## 2956 86 25 California
## 2957 86 29 Western Australia
## 2958 86 13 California
## 2959 86 37 South Australia
## 2960 86 22 Burgundy
## 2961 86 25 Northern Spain
## 2962 86 29 California
## 2963 86 15 Northern Spain
## 2964 86 29 Sicily & Sardinia
## 2965 85 12 Mendoza Province
## 2966 85 16 South Australia
## 2967 85 42 Sicily & Sardinia
## 2968 85 75 Oregon
## 2969 85 26 California
## 2970 85 35 California
## 2971 85 29 Central Spain
## 2972 85 24 Western Australia
## 2973 85 32 California
## 2974 85 18 Virginia
## 2975 85 10 California
## 2976 91 NA Bordeaux
## 2977 91 23 Bordeaux
## 2978 91 25 Bordeaux
## 2979 91 NA Bordeaux
## 2980 91 37 Bordeaux
## 2981 91 33 Alsace
## 2982 91 50 South Australia
## 2983 91 20 South Australia
## 2984 91 30 California
## 2985 91 30 California
## 2986 91 60 California
## 2987 91 19 California
## 2988 91 30 Central Italy
## 2989 91 16 Mosel
## 2990 91 24 Oregon
## 2991 91 32 California
## 2992 91 48 California
## 2993 91 30 Niederösterreich
## 2994 91 22 South Australia
## 2995 91 50 California
## 2996 91 40 California
## 2997 91 45 Piedmont
## 2998 91 50 Champagne
## 2999 91 66 Lombardy
## 3000 91 22 Alsace
## 3001 91 20 Mosel
## 3002 91 43 Italy Other
## 3003 91 55 Catalonia
## 3004 91 21 Galicia
## 3005 91 30 Piedmont
## 3006 93 90 California
## 3007 93 55 Washington
## 3008 93 55 Washington
## 3009 93 30 Washington
## 3010 93 75 California
## 3011 93 36 Languedoc-Roussillon
## 3012 92 40 Tuscany
## 3013 92 90 Northern Spain
## 3014 92 34 Washington
## 3015 92 NA Alsace
## 3016 92 60 Tuscany
## 3017 92 55 Champagne
## 3018 92 13 Burgenland
## 3019 92 50 Washington
## 3020 92 33 Alsace
## 3021 92 49 California
## 3022 92 52 Northern Spain
## 3023 92 30 Washington
## 3024 92 37 Washington
## 3025 92 37 Washington
## 3026 92 29 Weinviertel
## 3027 92 33 Washington
## 3028 92 100 Northern Spain
## 3029 92 38 California
## 3030 92 35 California
## 3031 92 75 California
## 3032 88 17 Bucelas
## 3033 88 20 Galicia
## 3034 88 23 California
## 3035 88 19 Central Italy
## 3036 88 25 Washington
## 3037 88 25 Washington
## 3038 88 20 Central Italy
## 3039 88 15 Douro
## 3040 88 9 Lisboa
## 3041 88 17 Catalonia
## 3042 88 13 Washington
## 3043 88 19 California
## 3044 88 14 Washington
## 3045 88 22 Beaujolais
## 3046 88 30 Mendoza Province
## 3047 88 22 Beaujolais
## 3048 88 32 Washington
## 3049 88 20 California
## 3050 88 NA Lisboa
## 3051 88 22 Lombardy
## 3052 88 26 Pfalz
## 3053 88 16 California
## 3054 88 25 Oregon
## 3055 88 40 California
## 3056 88 18 California
## 3057 88 15 Mendoza Province
## 3058 88 22 Mendoza Province
## 3059 88 25 Beaujolais
## 3060 88 27 Washington
## 3061 88 50 Oregon
## 3062 95 100 California
## 3063 95 60 California
## 3064 95 164 Burgundy
## 3065 95 36 Washington
## 3066 94 49 Sicily & Sardinia
## 3067 94 25 Washington
## 3068 94 45 California
## 3069 94 190 Burgundy
## 3070 94 205 Burgundy
## 3071 94 80 California
## 3072 94 145 Burgundy
## 3073 94 89 Burgundy
## 3074 94 60 California
## 3075 94 75 California
## 3076 94 75 California
## 3077 94 45 Washington
## 3078 94 125 California
## 3079 94 40 Washington
## 3080 94 36 Washington
## 3081 94 105 South Australia
## 3082 88 17 California
## 3083 88 NA Veneto
## 3084 88 NA Veneto
## 3085 88 NA Veneto
## 3086 88 16 Veneto
## 3087 88 11 Washington
## 3088 88 35 California
## 3089 88 22 Veneto
## 3090 88 25 Washington
## 3091 88 55 Veneto
## 3092 88 35 Veneto
## 3093 88 15 Victoria
## 3094 88 42 Central Valley
## 3095 88 18 Alsace
## 3096 88 50 Veneto
## 3097 88 45 Veneto
## 3098 88 44 Veneto
## 3099 88 10 Central Spain
## 3100 88 26 South Australia
## 3101 88 35 California
## 3102 88 145 California
## 3103 88 40 Peumo
## 3104 88 24 Casablanca Valley
## 3105 88 13 Colchagua Valley
## 3106 88 NA Veneto
## 3107 88 NA Veneto
## 3108 88 30 Alsace
## 3109 88 NA Veneto
## 3110 88 NA Alsace
## 3111 88 49 Colchagua Valley
## 3112 84 25 Bordeaux
## 3113 84 15 Bordeaux
## 3114 84 35 California
## 3115 84 52 California
## 3116 84 11 California
## 3117 84 32 California
## 3118 84 38 Oregon
## 3119 84 13 California
## 3120 84 18 California
## 3121 84 22 Mendoza Province
## 3122 84 18 Central Italy
## 3123 84 13 Bordeaux
## 3124 84 10 California
## 3125 84 28 California
## 3126 84 15 Oregon
## 3127 84 35 Oregon
## 3128 84 12 California
## 3129 84 10 California
## 3130 83 32 California
## 3131 83 8 California
## 3132 83 NA
## 3133 83 11 Northern Spain
## 3134 83 NA Bordeaux
## 3135 83 NA Bordeaux
## 3136 89 17 Western Australia
## 3137 89 20 Mendoza Province
## 3138 89 25 Südsteiermark
## 3139 89 25 Kamptal
## 3140 89 18 Kamptal
## 3141 89 44 California
## 3142 89 28 Washington
## 3143 89 30 California
## 3144 89 25 Washington
## 3145 89 41 Burgundy
## 3146 89 30 Washington
## 3147 89 23 Niederösterreich
## 3148 89 22 Washington
## 3149 89 12 Other
## 3150 89 20 Mendoza Province
## 3151 89 22 California
## 3152 89 60 Kamptal
## 3153 89 50 California
## 3154 89 30 Washington
## 3155 89 22 Northern Spain
## 3156 86 11 California
## 3157 86 12 Marlborough
## 3158 86 11 Mendoza Province
## 3159 86 17 Other
## 3160 86 30 Mendoza Province
## 3161 86 NA Alsace
## 3162 86 18 Veneto
## 3163 86 16 Veneto
## 3164 86 NA Alsace
## 3165 86 85 California
## 3166 86 20 Mendoza Province
## 3167 86 NA Veneto
## 3168 86 5 Veneto
## 3169 86 19 Veneto
## 3170 86 15 Veneto
## 3171 86 NA Veneto
## 3172 86 NA Veneto
## 3173 86 16 Veneto
## 3174 86 20 Oregon
## 3175 86 42 California
## 3176 86 14 California
## 3177 86 28 Alsace
## 3178 86 35 Alsace
## 3179 86 40 California
## 3180 86 11 Mendoza Province
## 3181 90 22 Beaujolais
## 3182 90 20 Beaujolais
## 3183 90 20 Beaujolais
## 3184 90 22 Beaujolais
## 3185 90 38 California
## 3186 90 45 Tuscany
## 3187 90 42 California
## 3188 90 19 Südsteiermark
## 3189 90 65 Washington
## 3190 90 12 California
## 3191 90 38 California
## 3192 90 23 Beaujolais
## 3193 90 28 New York
## 3194 90 90 Rhône Valley
## 3195 90 50 California
## 3196 90 15 Rhône Valley
## 3197 90 NA Tuscany
## 3198 90 22 California
## 3199 90 30 Kamptal
## 3200 90 25 Thermenregion
## 3201 90 21 Beaujolais
## 3202 90 400 Tuscany
## 3203 90 NA Kremstal
## 3204 90 20 Washington
## 3205 90 15 Washington
## 3206 90 15 California
## 3207 90 55 California
## 3208 90 60 Tuscany
## 3209 90 36 California
## 3210 90 22 California
## 3211 88 45 Northern Spain
## 3212 88 13 Catalonia
## 3213 88 32 Washington
## 3214 88 12 Catalonia
## 3215 88 38 Northeastern Italy
## 3216 88 21 California
## 3217 88 40 Catalonia
## 3218 88 NA Central Italy
## 3219 88 60 Bordeaux
## 3220 88 20 Provence
## 3221 88 NA Bordeaux
## 3222 88 17 California
## 3223 88 35 California
## 3224 88 28 California
## 3225 88 75 Northern Spain
## 3226 88 35 California
## 3227 88 19 Central Italy
## 3228 88 27 Oregon
## 3229 88 60 California
## 3230 88 21 Central Italy
## 3231 88 35 California
## 3232 88 17 Galicia
## 3233 88 35 Oregon
## 3234 88 35 California
## 3235 88 20 Thermenregion
## 3236 88 70 California
## 3237 88 NA San Antonio
## 3238 88 16 Northern Spain
## 3239 88 19 California
## 3240 88 40 Central Italy
## 3241 86 15 California
## 3242 86 9 Washington
## 3243 86 30 Washington
## 3244 86 23 Tuscany
## 3245 86 55 California
## 3246 86 20 Washington
## 3247 86 56 Champagne
## 3248 86 18 California
## 3249 86 18 Tuscany
## 3250 86 35 California
## 3251 86 22 California
## 3252 86 NA Bordeaux
## 3253 86 NA Bordeaux
## 3254 86 31 Tuscany
## 3255 86 55 California
## 3256 86 13 Tuscany
## 3257 86 30 California
## 3258 86 35 Washington
## 3259 86 30 Washington
## 3260 86 30 California
## 3261 86 15 Northern Spain
## 3262 86 12 Carnuntum
## 3263 86 40 Washington
## 3264 86 15 Marlborough
## 3265 86 NA Champagne
## 3266 86 11 Bordeaux
## 3267 86 15 Northern Spain
## 3268 86 45 Tuscany
## 3269 86 14 Bordeaux
## 3270 86 25 California
## 3271 87 50 Southwest France
## 3272 87 10 Bucelas
## 3273 87 18 Sicily & Sardinia
## 3274 87 10 Estremadura
## 3275 87 28 Sicily & Sardinia
## 3276 87 19 Sicily & Sardinia
## 3277 87 18 California
## 3278 87 18 South Australia
## 3279 87 14 Alentejo
## 3280 87 38 California
## 3281 87 42 California
## 3282 87 15 Mendoza Province
## 3283 87 10 Southern Italy
## 3284 87 24 Southern Italy
## 3285 87 46 Mendoza Province
## 3286 87 32 Washington
## 3287 87 23 Washington
## 3288 87 21 Sicily & Sardinia
## 3289 87 24 South Australia
## 3290 87 35 Washington
## 3291 87 18 Southern Italy
## 3292 87 17 California
## 3293 87 28 California
## 3294 87 18 California
## 3295 87 30 Alentejano
## 3296 87 34 California
## 3297 87 55 California
## 3298 87 11 Estremadura
## 3299 87 NA Alentejano
## 3300 87 42 Levante
## 3301 87 13 Coastal Region
## 3302 87 20 California
## 3303 87 15 Catalonia
## 3304 87 19 Veneto
## 3305 87 22 California
## 3306 87 80 California
## 3307 87 27 California
## 3308 87 22 Veneto
## 3309 87 NA Alentejo
## 3310 87 37 Veneto
## 3311 87 16 Veneto
## 3312 87 32 California
## 3313 87 15 Catalonia
## 3314 87 40 California
## 3315 87 11 Galilee
## 3316 87 NA Tuscany
## 3317 87 25 Washington
## 3318 87 27 California
## 3319 87 13 Catalonia
## 3320 87 19 Tuscany
## 3321 87 20 Judean Hills
## 3322 87 45 Northern Spain
## 3323 87 20 Canterbury
## 3324 87 NA Tuscany
## 3325 87 20 Bordeaux
## 3326 87 17 Marlborough
## 3327 87 47 California
## 3328 87 NA Tuscany
## 3329 87 18 California
## 3330 87 9 Northern Spain
## 3331 87 16 Tuscany
## 3332 84 29 Burgundy
## 3333 84 24 California
## 3334 84 23 Burgundy
## 3335 84 16 New York
## 3336 84 28 Burgundy
## 3337 84 13 New York
## 3338 84 35 Sicily & Sardinia
## 3339 84 14 New York
## 3340 84 10 California
## 3341 84 13 Rhône Valley
## 3342 84 15 Galicia
## 3343 84 29 Burgundy
## 3344 84 15 Thrace
## 3345 84 17 New York
## 3346 84 NA Burgundy
## 3347 84 9 Northern Spain
## 3348 84 40 Burgundy
## 3349 84 30 Burgundy
## 3350 84 NA Burgundy
## 3351 84 50 California
## 3352 84 14 New York
## 3353 84 20 Burgundy
## 3354 84 20 Burgundy
## 3355 84 NA Burgundy
## 3356 84 18 New York
## 3357 84 44 California
## 3358 84 30 New York
## 3359 84 15 Northern Spain
## 3360 92 50 Northern Spain
## 3361 92 31 Rheingau
## 3362 92 69 California
## 3363 92 260 California
## 3364 92 18 South Australia
## 3365 92 45 California
## 3366 92 48 Douro
## 3367 92 38 California
## 3368 92 18 California
## 3369 92 41 Oregon
## 3370 92 65 California
## 3371 92 16 California
## 3372 92 75 Oregon
## 3373 92 25 Oregon
## 3374 92 38 California
## 3375 92 22 Beaujolais
## 3376 92 50 Washington
## 3377 92 45 California
## 3378 92 65 Washington
## 3379 92 35 Douro
## 3380 92 35 Washington
## 3381 92 20 Oregon
## 3382 92 33 Mosel
## 3383 92 92 Mosel
## 3384 92 42 California
## 3385 92 25 Oregon
## 3386 92 28 Northern Spain
## 3387 92 48 Washington
## 3388 92 60 Douro
## 3389 92 31 Douro
## 3390 84 25 Michigan
## 3391 84 9 Spain Other
## 3392 84 11 Other
## 3393 84 14 Catalonia
## 3394 84 24 California
## 3395 84 20 California
## 3396 84 36 California
## 3397 84 20 Mendoza Province
## 3398 84 13 California
## 3399 84 32 California
## 3400 84 15 Mendoza Province
## 3401 84 8 Alentejano
## 3402 84 13 Tejo
## 3403 84 10 Tejo
## 3404 84 40 Oregon
## 3405 84 32 Michigan
## 3406 84 18 Michigan
## 3407 84 25 Tejo
## 3408 84 12 Vinho Verde
## 3409 83 11 Central Spain
## 3410 83 40 California
## 3411 83 60 Galicia
## 3412 83 9 Alentejo
## 3413 83 55 California
## 3414 83 8 Lisboa
## 3415 83 16 Northeastern Italy
## 3416 83 9 California
## 3417 83 11 Northern Spain
## 3418 83 24 California
## 3419 83 25 California
## 3420 86 40 California
## 3421 86 15 Douro
## 3422 86 NA Vinho Verde
## 3423 86 12 Maule Valley
## 3424 86 32 California
## 3425 86 26 California
## 3426 86 20 Loire Valley
## 3427 86 12 Alentejano
## 3428 86 11 Douro
## 3429 86 39 Oregon
## 3430 86 35 California
## 3431 86 26 California
## 3432 88 25 Beaujolais
## 3433 88 27 Washington
## 3434 88 50 Oregon
## 3435 88 24 Levante
## 3436 88 28 California
## 3437 88 28 Washington
## 3438 88 22 California
## 3439 88 55 California
## 3440 88 10 Northern Spain
## 3441 88 NA Dão
## 3442 88 72 California
## 3443 88 20 Douro
## 3444 88 39 Douro
## 3445 88 19 Douro
## 3446 88 60 California
## 3447 88 30 Oregon
## 3448 88 70 Piedmont
## 3449 88 31 Piedmont
## 3450 88 16 California
## 3451 88 10 California
## 3452 88 15 South Australia
## 3453 88 12 Mendoza Province
## 3454 88 14 California
## 3455 88 21 South Australia
## 3456 88 19 California
## 3457 88 20 Mendoza Province
## 3458 88 20 Mendoza Province
## 3459 88 15 California
## 3460 88 21 South Australia
## 3461 88 17 California
## 3462 88 39 Oregon
## 3463 88 24 Drama
## 3464 88 27 Veneto
## 3465 88 10 Rhône Valley
## 3466 88 28 Lombardy
## 3467 88 14 California
## 3468 88 30 Alentejano
## 3469 88 48 California
## 3470 88 48 California
## 3471 88 29 Piedmont
## 3472 88 60 Northern Spain
## 3473 88 15 Rhône Valley
## 3474 88 10 Douro
## 3475 88 25 Ella Valley
## 3476 88 40 Oregon
## 3477 88 NA Bordeaux
## 3478 88 NA Bordeaux
## 3479 88 17 Bordeaux
## 3480 88 35 Bordeaux
## 3481 88 67 Bordeaux
## 3482 88 28 Douro
## 3483 87 18 Alsace
## 3484 87 13 Alsace
## 3485 87 13 New York
## 3486 87 40 Oregon
## 3487 87 30 Alsace
## 3488 87 19 New York
## 3489 87 20 Veneto
## 3490 87 21 California
## 3491 87 25 Veneto
## 3492 87 20 California
## 3493 87 12 Cachapoal Valley
## 3494 87 33 New York
## 3495 87 25 Veneto
## 3496 87 42 Mosel
## 3497 87 11 Maipo Valley
## 3498 87 NA Alsace
## 3499 87 65 Veneto
## 3500 87 16 New York
## 3501 88 14 California
## 3502 88 35 Champagne
## 3503 88 13 Washington
## 3504 88 12 California
## 3505 88 55 California
## 3506 88 30 Washington
## 3507 88 40 California
## 3508 88 18 California
## 3509 88 19 Oregon
## 3510 88 22 Tuscany
## 3511 88 NA Southern Italy
## 3512 88 39 Oregon
## 3513 88 18 Tuscany
## 3514 88 48 California
## 3515 88 59 California
## 3516 88 24 Washington
## 3517 88 24 Champagne
## 3518 88 38 California
## 3519 88 18 Galicia
## 3520 88 55 Champagne
## 3521 88 45 California
## 3522 88 62 California
## 3523 88 22 California
## 3524 88 27 Central Italy
## 3525 88 55 Champagne
## 3526 88 45 Champagne
## 3527 88 26 Southern Italy
## 3528 88 22 Southern Italy
## 3529 88 10 California
## 3530 88 12 Rheinhessen
## 3531 92 92 Piedmont
## 3532 92 NA Niederösterreich
## 3533 92 38 Western Australia
## 3534 92 18 Washington
## 3535 92 65 South Australia
## 3536 92 40 California
## 3537 92 25 Carnuntum
## 3538 92 39 Bordeaux
## 3539 92 30 Wachau
## 3540 92 120 Piedmont
## 3541 92 30 Piedmont
## 3542 92 50 Piedmont
## 3543 92 55 Washington
## 3544 92 32 Washington
## 3545 92 70 Piedmont
## 3546 92 45 California
## 3547 92 56 California
## 3548 92 40 Western Australia
## 3549 92 44 Piedmont
## 3550 92 36 California
## 3551 92 NA Südoststeiermark
## 3552 92 17 Washington
## 3553 92 30 Mosel
## 3554 92 44 California
## 3555 92 50 South Australia
## 3556 92 NA Kamptal
## 3557 92 30 Washington
## 3558 92 38 Burgenland
## 3559 92 40 Washington
## 3560 89 30 Loire Valley
## 3561 89 16 Tokaji
## 3562 89 25 Oregon
## 3563 89 32 California
## 3564 89 17 Sicily & Sardinia
## 3565 89 15 Sicily & Sardinia
## 3566 89 20 Port
## 3567 89 20 Loire Valley
## 3568 89 20 Loire Valley
## 3569 89 NA Alentejano
## 3570 89 12 Mosel
## 3571 89 20 Sicily & Sardinia
## 3572 89 20 Mendoza Province
## 3573 89 40 Oregon
## 3574 89 15 Mendoza Province
## 3575 89 13 Dão
## 3576 89 23 Loire Valley
## 3577 89 16 Moselle Luxembourgeoise
## 3578 89 60 California
## 3579 89 33 Oregon
## 3580 89 25 Other
## 3581 89 30 Oregon
## 3582 89 20 California
## 3583 89 55 Oregon
## 3584 89 19 Mosel
## 3585 89 28 Virginia
## 3586 89 26 Douro
## 3587 89 19 Sicily & Sardinia
## 3588 89 29 Loire Valley
## 3589 89 18 Galilee
## 3590 86 30 Tuscany
## 3591 86 13 Languedoc-Roussillon
## 3592 86 50 Bordeaux
## 3593 86 30 Bordeaux
## 3594 86 35 California
## 3595 86 13 Australia Other
## 3596 86 13 Australia Other
## 3597 86 12 Washington
## 3598 86 15 Bordeaux
## 3599 86 20 South Australia
## 3600 86 30 California
## 3601 86 40 New York
## 3602 86 28 California
## 3603 86 17 Bordeaux
## 3604 86 22 Languedoc-Roussillon
## 3605 86 33 Washington
## 3606 86 NA Tuscany
## 3607 86 13 Douro
## 3608 86 28 California
## 3609 86 13 California
## 3610 86 20 Washington
## 3611 86 14 Colchagua Valley
## 3612 86 22 California
## 3613 86 20 Tejo
## 3614 86 12 Central Valley
## 3615 86 15 Northern Spain
## 3616 86 20 Languedoc-Roussillon
## 3617 86 NA Alentejano
## 3618 86 17 New York
## 3619 86 35 California
## 3620 82 15 Maipo Valley
## 3621 82 13 Central Valley
## 3622 82 24 Minho
## 3623 82 20 California
## 3624 82 18 California
## 3625 82 19 California
## 3626 82 42 California
## 3627 82 50 California
## 3628 82 20 Colchagua Valley
## 3629 82 20 California
## 3630 82 22 Oregon
## 3631 82 20 Leyda Valley
## 3632 82 10 Central Valley
## 3633 82 18 California
## 3634 82 15 California
## 3635 81 11 California
## 3636 81 14 Maipo Valley
## 3637 81 37 California
## 3638 81 12 Maule Valley
## 3639 81 16 Oregon
## 3640 81 10 Central Valley
## 3641 80 8 Vinho Verde
## 3642 80 15 Maule Valley
## 3643 97 NA Bordeaux
## 3644 96 NA Bordeaux
## 3645 96 170 Bordeaux
## 3646 93 52 Central Italy
## 3647 93 67 Wachau
## 3648 93 56 Wachau
## 3649 93 50 California
## 3650 93 40 Washington
## 3651 93 30 California
## 3652 93 45 California
## 3653 93 90 Wachau
## 3654 93 40 California
## 3655 92 60 Washington
## 3656 92 40 California
## 3657 92 85 Wachau
## 3658 92 64 Mendoza Province
## 3659 92 75 California
## 3660 92 40 Washington
## 3661 92 60 California
## 3662 92 50 Washington
## 3663 92 28 California
## 3664 84 20 California
## 3665 84 24 Washington
## 3666 84 25 California
## 3667 84 14 Curicó Valley
## 3668 84 10 Marlborough
## 3669 84 20 California
## 3670 84 15 California
## 3671 84 30 California
## 3672 84 14 Provence
## 3673 84 8 California
## 3674 84 10 Maipo Valley
## 3675 84 10 California
## 3676 84 11 Piedmont
## 3677 84 NA Southwest France
## 3678 84 18 California
## 3679 84 9 California
## 3680 84 9 Australia Other
## 3681 84 28 Walker Bay
## 3682 84 9 Colchagua Valley
## 3683 84 11 Western Cape
## 3684 84 19 Western Cape
## 3685 84 10 Robertson
## 3686 84 22 Marlborough
## 3687 91 40 California
## 3688 91 90 Champagne
## 3689 91 72 California
## 3690 91 56 Port
## 3691 91 35 Burgundy
## 3692 91 65 Burgundy
## 3693 91 27 Northern Spain
## 3694 91 26 Burgundy
## 3695 91 30 Veneto
## 3696 91 75 Lombardy
## 3697 91 34 California
## 3698 91 52 Northern Spain
## 3699 91 50 Champagne
## 3700 91 90 Champagne
## 3701 91 65 Veneto
## 3702 91 45 Mendoza Province
## 3703 91 95 Mosel
## 3704 91 30 Mendoza Province
## 3705 91 55 California
## 3706 91 45 Lombardy
## 3707 91 42 Mosel
## 3708 91 40 Oregon
## 3709 91 50 Oregon
## 3710 91 25 Northern Spain
## 3711 91 27 Port
## 3712 91 25 Mendoza Province
## 3713 88 20 California
## 3714 88 19 Southern Italy
## 3715 88 20 Southern Italy
## 3716 88 55 Württemberg
## 3717 88 38 Baden
## 3718 88 22 Southern Italy
## 3719 88 24 Northern Spain
## 3720 88 35 California
## 3721 88 12 Galicia
## 3722 88 30 Washington
## 3723 88 60 Port
## 3724 88 22 Washington
## 3725 88 NA Bordeaux
## 3726 88 23 Bordeaux
## 3727 88 NA Bordeaux
## 3728 86 22 Tuscany
## 3729 86 14 Catalonia
## 3730 86 20 Beaujolais
## 3731 86 12 Southwest France
## 3732 86 12 Central Valley
## 3733 86 10 California
## 3734 86 13 Languedoc-Roussillon
## 3735 86 21 Alsace
## 3736 86 10 Southwest France
## 3737 86 17 Provence
## 3738 86 10 Catalonia
## 3739 86 23 Pangeon
## 3740 86 12 Alentejano
## 3741 86 16 Tuscany
## 3742 86 17 Beaujolais
## 3743 86 18 Tuscany
## 3744 86 10 Curicó Valley
## 3745 86 90 Tuscany
## 3746 86 38 California
## 3747 86 20 California
## 3748 86 8 Central Valley
## 3749 86 7 California
## 3750 86 13 Southwest France
## 3751 86 14 California
## 3752 86 19 Beaujolais
## 3753 86 12 Languedoc-Roussillon
## 3754 86 20 Alsace
## 3755 86 12 Northern Spain
## 3756 86 25 Elqui Valley
## 3757 86 15 Tuscany
## 3758 86 17 California
## 3759 86 20 Provence
## 3760 86 15 Mendoza Province
## 3761 86 29 Mendoza Province
## 3762 86 20 Sicily & Sardinia
## 3763 86 15 New York
## 3764 86 15 Wairau Valley
## 3765 86 13 Washington
## 3766 86 17 New York
## 3767 86 20 California
## 3768 86 9 Northern Spain
## 3769 86 18 Southern Italy
## 3770 86 20 Southern Italy
## 3771 86 55 California
## 3772 86 NA Alsace
## 3773 86 28 Virginia
## 3774 86 49 California
## 3775 86 24 California
## 3776 86 54 California
## 3777 86 30 Southern Italy
## 3778 86 29 Virginia
## 3779 86 11 Virginia
## 3780 86 20 New York
## 3781 86 22 New York
## 3782 86 16 Marlborough
## 3783 86 12 Washington
## 3784 86 20 Alsace
## 3785 86 14 Virginia
## 3786 86 NA Southern Italy
## 3787 86 20 Sicily & Sardinia
## 3788 88 40 California
## 3789 88 28 California
## 3790 88 25 Österreichischer Sekt
## 3791 88 60 Washington
## 3792 88 32 California
## 3793 88 45 Tuscany
## 3794 88 10 Washington
## 3795 88 20 New York
## 3796 88 20 Washington
## 3797 88 20 Tuscany
## 3798 88 15 Tuscany
## 3799 88 33 Tuscany
## 3800 88 35 Tuscany
## 3801 88 17 New York
## 3802 88 10 Central Valley
## 3803 88 12 Washington
## 3804 88 10 Washington
## 3805 88 20 Tuscany
## 3806 88 15 Catalonia
## 3807 88 13 California
## 3808 88 12 California
## 3809 88 44 Northern Spain
## 3810 88 12 Maule Valley
## 3811 88 28 California
## 3812 88 15 Southwest France
## 3813 88 17 California
## 3814 88 22 Beaujolais
## 3815 88 25 Southwest France
## 3816 88 20 Rhône Valley
## 3817 88 17 Southwest France
## 3818 93 65 Tuscany
## 3819 93 NA Douro
## 3820 93 28 Lisboa
## 3821 93 30 California
## 3822 93 95 Northern Spain
## 3823 93 52 California
## 3824 93 NA Loire Valley
## 3825 93 84 Rhône Valley
## 3826 93 130 Rhône Valley
## 3827 93 36 Tuscany
## 3828 93 39 California
## 3829 93 79 California
## 3830 93 40 Alsace
## 3831 93 23 Tuscany
## 3832 93 106 California
## 3833 93 NA Loire Valley
## 3834 93 32 Alsace
## 3835 93 30 Rhône Valley
## 3836 93 22 Tuscany
## 3837 93 100 Douro
## 3838 93 25 Tuscany
## 3839 93 24 Alsace
## 3840 93 32 California
## 3841 93 59 California
## 3842 93 35 Tejo
## 3843 93 20 Tuscany
## 3844 93 18 Douro
## 3845 93 16 Tuscany
## 3846 93 60 Alsace
## 3847 93 55 California
## 3848 92 42 Southern Italy
## 3849 92 NA Sicily & Sardinia
## 3850 92 50 California
## 3851 92 31 Mosel
## 3852 92 100 Oregon
## 3853 92 NA Loire Valley
## 3854 92 NA Loire Valley
## 3855 92 NA Loire Valley
## 3856 92 100 California
## 3857 92 60 Maipo Valley
## 3858 92 25 California
## 3859 92 50 California
## 3860 92 55 California
## 3861 92 50 California
## 3862 92 28 California
## 3863 92 NA Lombardy
## 3864 92 28 Loire Valley
## 3865 92 45 California
## 3866 91 48 California
## 3867 91 60 Oregon
## 3868 91 NA Southern Italy
## 3869 91 25 California
## 3870 91 20 California
## 3871 91 NA Loire Valley
## 3872 91 84 Mosel
## 3873 91 37 California
## 3874 91 28 Oregon
## 3875 91 45 Oregon
## 3876 91 50 Central Italy
## 3877 86 18 California
## 3878 86 17 Loire Valley
## 3879 86 36 California
## 3880 86 18 California
## 3881 86 12 South Australia
## 3882 86 10 Washington
## 3883 86 NA Port
## 3884 86 NA Tuscany
## 3885 86 55 Washington
## 3886 86 12 Catalonia
## 3887 86 12 Victoria
## 3888 86 12 Central Spain
## 3889 86 10 Washington
## 3890 86 23 California
## 3891 86 18 Galicia
## 3892 86 12 Alentejano
## 3893 86 36 California
## 3894 86 18 California
## 3895 86 NA Loire Valley
## 3896 86 13 Northern Spain
## 3897 86 34 California
## 3898 86 15 Levante
## 3899 86 12 California
## 3900 87 25 Oregon
## 3901 87 24 Northeastern Italy
## 3902 87 22 California
## 3903 87 16 Northeastern Italy
## 3904 87 11 Lisboa
## 3905 87 34 California
## 3906 87 20 Northeastern Italy
## 3907 87 21 Loire Valley
## 3908 87 20 Northeastern Italy
## 3909 87 NA Northeastern Italy
## 3910 87 22 Northeastern Italy
## 3911 87 19 Northeastern Italy
## 3912 87 19 Northeastern Italy
## 3913 87 38 Oregon
## 3914 87 22 Loire Valley
## 3915 87 30 Northeastern Italy
## 3916 87 31 California
## 3917 87 36 California
## 3918 87 35 Mendoza Province
## 3919 87 20 Northeastern Italy
## 3920 87 17 Northern Spain
## 3921 87 47 California
## 3922 87 25 Oregon
## 3923 87 18 Tejo
## 3924 87 30 California
## 3925 87 15 Northeastern Italy
## 3926 87 30 California
## 3927 87 20 Northeastern Italy
## 3928 87 NA Northeastern Italy
## 3929 87 38 California
## 3930 83 7 Mendoza Province
## 3931 83 8 Mendoza Province
## 3932 83 10 California
## 3933 83 38 California
## 3934 83 13 Other
## 3935 83 11 Mendoza Province
## 3936 83 14 Northern Spain
## 3937 83 11 California
## 3938 83 20 California
## 3939 83 8 Portuguese Table Wine
## 3940 83 13 California
## 3941 83 25 Mendoza Province
## 3942 83 10 Mendoza Province
## 3943 83 33 California
## 3944 83 10 California
## 3945 83 12 Northern Spain
## 3946 83 14 Vinho Verde
## 3947 83 18 California
## 3948 83 15 Australia Other
## 3949 83 6 Lisboa
## 3950 83 10 Australia Other
## 3951 83 5 Vinho Verde
## 3952 83 12 Mendoza Province
## 3953 83 9 Australia Other
## 3954 83 10 Northern Spain
## 3955 90 NA Tuscany
## 3956 90 NA Beaujolais
## 3957 90 NA Beaujolais
## 3958 90 105 California
## 3959 90 32 Casablanca Valley
## 3960 90 24 Cachapoal Valley
## 3961 90 18 Washington
## 3962 90 17 Mendoza Province
## 3963 90 NA Kamptal
## 3964 90 140 Burgundy
## 3965 90 95 Burgundy
## 3966 90 195 California
## 3967 90 24 California
## 3968 90 15 California
## 3969 90 NA Tuscany
## 3970 90 47 Coastal Region
## 3971 90 NA Veneto
## 3972 90 NA Burgundy
## 3973 90 25 Bordeaux
## 3974 90 NA Bordeaux
## 3975 90 98 California
## 3976 90 20 California
## 3977 90 36 California
## 3978 90 37 Veneto
## 3979 85 20 Piedmont
## 3980 85 16 Marlborough
## 3981 85 9 Washington
## 3982 85 20 California
## 3983 85 25 Marlborough
## 3984 85 48 Kamptal
## 3985 85 23 Piedmont
## 3986 85 25 California
## 3987 85 26 Piedmont
## 3988 85 13 Piedmont
## 3989 85 15 Piedmont
## 3990 85 16 Piedmont
## 3991 85 21 Piedmont
## 3992 85 30 Washington
## 3993 85 32 California
## 3994 85 13 California
## 3995 85 16 California
## 3996 85 13 Other
## 3997 85 19 Piedmont
## 3998 88 20 New York
## 3999 88 96 Northern Spain
## 4000 88 18 New York
## 4001 88 18 Northern Spain
## 4002 88 19 Virginia
## 4003 88 15 Mendoza Province
## 4004 88 33 California
## 4005 88 20 Provence
## 4006 88 18 Provence
## 4007 88 23 Southern Italy
## 4008 88 20 Istria
## 4009 88 25 Washington
## 4010 88 20 New York
## 4011 88 NA Southern Italy
## 4012 88 14 Mendoza Province
## 4013 88 25 Stellenbosch
## 4014 88 15 Washington
## 4015 88 32 Washington
## 4016 88 18 Marlborough
## 4017 88 24 Catalonia
## 4018 88 16 Hawke's Bay
## 4019 88 30 Southern Italy
## 4020 88 27 Peljesac
## 4021 88 55 California
## 4022 88 58 California
## 4023 88 28 Washington
## 4024 88 11 Northern Spain
## 4025 88 15 Coastal Region
## 4026 88 NA Stellenbosch
## 4027 88 NA Southern Italy
## 4028 88 25 Washington
## 4029 88 25 California
## 4030 88 23 California
## 4031 88 42 California
## 4032 88 20 California
## 4033 88 25 Burgundy
## 4034 88 15 Washington
## 4035 88 38 Washington
## 4036 88 14 Loire Valley
## 4037 88 32 Burgundy
## 4038 88 35 Burgundy
## 4039 88 20 Loire Valley
## 4040 88 13 Veneto
## 4041 88 15 Veneto
## 4042 88 70 Washington
## 4043 88 15 Washington
## 4044 88 18 Washington
## 4045 88 34 Washington
## 4046 88 20 Mendoza Province
## 4047 88 12 Curicó Valley
## 4048 88 18 New York
## 4049 88 12 Kakheti
## 4050 88 25 Awatere Valley
## 4051 88 20 Mendoza Province
## 4052 88 43 Canelones
## 4053 88 25 Washington
## 4054 88 60 Veneto
## 4055 88 27 Mendoza Province
## 4056 88 36 Washington
## 4057 88 22 California
## 4058 90 25 California
## 4059 90 13 California
## 4060 90 17 Washington
## 4061 90 19 France Other
## 4062 90 25 California
## 4063 90 28 California
## 4064 90 45 Washington
## 4065 90 35 New York
## 4066 90 40 Washington
## 4067 90 40 California
## 4068 90 50 Tuscany
## 4069 90 50 Piedmont
## 4070 90 29 California
## 4071 90 40 Piedmont
## 4072 90 32 Washington
## 4073 90 19 California
## 4074 90 46 England
## 4075 90 36 California
## 4076 90 30 California
## 4077 90 26 Washington
## 4078 90 60 California
## 4079 90 35 California
## 4080 90 53 California
## 4081 90 31 Washington
## 4082 90 35 Loire Valley
## 4083 90 32 California
## 4084 90 50 California
## 4085 90 38 California
## 4086 90 40 Maipo Valley
## 4087 90 25 Washington
## 4088 86 55 California
## 4089 86 15 Northern Spain
## 4090 86 11 Northeastern Italy
## 4091 86 NA Vinho Verde
## 4092 86 13 Alentejano
## 4093 86 NA Tejo
## 4094 86 11 Douro
## 4095 86 39 Oregon
## 4096 86 35 California
## 4097 86 26 California
## 4098 86 15 Alentejo
## 4099 86 15 Casablanca Valley
## 4100 86 12 South Australia
## 4101 86 54 California
## 4102 86 24 California
## 4103 86 33 California
## 4104 86 22 California
## 4105 86 16 Canelones
## 4106 86 30 California
## 4107 86 25 Oregon
## 4108 86 24 Bairrada
## 4109 86 12 Douro
## 4110 86 20 Colchagua Valley
## 4111 90 88 California
## 4112 90 35 California
## 4113 90 62 California
## 4114 90 28 California
## 4115 90 17 Mosel
## 4116 90 13 Mosel
## 4117 90 17 California
## 4118 90 35 California
## 4119 90 28 California
## 4120 90 NA Sicily & Sardinia
## 4121 90 18 Mosel
## 4122 90 49 Champagne
## 4123 90 60 Champagne
## 4124 90 31 California
## 4125 90 48 California
## 4126 90 49 Piedmont
## 4127 90 40 Lombardy
## 4128 90 60 Champagne
## 4129 90 53 Champagne
## 4130 90 63 Champagne
## 4131 90 48 California
## 4132 90 27 Bordeaux
## 4133 90 30 California
## 4134 90 55 Oregon
## 4135 90 15 Tejo
## 4136 90 65 Champagne
## 4137 90 60 Port
## 4138 90 29 South Australia
## 4139 90 50 Champagne
## 4140 90 60 Port
## 4141 92 66 Oregon
## 4142 92 80 Burgundy
## 4143 92 35 Burgundy
## 4144 92 58 California
## 4145 92 35 Southern Italy
## 4146 92 26 Lisboa
## 4147 92 60 California
## 4148 92 50 Oregon
## 4149 92 60 California
## 4150 92 45 California
## 4151 92 95 Washington
## 4152 92 55 Champagne
## 4153 92 39 Oregon
## 4154 92 75 California
## 4155 92 100 Sicily & Sardinia
## 4156 92 48 Champagne
## 4157 92 35 California
## 4158 92 45 California
## 4159 92 80 California
## 4160 92 50 California
## 4161 92 27 California
## 4162 92 39 California
## 4163 92 NA Douro
## 4164 92 66 Southern Italy
## 4165 92 35 Dão
## 4166 92 65 California
## 4167 92 NA Southern Italy
## 4168 92 30 Oregon
## 4169 92 42 Washington
## 4170 92 210 Rheingau
## 4171 87 58 California
## 4172 87 26 Texas
## 4173 87 25 Washington
## 4174 87 35 California
## 4175 87 42 California
## 4176 87 15 California
## 4177 87 38 California
## 4178 87 14 Washington
## 4179 87 10 Washington
## 4180 87 10 Washington
## 4181 87 23 Texas
## 4182 87 14 New York
## 4183 87 12 Colchagua Valley
## 4184 87 18 Provence
## 4185 87 60 Burgundy
## 4186 87 9 Northeastern Italy
## 4187 87 55 California
## 4188 87 14 California
## 4189 87 25 New York
## 4190 87 20 New York
## 4191 87 79 Veneto
## 4192 87 19 California
## 4193 87 13 Rapel Valley
## 4194 87 23 California
## 4195 87 32 California
## 4196 87 25 Washington
## 4197 87 25 Aconcagua Costa
## 4198 87 19 Provence
## 4199 87 17 Peumo
## 4200 87 17 Marchigue
## 4201 87 17 California
## 4202 87 52 California
## 4203 87 NA Veneto
## 4204 87 65 California
## 4205 87 18 Burgundy
## 4206 87 50 Washington
## 4207 87 19 Paarl
## 4208 87 12 Mendoza Province
## 4209 87 23 Burgundy
## 4210 87 14 Northeastern Italy
## 4211 87 20 Northern Spain
## 4212 87 NA Lisboa
## 4213 87 12 Lisboa
## 4214 87 15 Tejo
## 4215 87 25 California
## 4216 87 12 Rheinhessen
## 4217 87 39 California
## 4218 87 60 Tuscany
## 4219 87 11 Vinho Verde
## 4220 87 30 Mendoza Province
## 4221 87 30 California
## 4222 87 12 Veneto
## 4223 87 50 Veneto
## 4224 87 50 Mendoza Province
## 4225 87 20 California
## 4226 87 12 Tejo
## 4227 87 19 California
## 4228 87 17 Southwest France
## 4229 87 23 California
## 4230 87 30 California
## 4231 88 30 Tuscany
## 4232 88 11 Mendoza Province
## 4233 88 23 New York
## 4234 88 22 Washington
## 4235 88 32 Washington
## 4236 88 35 Hawke's Bay
## 4237 88 34 California
## 4238 88 28 California
## 4239 88 34 California
## 4240 88 36 Burgundy
## 4241 88 100 California
## 4242 88 23 Casablanca Valley
## 4243 88 115 California
## 4244 88 18
## 4245 88 29 Washington
## 4246 88 45 California
## 4247 88 11 California
## 4248 88 16 Leyda Valley
## 4249 88 25 California
## 4250 88 26 California
## 4251 88 36 Washington
## 4252 88 50 Washington
## 4253 88 13 Northern Spain
## 4254 88 23 California
## 4255 88 42 Washington
## 4256 88 26 California
## 4257 88 18 California
## 4258 88 15 Mendoza Province
## 4259 85 19 Piedmont
## 4260 85 17 Casablanca Valley
## 4261 85 13 Washington
## 4262 85 17 Washington
## 4263 85 16 France Other
## 4264 85 50 California
## 4265 85 11 Levante
## 4266 85 15 Bordeaux
## 4267 85 14 Bordeaux
## 4268 85 18 California
## 4269 85 26 Washington
## 4270 85 25 California
## 4271 85 10 California
## 4272 85 15 Rhône Valley
## 4273 85 14 New York
## 4274 85 19 Piedmont
## 4275 85 12 California
## 4276 85 10 Washington
## 4277 85 11 Washington
## 4278 85 NA France Other
## 4279 85 20 France Other
## 4280 85 24 France Other
## 4281 85 49 California
## 4282 85 42 California
## 4283 85 NA Bordeaux
## 4284 85 28 California
## 4285 85 NA Loire Valley
## 4286 85 12 Catalonia
## 4287 85 10 Central Spain
## 4288 85 15 Levante
## 4289 89 31 Champagne
## 4290 89 14 California
## 4291 89 35 California
## 4292 89 24 California
## 4293 89 20 California
## 4294 89 25 Maule Valley
## 4295 89 30 Veneto
## 4296 89 20 Drama
## 4297 89 45 Washington
## 4298 89 28 Sicily & Sardinia
## 4299 89 21 California
## 4300 89 42 Washington
## 4301 89 25 Sicily & Sardinia
## 4302 89 16 Washington
## 4303 89 45 Champagne
## 4304 89 24 Bordeaux
## 4305 89 NA Veneto
## 4306 89 43 Veneto
## 4307 89 15 Marlborough
## 4308 89 50 Veneto
## 4309 89 45 California
## 4310 89 30 California
## 4311 89 90 Veneto
## 4312 89 22 Aconcagua Valley
## 4313 89 13 California
## 4314 89 NA Bordeaux
## 4315 89 25 Northern Spain
## 4316 89 32 Loire Valley
## 4317 89 18 New York
## 4318 89 NA Port
## 4319 89 26 Port
## 4320 89 40 Oregon
## 4321 89 18 Maipo Valley
## 4322 89 17 Andalucia
## 4323 89 35 Central Italy
## 4324 89 48 California
## 4325 89 25 Western Australia
## 4326 88 NA Bordeaux
## 4327 88 19 Oregon
## 4328 88 30 Oregon
## 4329 88 28 Loire Valley
## 4330 88 25 Andalucia
## 4331 88 42 Sicily & Sardinia
## 4332 88 19 Sicily & Sardinia
## 4333 88 24 South Australia
## 4334 88 60 Victoria
## 4335 90 32 Andalucia
## 4336 90 35 California
## 4337 90 44 Northern Spain
## 4338 90 75 California
## 4339 90 50 California
## 4340 90 130 Tuscany
## 4341 90 19 Oregon
## 4342 90 15 America
## 4343 90 48 Oregon
## 4344 90 23 California
## 4345 90 65 California
## 4346 90 32 Oregon
## 4347 90 22 California
## 4348 90 25 California
## 4349 90 35 California
## 4350 90 27 Oregon
## 4351 90 38 California
## 4352 90 48 California
## 4353 90 26 Tuscany
## 4354 90 15 California
## 4355 90 60 Northern Spain
## 4356 90 25 Tuscany
## 4357 90 20 Bordeaux
## 4358 90 25 Bordeaux
## 4359 90 20 Bordeaux
## 4360 90 30 Bordeaux
## 4361 90 NA Bordeaux
## 4362 90 NA Bordeaux
## 4363 90 25 Bordeaux
## 4364 91 52 Douro
## 4365 91 37 Burgundy
## 4366 91 47 Northeastern Italy
## 4367 91 45 California
## 4368 91 120 Other
## 4369 91 50 Burgundy
## 4370 91 16 Mendoza Province
## 4371 91 55 Northeastern Italy
## 4372 91 60 Burgundy
## 4373 91 20 Burgundy
## 4374 91 75 Burgundy
## 4375 91 16 California
## 4376 91 45 Washington
## 4377 91 80 California
## 4378 91 32 Burgundy
## 4379 91 85 Northern Spain
## 4380 91 NA Burgundy
## 4381 91 30 Washington
## 4382 91 45 Washington
## 4383 91 69 Burgundy
## 4384 91 69 Burgundy
## 4385 88 22 Beaujolais
## 4386 88 16 Burgundy
## 4387 88 45 Burgundy
## 4388 88 24 Burgundy
## 4389 88 25 Burgundy
## 4390 88 26 Washington
## 4391 88 19 Washington
## 4392 88 26 Washington
## 4393 88 10 California
## 4394 88 35 Washington
## 4395 88 35 Washington
## 4396 88 35 Washington
## 4397 88 35 California
## 4398 88 42 Burgundy
## 4399 88 42 Burgundy
## 4400 88 22 California
## 4401 88 17 New York
## 4402 88 31 Burgundy
## 4403 88 19 Beaujolais
## 4404 88 NA Piedmont
## 4405 88 28 Burgundy
## 4406 88 22 New York
## 4407 88 17 Catalonia
## 4408 88 20 New York
## 4409 88 32 California
## 4410 88 47 Burgundy
## 4411 88 26 Washington
## 4412 88 35 Washington
## 4413 88 15 Washington
## 4414 88 26 Burgundy
## 4415 89 42 California
## 4416 89 38 Andalucia
## 4417 89 19 Piedmont
## 4418 89 49 Washington
## 4419 89 52 Washington
## 4420 89 40 Washington
## 4421 89 19 Andalucia
## 4422 89 55 California
## 4423 89 28 California
## 4424 89 19 Northern Spain
## 4425 89 38 Washington
## 4426 89 NA Piedmont
## 4427 89 25 California
## 4428 89 49 California
## 4429 89 45 Piedmont
## 4430 89 20 Beaujolais
## 4431 89 27 Provence
## 4432 89 15 California
## 4433 89 46 Piedmont
## 4434 89 161 Burgundy
## 4435 89 45 Burgundy
## 4436 89 50 Burgundy
## 4437 89 30 Burgundy
## 4438 89 21 New York
## 4439 89 26 California
## 4440 89 40 Beaujolais
## 4441 89 20 Loncomilla Valley
## 4442 89 15 Central Italy
## 4443 88 24 Washington
## 4444 88 37 Piedmont
## 4445 85 30 Oregon
## 4446 85 10 Tuscany
## 4447 85 28 Rhône Valley
## 4448 85 10 Northern Spain
## 4449 85 10 Tuscany
## 4450 85 NA Vinho Verde
## 4451 85 22 Oregon
## 4452 85 10 California
## 4453 85 13 Southwest France
## 4454 85 NA Provence
## 4455 85 10 California
## 4456 85 25 California
## 4457 85 25 California
## 4458 85 25 California
## 4459 85 48 California
## 4460 85 45 Catalonia
## 4461 85 8 Spain Other
## 4462 85 25 California
## 4463 85 90 California
## 4464 85 13 Central Italy
## 4465 85 32 California
## 4466 85 65 California
## 4467 85 85 California
## 4468 85 22 California
## 4469 91 40 Washington
## 4470 91 NA Tuscany
## 4471 91 85 Washington
## 4472 91 32 California
## 4473 91 46 Washington
## 4474 91 49 California
## 4475 91 35 Northern Spain
## 4476 91 30 California
## 4477 91 75 Washington
## 4478 91 40 Washington
## 4479 91 48 Washington
## 4480 91 25 Burgundy
## 4481 91 60 Veneto
## 4482 91 24 Loire Valley
## 4483 91 28 Washington
## 4484 91 26 Loire Valley
## 4485 91 64 Burgundy
## 4486 91 42 California
## 4487 91 32 California
## 4488 91 75 California
## 4489 91 NA California
## 4490 91 28 California
## 4491 91 50 Hawke's Bay
## 4492 91 35 Hawke's Bay
## 4493 91 67 California
## 4494 91 42 California
## 4495 91 NA Loire Valley
## 4496 91 48 Washington
## 4497 91 80 California
## 4498 91 48 Burgundy
## 4499 89 NA Coastal Region
## 4500 89 NA Darling
## 4501 89 NA Stellenbosch
## 4502 89 NA Durbanville
## 4503 98 155 California
## 4504 97 60 Sicily & Sardinia
## 4505 97 50 California
## 4506 97 115 California
## 4507 96 70 California
## 4508 96 115 California
## 4509 96 90 California
## 4510 96 115 California
## 4511 96 58 California
## 4512 96 69 California
## 4513 96 88 California
## 4514 96 146 Piedmont
## 4515 95 72 California
## 4516 95 96 Piedmont
## 4517 95 44 California
## 4518 95 45 California
## 4519 95 47 California
## 4520 95 60 Loire Valley
## 4521 95 90 California
## 4522 95 48 California
## 4523 95 225 Piedmont
## 4524 95 30 Sicily & Sardinia
## 4525 95 40 Sicily & Sardinia
## 4526 95 50 California
## 4527 95 40 Loire Valley
## 4528 95 30 Sicily & Sardinia
## 4529 82 9 Central Valley
## 4530 82 32 California
## 4531 82 32 California
## 4532 82 36 California
## 4533 82 11 Northern Spain
## 4534 82 11 California
## 4535 82 20 Northeastern Italy
## 4536 82 20 California
## 4537 82 50 California
## 4538 82 20 California
## 4539 82 12 California
## 4540 82 21 Central Italy
## 4541 82 14 California
## 4542 82 17 California
## 4543 82 NA Bordeaux
## 4544 82 21 Central Italy
## 4545 81 25 California
## 4546 81 14 California
## 4547 81 32 California
## 4548 81 12 Bordeaux
## 4549 81 10 Cachapoal Valley
## 4550 81 11 California
## 4551 81 11 California
## 4552 81 14 California
## 4553 81 7 Central Spain
## 4554 81 14 California
## 4555 81 13 Casablanca Valley
## 4556 81 12 Catalonia
## 4557 80 12 Central Italy
## 4558 80 14 Catalonia
## 4559 85 7 Central Spain
## 4560 85 23 Douro
## 4561 85 17 Oregon
## 4562 85 8 Douro
## 4563 85 21 Douro
## 4564 85 15 Bordeaux
## 4565 85 29 California
## 4566 85 32 Oregon
## 4567 85 25 California
## 4568 85 15 Central Italy
## 4569 85 60 Central Italy
## 4570 85 15 Mendoza Province
## 4571 85 11 Northern Spain
## 4572 85 17 Lisboa
## 4573 85 17 Lisboa
## 4574 85 25 Central Italy
## 4575 85 22 Oregon
## 4576 85 10 Douro
## 4577 85 NA Lisboa
## 4578 85 18 Bordeaux
## 4579 85 11 Catalonia
## 4580 85 10 Lisboa
## 4581 85 17 Douro
## 4582 85 NA Douro
## 4583 85 26 Douro
## 4584 85 NA Lisboa
## 4585 85 32 Oregon
## 4586 85 NA Piedmont
## 4587 85 12 Lisboa
## 4588 85 9 Bairrada
## 4589 87 26 Galicia
## 4590 87 38 California
## 4591 87 18 California
## 4592 87 30 California
## 4593 87 75 California
## 4594 87 26 Veneto
## 4595 87 14 Veneto
## 4596 87 39 California
## 4597 87 22 California
## 4598 87 20 Veneto
## 4599 87 40 California
## 4600 87 30 California
## 4601 87 16 New York
## 4602 87 17 New York
## 4603 87 38 California
## 4604 87 115 California
## 4605 87 8 Levante
## 4606 87 12 Rhône Valley
## 4607 87 13 Casablanca Valley
## 4608 87 25 Veneto
## 4609 87 20 Veneto
## 4610 87 32 California
## 4611 87 16 Rhône Valley
## 4612 87 17 Northern Spain
## 4613 87 35 Northern Spain
## 4614 87 41 Catalonia
## 4615 87 13 New York
## 4616 87 18 New York
## 4617 87 8 Lontué Valley
## 4618 87 35 Veneto
## 4619 94 66 Piedmont
## 4620 94 75 Oregon
## 4621 94 40 California
## 4622 94 62 California
## 4623 94 41 California
## 4624 94 85 Hawke's Bay
## 4625 94 55 Mendoza Province
## 4626 94 50 Piedmont
## 4627 94 50 Piedmont
## 4628 94 65 Piedmont
## 4629 94 65 Oregon
## 4630 94 62 California
## 4631 94 57 Piedmont
## 4632 94 100 Piedmont
## 4633 94 30 Loire Valley
## 4634 94 68 Other
## 4635 94 37 California
## 4636 94 65 Loire Valley
## 4637 94 95 Oregon
## 4638 94 95 Oregon
## 4639 94 125 Mendoza Province
## 4640 94 47 California
## 4641 94 44 California
## 4642 94 37 California
## 4643 94 50 Dão
## 4644 94 70 Bairrada
## 4645 94 39 Loire Valley
## 4646 94 50 Loire Valley
## 4647 94 65 Port
## 4648 89 NA Bordeaux
## 4649 89 NA Bordeaux
## 4650 89 NA Bordeaux
## 4651 89 NA Bordeaux
## 4652 89 NA Bordeaux
## 4653 89 NA Bordeaux
## 4654 89 NA Piedmont
## 4655 89 NA Bordeaux
## 4656 89 NA Bordeaux
## 4657 89 NA Bordeaux
## 4658 89 17 Paarl
## 4659 89 16 Mendoza Province
## 4660 89 27 Stellenbosch
## 4661 89 NA Bordeaux
## 4662 89 NA Bordeaux
## 4663 89 NA Bordeaux
## 4664 89 NA Bordeaux
## 4665 89 NA Bordeaux
## 4666 89 NA Bordeaux
## 4667 89 NA Bordeaux
## 4668 89 18 California
## 4669 89 30 Washington
## 4670 89 20 Tasmania
## 4671 91 75 California
## 4672 91 25 California
## 4673 91 55 Rheingau
## 4674 91 115 California
## 4675 91 26 California
## 4676 91 80 Oregon
## 4677 91 50 California
## 4678 91 70 California
## 4679 91 29 Mosel
## 4680 91 40 Rheingau
## 4681 91 24 Oregon
## 4682 91 18 California
## 4683 91 45 Northern Spain
## 4684 91 48 California
## 4685 91 45 California
## 4686 91 59 California
## 4687 91 20 California
## 4688 91 20 California
## 4689 91 40 California
## 4690 91 24 California
## 4691 91 35 California
## 4692 91 40 California
## 4693 91 30 Cachapoal Valley
## 4694 91 40 California
## 4695 91 19 California
## 4696 91 24 California
## 4697 91 25 Oregon
## 4698 91 35 California
## 4699 91 17 Northern Spain
## 4700 91 20 Northern Spain
## 4701 87 18 Loire Valley
## 4702 87 18 Loire Valley
## 4703 87 14 Bairrada
## 4704 87 22 Oregon
## 4705 87 25 Oregon
## 4706 87 30 Piedmont
## 4707 87 28 Piedmont
## 4708 87 16 Mosel
## 4709 87 22 Mendoza Province
## 4710 87 45 Piedmont
## 4711 87 20 Piedmont
## 4712 87 12 Northern Spain
## 4713 87 90 California
## 4714 87 NA Piedmont
## 4715 87 16 Mosel
## 4716 87 30 Mosel
## 4717 87 28 Piedmont
## 4718 87 15 Douro
## 4719 87 25 California
## 4720 87 20 Oregon
## 4721 87 14 Alentejano
## 4722 87 10 Alentejano
## 4723 87 10 Mosel
## 4724 87 14 Victoria
## 4725 87 15 Galilee
## 4726 87 20 Mendoza Province
## 4727 87 17 Oregon
## 4728 87 30 Oregon
## 4729 87 20 California
## 4730 87 10 Tejo
## 4731 91 32 Washington
## 4732 90 45 Washington
## 4733 90 20 California
## 4734 90 60 California
## 4735 90 23 Washington
## 4736 90 12 Washington
## 4737 90 25 California
## 4738 90 18 Washington
## 4739 90 30 California
## 4740 90 20 California
## 4741 90 23 Washington
## 4742 90 18 California
## 4743 90 25 Washington
## 4744 90 28 Washington
## 4745 90 19 Washington
## 4746 90 25 California
## 4747 90 25 California
## 4748 89 18 California
## 4749 89 55 California
## 4750 89 40 California
## 4751 89 45 California
## 4752 89 50 Washington
## 4753 89 22 California
## 4754 89 25 Washington
## 4755 89 25 Washington
## 4756 89 35 California
## 4757 89 18 California
## 4758 88 16 California
## 4759 88 17 Washington
## 4760 88 15 Washington
## 4761 90 20 Northern Spain
## 4762 90 25 California
## 4763 90 85 Tuscany
## 4764 90 89 Weinland Österreich
## 4765 90 40 California
## 4766 90 21 Niederösterreich
## 4767 90 50 Bordeaux
## 4768 90 NA Bordeaux
## 4769 90 NA Bordeaux
## 4770 90 24 Washington
## 4771 90 NA Tuscany
## 4772 90 26 Tuscany
## 4773 90 23 Washington
## 4774 90 20 Mendoza Province
## 4775 90 25 Northern Spain
## 4776 90 90 Tuscany
## 4777 90 17 Mendoza Province
## 4778 90 NA Wagram-Donauland
## 4779 90 30 California
## 4780 90 NA Südsteiermark
## 4781 90 25 California
## 4782 90 50 Tuscany
## 4783 90 41 Kamptal
## 4784 90 26 Kamptal
## 4785 90 95 Mendoza Province
## 4786 90 90 Tuscany
## 4787 90 38 Tuscany
## 4788 86 18 Northeastern Italy
## 4789 86 14 Mantinia
## 4790 85 9 California
## 4791 85 17 California
## 4792 85 15 Northeastern Italy
## 4793 85 16 Central Italy
## 4794 85 19 Tuscany
## 4795 85 18 Nemea
## 4796 85 18 Central Italy
## 4797 85 13 Mendoza Province
## 4798 85 10 Mantinia
## 4799 85 16 Central Italy
## 4800 85 32 California
## 4801 85 12 Veneto
## 4802 85 10 California
## 4803 85 17 Mantinia
## 4804 85 20 California
## 4805 85 18 Tuscany
## 4806 85 18 California
## 4807 85 20 Mendoza Province
## 4808 85 17 California
## 4809 85 15 Niederösterreich
## 4810 85 18 Oregon
## 4811 85 48 California
## 4812 85 14 Veneto
## 4813 85 20 Swartland
## 4814 85 20 Northeastern Italy
## 4815 85 15 Other
## 4816 85 NA Champagne
## 4817 85 28 California
## 4818 85 25 California
## 4819 85 25 California
## 4820 85 26 California
## 4821 85 15 Washington
## 4822 85 15 Washington
## 4823 85 48 California
## 4824 85 24 California
## 4825 85 35 California
## 4826 85 40 California
## 4827 85 22 California
## 4828 85 NA Champagne
## 4829 85 22 California
## 4830 85 9 Washington
## 4831 85 30 California
## 4832 85 24 California
## 4833 85 22 California
## 4834 85 32 California
## 4835 85 25 California
## 4836 85 20 California
## 4837 87 50 Port
## 4838 87 21 California
## 4839 87 20 Tuscany
## 4840 87 18 Douro
## 4841 87 15 Douro
## 4842 87 10 Casablanca Valley
## 4843 87 15 California
## 4844 87 26 California
## 4845 87 14 Leyda Valley
## 4846 87 22 Oregon
## 4847 87 19 Tuscany
## 4848 87 NA Tuscany
## 4849 87 10 Lisboa
## 4850 87 16 Franken
## 4851 87 19 Tuscany
## 4852 87 26 Tuscany
## 4853 87 NA Beaujolais
## 4854 87 21 Tuscany
## 4855 87 18 Southwest France
## 4856 87 15 Southwest France
## 4857 87 12 Northern Spain
## 4858 87 32 Tuscany
## 4859 87 30 Tuscany
## 4860 87 12 Pfalz
## 4861 87 15 Tuscany
## 4862 87 10 Alentejano
## 4863 87 35 California
## 4864 87 13 Alentejano
## 4865 87 18 Oregon
## 4866 87 50 California
## 4867 87 13 Douro
## 4868 87 50 California
## 4869 87 30 California
## 4870 87 22 Catalonia
## 4871 87 26 Oregon
## 4872 87 30 Italy Other
## 4873 87 10 Oregon
## 4874 87 12 Tuscany
## 4875 87 25 Nemea
## 4876 87 13 Nahe
## 4877 87 28 Tuscany
## 4878 87 38 California
## 4879 87 37 Tuscany
## 4880 87 17 Douro
## 4881 87 40 Lombardy
## 4882 87 15 Maipo Valley
## 4883 87 12 Maule Valley
## 4884 87 20 Mosel
## 4885 87 25 Chalkidiki
## 4886 87 14 Northern Spain
## 4887 87 13 Italy Other
## 4888 87 30 Oregon
## 4889 87 17 California
## 4890 87 22 California
## 4891 87 15 Maule Valley
## 4892 87 14 Maule Valley
## 4893 87 30 Tuscany
## 4894 87 17 California
## 4895 87 35 California
## 4896 87 28 California
## 4897 91 75 Lebanon
## 4898 91 NA Burgundy
## 4899 91 36 California
## 4900 91 20 Virginia
## 4901 91 21 California
## 4902 91 40 California
## 4903 91 20 Dão
## 4904 91 NA Alentejano
## 4905 91 23 Alentejano
## 4906 91 40 Alentejano
## 4907 91 62 Piedmont
## 4908 91 20 Pfalz
## 4909 91 62 Mendoza Province
## 4910 91 NA Vinho Verde
## 4911 91 24 Alentejano
## 4912 91 37 Baden
## 4913 91 100 Other
## 4914 91 19 California
## 4915 91 38 Piedmont
## 4916 91 28 Sicily & Sardinia
## 4917 91 60 Tejo
## 4918 91 NA Vinho Verde
## 4919 91 40 Oregon
## 4920 91 58 Oregon
## 4921 91 48 California
## 4922 91 20 Sicily & Sardinia
## 4923 91 NA Burgundy
## 4924 91 25 Oregon
## 4925 91 30 Sicily & Sardinia
## 4926 91 NA Douro
## 4927 86 13 Mendoza Province
## 4928 86 30 Western Cape
## 4929 86 28 Tasmania
## 4930 86 12 Western Cape
## 4931 86 11 Coastal Region
## 4932 86 49 Northern Spain
## 4933 86 20 Other
## 4934 86 25 Washington
## 4935 86 12 California
## 4936 86 28 California
## 4937 86 20 California
## 4938 86 16 Washington
## 4939 86 9 Dão
## 4940 86 18 Lisboa
## 4941 86 9 California
## 4942 86 30 California
## 4943 86 10 Australia Other
## 4944 86 12 Mendoza Province
## 4945 86 11 California
## 4946 86 28 Washington
## 4947 86 13 Tuscany
## 4948 86 14 Alentejo
## 4949 86 9 Setubal
## 4950 86 11 California
## 4951 86 NA Bordeaux
## 4952 86 69 California
## 4953 86 13 California
## 4954 86 20 California
## 4955 86 7 Central Spain
## 4956 86 15 Northern Spain
## 4957 90 37 Loire Valley
## 4958 90 42 California
## 4959 90 35 Central Spain
## 4960 90 26 California
## 4961 90 23 Northeastern Italy
## 4962 90 22 Northeastern Italy
## 4963 90 25 Loire Valley
## 4964 90 20 Loire Valley
## 4965 90 60 California
## 4966 90 65 California
## 4967 90 35 Catalonia
## 4968 90 40 Mendoza Province
## 4969 90 26 Loire Valley
## 4970 90 NA Southwest France
## 4971 90 29 Loire Valley
## 4972 90 35 Veneto
## 4973 90 19 Leyda Valley
## 4974 90 45 California
## 4975 90 34 California
## 4976 90 28 California
## 4977 89 55 California
## 4978 88 48 Württemberg
## 4979 88 13 Washington
## 4980 88 NA Sicily & Sardinia
## 4981 88 39 Southern Italy
## 4982 88 NA Bordeaux
## 4983 88 NA Bordeaux
## 4984 88 36 Languedoc-Roussillon
## 4985 88 30 Southern Italy
## 4986 88 11 Languedoc-Roussillon
## 4987 88 15 Marlborough
## 4988 88 15 Elqui Valley
## 4989 88 35 California
## 4990 88 19 Robertson
## 4991 88 54 Southern Italy
## 4992 88 30 Veneto
## 4993 88 25 South Australia
## 4994 88 70 California
## 4995 88 23 Veneto
## 4996 88 19 Marlborough
## 4997 88 45 Southern Italy
## 4998 88 12 Sicily & Sardinia
## 4999 88 50 California
## 5000 88 19 Casablanca Valley
## 5001 88 27 Mosel-Saar-Ruwer
## 5002 88 23 Washington
## 5003 88 14 Coastal Region
## 5004 88 33 Washington
## 5005 88 NA Bordeaux
## 5006 88 30 Bordeaux
## 5007 88 22 Washington
## 5008 95 70 Northern Spain
## 5009 95 55 Washington
## 5010 95 50 Washington
## 5011 95 59 California
## 5012 95 20 Washington
## 5013 94 55 Washington
## 5014 94 130 California
## 5015 94 145 California
## 5016 94 210 California
## 5017 94 95 California
## 5018 94 65 Washington
## 5019 94 60 Washington
## 5020 94 100 California
## 5021 94 75 Washington
## 5022 94 75 California
## 5023 94 150 California
## 5024 94 55 Washington
## 5025 94 35 California
## 5026 94 230 California
## 5027 94 45 Washington
## 5028 94 75 California
## 5029 94 130 California
## 5030 94 85 California
## 5031 91 36 Washington
## 5032 91 NA Bordeaux
## 5033 91 24 Bordeaux
## 5034 91 35 Bordeaux
## 5035 91 60 Alentejano
## 5036 91 27 Alsace
## 5037 91 53 Alsace
## 5038 91 38 Alsace
## 5039 91 32 California
## 5040 91 25 California
## 5041 91 40 California
## 5042 91 36 California
## 5043 91 54 California
## 5044 91 22 Rapel Valley
## 5045 91 85 California
## 5046 91 65 Piedmont
## 5047 91 32 California
## 5048 91 25 California
## 5049 91 28 California
## 5050 91 18 California
## 5051 91 NA Alsace
## 5052 91 14 California
## 5053 91 30 Lebanon
## 5054 91 60 California
## 5055 91 12 Douro
## 5056 91 47 Douro
## 5057 91 35 California
## 5058 91 26 Washington
## 5059 91 27 Washington
## 5060 91 20 Washington
## 5061 87 75 California
## 5062 87 21 California
## 5063 87 10 Alentejano
## 5064 87 11 Península de Setúbal
## 5065 87 80 Piedmont
## 5066 87 65 Piedmont
## 5067 87 18 California
## 5068 87 14 Mendoza Province
## 5069 87 8 Douro
## 5070 87 13 California
## 5071 87 NA Piedmont
## 5072 87 50 Colorado
## 5073 87 36 Colorado
## 5074 87 15 Mendoza Province
## 5075 87 35 Virginia
## 5076 87 8 Central Spain
## 5077 87 17 Bordeaux
## 5078 87 16 Loire Valley
## 5079 87 NA Bordeaux
## 5080 87 NA Bordeaux
## 5081 87 20 Oregon
## 5082 87 20 California
## 5083 87 10 Northern Spain
## 5084 87 25 Bordeaux
## 5085 87 45 Virginia
## 5086 87 26 Pocerina
## 5087 87 90 Piedmont
## 5088 86 15 Bordeaux
## 5089 86 13 Western Australia
## 5090 86 24 California
## 5091 86 11 California
## 5092 86 32 Washington
## 5093 86 18 Cachapoal Valley
## 5094 86 32 California
## 5095 86 10 Maipo Valley
## 5096 86 20 Limarí Valley
## 5097 86 15 Washington
## 5098 86 NA Bordeaux
## 5099 86 14 Washington
## 5100 86 24 California
## 5101 86 20 Casablanca Valley
## 5102 86 24 Thermenregion
## 5103 86 20 California
## 5104 86 24 Washington
## 5105 86 41 Casablanca Valley
## 5106 86 22 Washington
## 5107 86 50 California
## 5108 86 11 Central Valley
## 5109 86 55 California
## 5110 86 13 Niederösterreich
## 5111 86 15 Österreichischer Sekt
## 5112 86 12 California
## 5113 86 45 Piedmont
## 5114 86 17 Piedmont
## 5115 86 11 California
## 5116 92 85 California
## 5117 92 40 Thermenregion
## 5118 92 70 California
## 5119 92 54 California
## 5120 92 50 California
## 5121 92 50 California
## 5122 92 25 California
## 5123 92 48 California
## 5124 92 62 Wagram
## 5125 92 25 Beaujolais
## 5126 92 24 California
## 5127 92 47 Burgenland
## 5128 92 34 California
## 5129 92 NA Kamptal
## 5130 92 32 British Columbia
## 5131 92 43 Beaujolais
## 5132 92 120 Puente Alto
## 5133 92 25 Beaujolais
## 5134 92 19 Kremstal
## 5135 92 20 California
## 5136 92 35 Washington
## 5137 92 60 California
## 5138 92 70 Tuscany
## 5139 92 24 New York
## 5140 92 50 California
## 5141 92 26 Colchagua Valley
## 5142 92 39 Wagram
## 5143 92 35 California
## 5144 92 35 California
## 5145 92 60 Niederösterreich
## 5146 90 8 California
## 5147 90 30 Washington
## 5148 90 70 Bordeaux
## 5149 90 51 Bordeaux
## 5150 89 33 South Australia
## 5151 87 32 Oregon
## 5152 87 18 California
## 5153 87 6 Northern Spain
## 5154 87 20 California
## 5155 87 18 California
## 5156 87 20 Tuscany
## 5157 87 45 South Australia
## 5158 87 19 South Australia
## 5159 87 14 Alsace
## 5160 87 17 Oregon
## 5161 87 45 California
## 5162 87 23 Oregon
## 5163 87 18 Catalonia
## 5164 87 28 Oregon
## 5165 87 9 Northern Spain
## 5166 87 28 Tuscany
## 5167 87 20 California
## 5168 87 28 California
## 5169 87 13 New York
## 5170 87 20 Oregon
## 5171 87 22 Northern Spain
## 5172 87 85 California
## 5173 87 NA Tuscany
## 5174 87 24 Oregon
## 5175 87 13 Provence
## 5176 87 16 Wachau
## 5177 90 35 Kumeu
## 5178 90 40 California
## 5179 90 40 California
## 5180 90 65 Oregon
## 5181 90 25 Tuscany
## 5182 90 51 California
## 5183 90 40 California
## 5184 90 25 Tuscany
## 5185 90 19 Tuscany
## 5186 90 16 Mendoza Province
## 5187 90 17 Loire Valley
## 5188 90 NA France Other
## 5189 90 33 France Other
## 5190 90 54 California
## 5191 90 25 Tuscany
## 5192 90 35 Mendoza Province
## 5193 90 25 Loire Valley
## 5194 90 48 Mosel
## 5195 90 25 California
## 5196 90 27 California
## 5197 90 32 Tuscany
## 5198 90 25 Tuscany
## 5199 90 33 Tuscany
## 5200 90 33 Trás-os-Montes
## 5201 90 28 Oregon
## 5202 90 45 California
## 5203 90 27 Galilee
## 5204 90 NA France Other
## 5205 90 65 California
## 5206 90 28 Rheinhessen
## 5207 92 40 Alsace
## 5208 92 45 California
## 5209 92 28 Sicily & Sardinia
## 5210 92 39 California
## 5211 92 60 California
## 5212 92 26 Pfalz
## 5213 92 25 Northern Spain
## 5214 92 45 Oregon
## 5215 92 25 Mosel
## 5216 92 135 California
## 5217 92 125 California
## 5218 92 60 Oregon
## 5219 92 150 Oregon
## 5220 92 30 California
## 5221 92 18 Sicily & Sardinia
## 5222 92 48 Oregon
## 5223 92 55 Oregon
## 5224 92 33 Oregon
## 5225 92 45 Oregon
## 5226 92 61 Hawke's Bay
## 5227 92 30 Shomron
## 5228 92 65 California
## 5229 92 42 California
## 5230 92 60 Douro
## 5231 91 104 Burgundy
## 5232 91 42 California
## 5233 91 50 California
## 5234 91 16 California
## 5235 91 65 Burgundy
## 5236 91 44 California
## 5237 91 NA Tuscany
## 5238 91 50 Tuscany
## 5239 91 70 California
## 5240 91 26 Andalucia
## 5241 91 57 Rhône Valley
## 5242 91 23 Loire Valley
## 5243 91 NA Tuscany
## 5244 91 45 California
## 5245 91 45 Washington
## 5246 91 30 Loire Valley
## 5247 91 34 Loire Valley
## 5248 91 50 Burgundy
## 5249 91 31 Tuscany
## 5250 91 30 Tuscany
## 5251 91 24 Catalonia
## 5252 91 65 Tuscany
## 5253 91 44 California
## 5254 91 38 British Columbia
## 5255 91 40 California
## 5256 91 55 Burgundy
## 5257 91 90 California
## 5258 91 26 Loire Valley
## 5259 91 35 Washington
## 5260 91 72 California
## 5261 88 45 Washington
## 5262 88 25 Alsace
## 5263 88 35 California
## 5264 88 30 Rapsani
## 5265 88 17 Central Italy
## 5266 88 15 Central Italy
## 5267 88 20 California
## 5268 88 35 Central Italy
## 5269 88 28 California
## 5270 88 25 Alsace
## 5271 88 29 Alsace
## 5272 88 NA Provence
## 5273 88 30 Washington
## 5274 88 15 California
## 5275 88 35 Central Italy
## 5276 88 30 New York
## 5277 88 20 Alsace
## 5278 88 18 Leyda Valley
## 5279 88 20 Burgenland
## 5280 88 27 New York
## 5281 88 23 New York
## 5282 88 29 Paarl
## 5283 87 19 New York
## 5284 87 13 New York
## 5285 87 19 Stellenbosch
## 5286 87 18 Central Italy
## 5287 87 45 California
## 5288 87 25 Washington
## 5289 87 24 Washington
## 5290 87 NA Vienna
## 5291 88 13 New South Wales
## 5292 88 14 Victoria
## 5293 88 42 California
## 5294 88 43 South Australia
## 5295 88 22 South Australia
## 5296 88 24 California
## 5297 88 30 Mendoza Province
## 5298 88 36 California
## 5299 88 17 Tuscany
## 5300 88 15 Tuscany
## 5301 88 15 Other
## 5302 88 10 Australia Other
## 5303 88 19 Walker Bay
## 5304 88 28 Washington
## 5305 88 12 Mendoza Province
## 5306 88 20 Australia Other
## 5307 88 36 Tuscany
## 5308 88 13 Paarl
## 5309 88 29 Mendoza Province
## 5310 88 25 Tuscany
## 5311 88 14 Piedmont
## 5312 88 10 Northern Spain
## 5313 88 25 Tuscany
## 5314 88 40 Washington
## 5315 88 50 Mendoza Province
## 5316 88 17 Mendoza Province
## 5317 87 12 Northern Spain
## 5318 87 15 Rhône Valley
## 5319 87 18 California
## 5320 87 16 Niederösterreich
## 5321 87 38 California
## 5322 87 40 California
## 5323 87 9 Northern Spain
## 5324 87 15 California
## 5325 87 20 Northern Spain
## 5326 87 14 Provence
## 5327 87 25 Niederösterreich
## 5328 87 30 Washington
## 5329 87 30 California
## 5330 87 32 California
## 5331 87 12 Provence
## 5332 87 NA Provence
## 5333 87 20 Washington
## 5334 87 21 Northeastern Italy
## 5335 87 13 California
## 5336 87 11 Northern Spain
## 5337 87 40 Sicily & Sardinia
## 5338 87 40 California
## 5339 87 NA Sicily & Sardinia
## 5340 87 40 California
## 5341 87 14 Provence
## 5342 87 NA Provence
## 5343 87 20 Provence
## 5344 87 15 California
## 5345 87 24 Northeastern Italy
## 5346 87 24 Northeastern Italy
## 5347 89 38 California
## 5348 89 15 Niederösterreich
## 5349 89 19 Kremstal
## 5350 89 50 Tuscany
## 5351 89 30 California
## 5352 89 30 California
## 5353 89 34 California
## 5354 89 21 Kremstal
## 5355 89 25 Nelson
## 5356 89 20 Waipara Valley
## 5357 89 30 California
## 5358 89 24 Burgenland
## 5359 89 18 California
## 5360 89 15 Kamptal
## 5361 89 45 Washington
## 5362 89 25 Central Italy
## 5363 89 45 Washington
## 5364 89 NA Nelson
## 5365 89 16 New York
## 5366 89 15 Mendoza Province
## 5367 89 90 Marlborough
## 5368 89 20 Constantia
## 5369 89 55 Tuscany
## 5370 89 NA Martinborough
## 5371 89 17 Tuscany
## 5372 89 25 Central Italy
## 5373 89 38 Tuscany
## 5374 89 30 Washington
## 5375 89 25 Tuscany
## 5376 89 20 Provence
## 5377 85 16 California
## 5378 85 23 California
## 5379 85 13 Loire Valley
## 5380 85 48 California
## 5381 85 NA Douro
## 5382 85 27 Rheinhessen
## 5383 85 28 California
## 5384 85 45 California
## 5385 85 20 California
## 5386 85 13 Mendoza Province
## 5387 85 45 California
## 5388 85 24 California
## 5389 85 20 Loire Valley
## 5390 85 28 Arizona
## 5391 85 13 California
## 5392 85 29 California
## 5393 85 23 Virginia
## 5394 85 13 Catalonia
## 5395 85 18 Port
## 5396 85 NA Lisboa
## 5397 85 20 Alentejano
## 5398 85 22 California
## 5399 85 20 Virginia
## 5400 85 37 California
## 5401 85 29 Tuscany
## 5402 85 NA Andalucia
## 5403 85 17 Península de Setúbal
## 5404 85 125 California
## 5405 85 28 California
## 5406 85 25 Northern Spain
## 5407 88 NA Vinho Verde
## 5408 88 19 Tokaj
## 5409 88 29 Oregon
## 5410 88 30 Other
## 5411 88 28 Burgundy
## 5412 88 13 Vinho Verde
## 5413 88 17 Other
## 5414 88 17 Douro
## 5415 88 90 Piedmont
## 5416 88 21 France Other
## 5417 88 20 Kakheti
## 5418 88 32 Piedmont
## 5419 88 23 Burgundy
## 5420 88 NA Burgundy
## 5421 88 NA Australia Other
## 5422 88 28 California
## 5423 88 43 Oregon
## 5424 88 39 California
## 5425 88 44 Piedmont
## 5426 88 30 Mendoza Province
## 5427 88 12 California
## 5428 88 19 Burgundy
## 5429 88 20 Oregon
## 5430 88 64 Mendoza Province
## 5431 88 26 Oregon
## 5432 88 12 Bairrada
## 5433 88 20 California
## 5434 88 25 California
## 5435 88 30 Mendoza Province
## 5436 88 50 California
## 5437 88 10 Mendoza Province
## 5438 88 20 Maipo Valley
## 5439 88 52 California
## 5440 88 26 Other
## 5441 88 42 Burgundy
## 5442 88 NA Veneto
## 5443 88 35 New York
## 5444 88 16 California
## 5445 88 16 California
## 5446 88 22 Provence
## 5447 88 40 Lombardy
## 5448 88 20 California
## 5449 88 60 Veneto
## 5450 88 50 Northeastern Italy
## 5451 88 NA Port
## 5452 88 45 California
## 5453 88 24 California
## 5454 88 NA Port
## 5455 88 58 Port
## 5456 88 26 Veneto
## 5457 88 29 Lombardy
## 5458 88 65 Lombardy
## 5459 88 30 Lombardy
## 5460 88 29 Virginia
## 5461 88 65 Champagne
## 5462 86 10 Central Italy
## 5463 86 26 California
## 5464 86 NA Provence
## 5465 86 50 California
## 5466 86 28 California
## 5467 86 24 Northern Spain
## 5468 86 20 Casablanca Valley
## 5469 86 40 California
## 5470 86 22 Washington
## 5471 86 45 California
## 5472 86 22 California
## 5473 86 15 Casablanca Valley
## 5474 86 24 California
## 5475 86 NA Central Italy
## 5476 86 NA Central Italy
## 5477 86 18 California
## 5478 86 14 Central Italy
## 5479 86 12 Central Valley
## 5480 86 22 Oregon
## 5481 86 39 Oregon
## 5482 86 18 Oregon
## 5483 86 12 Washington
## 5484 86 30 California
## 5485 86 16 Leyda Valley
## 5486 86 48 California
## 5487 86 27 Provence
## 5488 86 18 Provence
## 5489 86 18 Provence
## 5490 86 12 Northeastern Italy
## 5491 86 NA Bordeaux
## 5492 93 148 Tuscany
## 5493 93 NA Kremstal
## 5494 93 32 Südoststeiermark
## 5495 93 60 Washington
## 5496 93 62 California
## 5497 93 55 California
## 5498 93 NA Burgenland
## 5499 93 90 Northern Spain
## 5500 93 22 Bordeaux
## 5501 93 125 California
## 5502 93 35 California
## 5503 93 90 Tuscany
## 5504 93 28 Kamptal
## 5505 93 NA Kamptal
## 5506 93 NA Bordeaux
## 5507 93 80 California
## 5508 93 30 Kamptal
## 5509 93 55 Washington
## 5510 93 17 Weinviertel
## 5511 93 32 Niederösterreich
## 5512 93 209 Tuscany
## 5513 93 60 Mendoza Province
## 5514 93 35 Thermenregion
## 5515 93 47 Niederösterreich
## 5516 83 20 Casablanca Valley
## 5517 83 10 California
## 5518 83 10 Tejo
## 5519 83 12 Maipo Valley
## 5520 83 12 Colchagua Valley
## 5521 83 14 Tejo
## 5522 83 12 Maipo Valley
## 5523 83 8 Maule Valley
## 5524 83 17 Northern Spain
## 5525 83 11 Tuscany
## 5526 83 10 Northern Spain
## 5527 82 20 Catalonia
## 5528 82 22 California
## 5529 82 7 California
## 5530 82 16 Northern Spain
## 5531 82 17 Casablanca Valley
## 5532 82 18 Northern Spain
## 5533 82 9 Central Valley
## 5534 82 13 Colchagua Valley
## 5535 82 17 Catalonia
## 5536 82 16 Colchagua Valley
## 5537 82 25 Oregon
## 5538 82 11 California
## 5539 82 15 Maule Valley
## 5540 82 13 California
## 5541 82 12 Northern Spain
## 5542 82 9 Northern Spain
## 5543 82 10 Cachapoal Valley
## 5544 82 10 Central Spain
## 5545 82 14 Northern Spain
## 5546 90 12 Mosel
## 5547 90 24 California
## 5548 90 19 California
## 5549 90 24 California
## 5550 90 20 Swartland
## 5551 90 30 Northeastern Italy
## 5552 90 NA Southwest France
## 5553 90 18 Southwest France
## 5554 90 23 Southwest France
## 5555 90 33 Southern Italy
## 5556 90 21 Mendoza Province
## 5557 90 60 Provence
## 5558 90 32 Oregon
## 5559 90 40 Stellenbosch
## 5560 90 NA Southwest France
## 5561 90 30 Kamptal
## 5562 90 37 Northeastern Italy
## 5563 90 32 Central Italy
## 5564 90 29 Mendoza Province
## 5565 90 28 California
## 5566 90 20 Northeastern Italy
## 5567 90 27 California
## 5568 90 16 Mosel
## 5569 90 90 Tuscany
## 5570 90 28 Mendoza Province
## 5571 90 20 Northeastern Italy
## 5572 90 35 California
## 5573 90 NA Southwest France
## 5574 90 24 Simonsberg-Stellenbosch
## 5575 90 20 Northeastern Italy
## 5576 87 19 Marlborough
## 5577 87 13 Other
## 5578 87 20 Central Italy
## 5579 87 60 California
## 5580 87 16 Veneto
## 5581 87 24 Ontario
## 5582 87 25 California
## 5583 87 22 New York
## 5584 87 35 Mendoza Province
## 5585 87 NA Veneto
## 5586 87 19 California
## 5587 86 14 Mendoza Province
## 5588 86 22 Washington
## 5589 86 50 California
## 5590 86 12 Veneto
## 5591 86 25 Washington
## 5592 86 18 Northeastern Italy
## 5593 86 14 Northeastern Italy
## 5594 88 15 Rheingau
## 5595 88 29 California
## 5596 88 20 San Antonio
## 5597 88 25 Veneto
## 5598 88 20 Lontué Valley
## 5599 88 70 New York
## 5600 88 67 Nahe
## 5601 88 52 Oregon
## 5602 88 16 New York
## 5603 88 12 Casablanca Valley
## 5604 88 9 California
## 5605 88 25 Veneto
## 5606 88 25 New York
## 5607 88 42 New York
## 5608 88 32 California
## 5609 88 61 Veneto
## 5610 88 43 Veneto
## 5611 88 17 California
## 5612 88 27 New York
## 5613 88 17 New York
## 5614 88 30 California
## 5615 88 13 Casablanca Valley
## 5616 88 58 Rheinhessen
## 5617 88 47 Veneto
## 5618 88 26 Veneto
## 5619 90 18 South Australia
## 5620 90 58 Burgundy
## 5621 90 13 Andalucia
## 5622 90 20 California
## 5623 90 25 Niederösterreich
## 5624 90 27 South Australia
## 5625 90 NA Burgundy
## 5626 90 NA Southern Italy
## 5627 90 52 Kamptal
## 5628 90 24 Andalucia
## 5629 90 30 Southern Italy
## 5630 90 55 California
## 5631 90 27 California
## 5632 90 25 California
## 5633 90 NA Southern Italy
## 5634 90 29 California
## 5635 90 35 Southern Italy
## 5636 90 45 California
## 5637 90 NA Burgundy
## 5638 90 45 Oregon
## 5639 90 18 California
## 5640 90 14 California
## 5641 90 145 Northern Spain
## 5642 90 33 Southern Italy
## 5643 90 28 California
## 5644 90 NA Southern Italy
## 5645 90 NA Burgenland
## 5646 90 21 Catalonia
## 5647 90 65 Oregon
## 5648 90 NA Burgundy
## 5649 90 35 Kamptal
## 5650 90 300 Tuscany
## 5651 90 28 Tuscany
## 5652 90 21 Kremstal
## 5653 90 NA Kremstal
## 5654 90 32 California
## 5655 90 30 Washington
## 5656 90 75 California
## 5657 90 24 California
## 5658 90 23 British Columbia
## 5659 90 42 California
## 5660 90 24 Beaujolais
## 5661 90 28 California
## 5662 90 58 Tuscany
## 5663 90 42 Washington
## 5664 90 55 California
## 5665 90 30 California
## 5666 90 24 Beaujolais
## 5667 90 30 Leithaberg
## 5668 90 18 Rhône Valley
## 5669 90 14 California
## 5670 90 37 California
## 5671 90 50 Tuscany
## 5672 90 40 Kremstal
## 5673 90 55 California
## 5674 90 43 California
## 5675 90 25 Thermenregion
## 5676 90 35 Idaho
## 5677 90 22 California
## 5678 90 20 California
## 5679 88 25 Washington
## 5680 88 23 Washington
## 5681 88 13 Washington
## 5682 88 23 Südoststeiermark
## 5683 88 18 Niederösterreich
## 5684 88 75 California
## 5685 88 NA Piedmont
## 5686 88 19 Piedmont
## 5687 88 55 California
## 5688 88 15 California
## 5689 88 NA Champagne
## 5690 88 57 Champagne
## 5691 88 NA Piedmont
## 5692 88 29 Piedmont
## 5693 88 32 California
## 5694 91 29 Bordeaux
## 5695 91 25 Bordeaux
## 5696 91 65 Tuscany
## 5697 91 28 Washington
## 5698 91 21 Washington
## 5699 91 27 Washington
## 5700 91 29 Washington
## 5701 91 NA Tuscany
## 5702 91 30 California
## 5703 91 40 California
## 5704 91 40 Thermenregion
## 5705 91 50 Piedmont
## 5706 91 39 Washington
## 5707 91 44 Washington
## 5708 91 25 Washington
## 5709 91 30 Wachau
## 5710 91 95 Mendoza Province
## 5711 91 27 Wachau
## 5712 91 40 Washington
## 5713 91 20 California
## 5714 91 78 Tuscany
## 5715 91 160 Tuscany
## 5716 91 20 Bordeaux
## 5717 91 NA Bordeaux
## 5718 91 NA Bordeaux
## 5719 91 NA Bordeaux
## 5720 91 40 Bordeaux
## 5721 91 NA Bordeaux
## 5722 90 19 Northeastern Italy
## 5723 90 65 California
## 5724 90 20 California
## 5725 90 24 California
## 5726 90 25 Niederösterreich
## 5727 90 200 Piedmont
## 5728 90 30 California
## 5729 90 42 California
## 5730 90 85 California
## 5731 90 100 Washington
## 5732 90 19 Provence
## 5733 90 40 California
## 5734 90 65 California
## 5735 90 30 Provence
## 5736 90 15 Provence
## 5737 90 52 Provence
## 5738 90 28 Piedmont
## 5739 90 33 California
## 5740 90 48 California
## 5741 90 35 California
## 5742 90 45 Northeastern Italy
## 5743 90 22 Northeastern Italy
## 5744 90 19 California
## 5745 90 45 California
## 5746 90 13 Niederösterreich
## 5747 90 14 Provence
## 5748 90 12 California
## 5749 90 32 Washington
## 5750 90 NA Central Otago
## 5751 90 24 Washington
## 5752 92 35 California
## 5753 92 30 California
## 5754 92 160 Burgundy
## 5755 92 46 California
## 5756 92 50 Washington
## 5757 92 20 California
## 5758 92 40 California
## 5759 92 42 California
## 5760 92 55 California
## 5761 92 28 California
## 5762 92 28 Recas
## 5763 92 55 California
## 5764 92 55 California
## 5765 92 35 Alsace
## 5766 92 55 Alsace
## 5767 92 30 Alsace
## 5768 92 49 Provence
## 5769 92 20 Aconcagua Valley
## 5770 92 34 California
## 5771 92 35 California
## 5772 92 34 California
## 5773 92 41 California
## 5774 92 50 California
## 5775 92 99 Veneto
## 5776 92 65 Veneto
## 5777 92 79 Veneto
## 5778 92 20 California
## 5779 92 64 Veneto
## 5780 92 35 California
## 5781 92 85 California
## 5782 83 10 France Other
## 5783 83 12 France Other
## 5784 83 9 France Other
## 5785 83 16 Provence
## 5786 83 10 France Other
## 5787 83 13 Mendoza Province
## 5788 83 20 Mendoza Province
## 5789 83 10 France Other
## 5790 83 5 France Other
## 5791 83 24 California
## 5792 83 13 Northern Spain
## 5793 83 14 California
## 5794 83 9 France Other
## 5795 83 6 France Other
## 5796 83 10 France Other
## 5797 83 26 California
## 5798 83 10 France Other
## 5799 83 19 Northern Spain
## 5800 83 10 Northern Spain
## 5801 83 8 Mendoza Province
## 5802 83 5 France Other
## 5803 83 18 Provence
## 5804 83 50 California
## 5805 83 12 France Other
## 5806 83 22 California
## 5807 83 9 France Other
## 5808 83 9 France Other
## 5809 83 26 California
## 5810 84 11 Península de Setúbal
## 5811 84 13 Douro
## 5812 84 NA Burgundy
## 5813 84 12 Douro
## 5814 84 10 Spain Other
## 5815 84 36 Port
## 5816 84 22 Burgundy
## 5817 84 7 Central Spain
## 5818 84 20 Mendoza Province
## 5819 84 19 Douro
## 5820 84 12 Central Spain
## 5821 84 9 Mendoza Province
## 5822 84 13 Mendoza Province
## 5823 84 11 Vinho Espumante
## 5824 84 23 Northern Spain
## 5825 84 12 Mendoza Province
## 5826 84 24 Burgundy
## 5827 84 8 Alentejano
## 5828 84 20 Alsace
## 5829 84 10 Tejo
## 5830 84 13 Mendoza Province
## 5831 84 8 Levante
## 5832 88 16 South Australia
## 5833 88 18 Douro
## 5834 88 12 Douro
## 5835 88 12 Douro
## 5836 88 28 California
## 5837 88 70 Piedmont
## 5838 88 26 California
## 5839 88 28 California
## 5840 88 32 California
## 5841 88 20 California
## 5842 88 30 California
## 5843 88 30 Veneto
## 5844 88 17 California
## 5845 88 28 Washington
## 5846 88 40 Washington
## 5847 88 45 Washington
## 5848 88 10 California
## 5849 88 12 California
## 5850 88 19 Dão
## 5851 88 12 Dão
## 5852 88 15 Lisboa
## 5853 88 36 Pinto Bandeira
## 5854 88 9 Bordeaux
## 5855 88 25 Bordeaux
## 5856 88 19 Bordeaux
## 5857 88 30 Bordeaux
## 5858 88 33 France Other
## 5859 88 19 Bordeaux
## 5860 88 28 Bordeaux
## 5861 88 18 Bordeaux
## 5862 88 15 Southern Italy
## 5863 88 13 Tuscany
## 5864 88 60 California
## 5865 88 27 California
## 5866 88 NA France Other
## 5867 88 28 Burgundy
## 5868 88 17 South Australia
## 5869 88 49 Oregon
## 5870 88 19 California
## 5871 88 45 California
## 5872 88 35 California
## 5873 88 19 California
## 5874 88 13 California
## 5875 88 40 Burgundy
## 5876 88 20 Colchagua Valley
## 5877 88 47 California
## 5878 88 24 California
## 5879 88 50 California
## 5880 88 10 Mosel
## 5881 88 48 California
## 5882 88 38 Washington
## 5883 88 95 California
## 5884 88 24 Burgundy
## 5885 88 20 California
## 5886 88 35 California
## 5887 88 23 Galicia
## 5888 88 20 California
## 5889 88 37 California
## 5890 88 65 California
## 5891 87 12 Rheinhessen
## 5892 82 15 Mendoza Province
## 5893 82 11 Mendoza Province
## 5894 82 40 Oregon
## 5895 82 28 California
## 5896 82 10 Mendoza Province
## 5897 82 6 Mendoza Province
## 5898 82 26 California
## 5899 82 12 California
## 5900 82 14 Oregon
## 5901 81 12 Other
## 5902 81 15 Mendoza Province
## 5903 81 8 Mendoza Province
## 5904 81 13 Mendoza Province
## 5905 81 16 Alentejano
## 5906 80 17 Mendoza Province
## 5907 80 20 Mendoza Province
## 5908 80 15 Mendoza Province
## 5909 80 12 Mendoza Province
## 5910 80 12 Mendoza Province
## 5911 97 430 Burgundy
## 5912 97 550 Burgundy
## 5913 95 50 California
## 5914 95 50 California
## 5915 88 13 Marlborough
## 5916 88 16 Washington
## 5917 88 32 California
## 5918 88 18 Sicily & Sardinia
## 5919 88 20 New York
## 5920 88 15 California
## 5921 88 80 California
## 5922 88 25 Washington
## 5923 88 19 Washington
## 5924 88 35 Southern Italy
## 5925 88 75 California
## 5926 88 15 Washington
## 5927 88 45 Washington
## 5928 88 11 Washington
## 5929 88 30 California
## 5930 88 25 Washington
## 5931 88 45 Bordeaux
## 5932 88 NA Bordeaux
## 5933 88 40 Bordeaux
## 5934 88 NA Bordeaux
## 5935 88 35 New York
## 5936 88 25 New York
## 5937 88 40 Bordeaux
## 5938 88 28 Bordeaux
## 5939 88 25 Bordeaux
## 5940 88 20 Bordeaux
## 5941 88 35 Bordeaux
## 5942 88 15 Bordeaux
## 5943 88 33 Bordeaux
## 5944 88 33 Bordeaux
## 5945 84 40 California
## 5946 84 22 Oregon
## 5947 84 10 Bordeaux
## 5948 84 17 California
## 5949 84 NA Southwest France
## 5950 84 13 Maule Valley
## 5951 84 7 Colchagua Valley
## 5952 84 17 Limarí Valley
## 5953 84 13 Southern Italy
## 5954 84 24 California
## 5955 84 19 California
## 5956 84 10 Burgundy
## 5957 84 25 Bordeaux
## 5958 84 NA Bordeaux
## 5959 84 16 Bordeaux
## 5960 84 13 Peloponnese
## 5961 84 7 California
## 5962 83 NA Southern Italy
## 5963 83 22 California
## 5964 83 24 California
## 5965 83 24 California
## 5966 83 NA Southern Italy
## 5967 83 11 Central Italy
## 5968 87 20 Alsace
## 5969 87 27 Burgundy
## 5970 87 NA Sicily & Sardinia
## 5971 87 18 Sicily & Sardinia
## 5972 87 NA Sicily & Sardinia
## 5973 87 NA Sicily & Sardinia
## 5974 87 13 California
## 5975 87 29 Sicily & Sardinia
## 5976 87 10 California
## 5977 87 32 California
## 5978 87 12 Alsace
## 5979 87 12 Australia Other
## 5980 87 17 Casablanca Valley
## 5981 87 49 California
## 5982 87 20 Sicily & Sardinia
## 5983 87 15 Maipo Valley
## 5984 87 19 Alsace
## 5985 87 10 California
## 5986 87 NA Sicily & Sardinia
## 5987 87 20 Sicily & Sardinia
## 5988 87 16 California
## 5989 87 19 Southern Italy
## 5990 87 37 California
## 5991 87 7 Primorska
## 5992 87 NA Sicily & Sardinia
## 5993 87 25 Sicily & Sardinia
## 5994 87 18 Catalonia
## 5995 87 32 Burgundy
## 5996 87 18 Burgundy
## 5997 87 11 Moldova
## 5998 90 44 California
## 5999 90 30 California
## 6000 90 17 Veneto
## 6001 90 20 California
## 6002 90 14 California
## 6003 90 23 Veneto
## 6004 90 20 California
## 6005 90 33 California
## 6006 90 35 Uruguay
## 6007 90 190 California
## 6008 90 26 Port
## 6009 90 18 Zenata
## 6010 90 NA Tuscany
## 6011 90 40 California
## 6012 90 24 California
## 6013 90 34 California
## 6014 90 30 Port
## 6015 90 15 America
## 6016 90 17 Veneto
## 6017 90 38 California
## 6018 90 30 California
## 6019 90 75 California
## 6020 90 60 California
## 6021 90 22 Central Italy
## 6022 90 40 Maipo Valley
## 6023 90 30 California
## 6024 90 35 California
## 6025 90 10 Vinho Verde
## 6026 90 50 California
## 6027 90 33 Idaho
## 6028 89 45 Champagne
## 6029 89 38 Oregon
## 6030 89 120 Champagne
## 6031 89 24 Oregon
## 6032 89 24 Oregon
## 6033 89 48 Champagne
## 6034 89 26 California
## 6035 89 30 Oregon
## 6036 89 16 South Australia
## 6037 88 20 California
## 6038 88 30 California
## 6039 88 20 California
## 6040 88 30 Champagne
## 6041 88 30 Oregon
## 6042 88 25 Oregon
## 6043 88 50 Oregon
## 6044 88 25 California
## 6045 88 10 Bordeaux
## 6046 88 24 Oregon
## 6047 88 39 Oregon
## 6048 88 35 Oregon
## 6049 88 25 California
## 6050 88 10 South Australia
## 6051 88 22 California
## 6052 88 25 Oregon
## 6053 88 14 California
## 6054 88 28 Oregon
## 6055 88 40 Oregon
## 6056 88 44 Champagne
## 6057 88 15 California
## 6058 89 25 Tuscany
## 6059 89 13 Bordeaux
## 6060 89 25 New York
## 6061 89 15 Galilee
## 6062 89 55 Washington
## 6063 89 18 Washington
## 6064 89 40 New York
## 6065 89 60 Tuscany
## 6066 89 22 Northern Spain
## 6067 89 20 Tuscany
## 6068 89 22 Tuscany
## 6069 89 NA Tuscany
## 6070 89 20 Tuscany
## 6071 89 35 California
## 6072 89 45 Champagne
## 6073 89 23 California
## 6074 89 55 California
## 6075 89 40 Washington
## 6076 89 20 Tuscany
## 6077 89 20 Galicia
## 6078 89 11 Tuscany
## 6079 89 14 California
## 6080 89 12 Wagram
## 6081 89 24 Northern Spain
## 6082 89 18 Tuscany
## 6083 89 15 Tuscany
## 6084 89 30 Washington
## 6085 89 30 Washington
## 6086 89 15 Galilee
## 6087 89 20 Galilee
## 6088 87 26 California
## 6089 87 60 Mendoza Province
## 6090 87 20 California
## 6091 87 48 California
## 6092 87 10 Mendoza Province
## 6093 87 10 Other
## 6094 87 36 Oregon
## 6095 87 39 California
## 6096 87 NA Piedmont
## 6097 87 18 Mendoza Province
## 6098 87 17 Mendoza Province
## 6099 87 35 Piedmont
## 6100 87 13 Minho
## 6101 87 32 Burgundy
## 6102 87 27 Sicily & Sardinia
## 6103 87 13 Douro
## 6104 87 13 Douro
## 6105 87 NA Douro
## 6106 87 32 Burgundy
## 6107 87 NA Península de Setúbal
## 6108 87 NA Burgundy
## 6109 87 23 Burgundy
## 6110 87 20 Tejo
## 6111 87 12 Tejo
## 6112 87 37 California
## 6113 87 39 Sicily & Sardinia
## 6114 87 80 California
## 6115 87 15 Moravia
## 6116 87 17 Burgundy
## 6117 87 60 California
## 6118 92 75 California
## 6119 92 60 Oregon
## 6120 92 35 Northern Spain
## 6121 92 41 Northern Spain
## 6122 92 110 Piedmont
## 6123 92 30 Judean Hills
## 6124 92 75 Oregon
## 6125 92 48 Oregon
## 6126 92 85 Oregon
## 6127 92 85 Oregon
## 6128 92 64 California
## 6129 92 56 California
## 6130 92 70 Champagne
## 6131 92 100 Champagne
## 6132 92 60 Oregon
## 6133 92 45 California
## 6134 92 28 Alentejo
## 6135 92 60 Piedmont
## 6136 92 45 California
## 6137 92 35 Burgundy
## 6138 92 80 Loire Valley
## 6139 92 NA Piedmont
## 6140 92 60 California
## 6141 92 53 Piedmont
## 6142 92 27 California
## 6143 92 58 California
## 6144 92 45 Oregon
## 6145 92 80 Piedmont
## 6146 92 46 California
## 6147 92 85 California
## 6148 89 36 California
## 6149 89 25 Provence
## 6150 89 70 Bordeaux
## 6151 89 13 Marlborough
## 6152 89 45 Oregon
## 6153 89 NA Champagne
## 6154 89 23 Marlborough
## 6155 89 32 Victoria
## 6156 89 30 Maipo Valley
## 6157 89 13 Rhône Valley
## 6158 89 35 California
## 6159 89 25 California
## 6160 89 31 Veneto
## 6161 89 22 California
## 6162 89 25 Bordeaux
## 6163 89 13 Bordeaux
## 6164 89 29 California
## 6165 89 18 Oregon
## 6166 89 21 Bordeaux
## 6167 89 21 Oregon
## 6168 89 15 Provence
## 6169 89 63 Champagne
## 6170 89 NA Champagne
## 6171 87 50 California
## 6172 87 17 Washington
## 6173 87 35 New York
## 6174 87 14 Northern Spain
## 6175 87 19 Central Italy
## 6176 87 NA Central Italy
## 6177 87 NA Northern Spain
## 6178 87 19 New York
## 6179 87 8 California
## 6180 87 22 Beaujolais
## 6181 87 12 Languedoc-Roussillon
## 6182 87 12 Languedoc-Roussillon
## 6183 87 45 California
## 6184 87 22 Galicia
## 6185 87 13 Northern Spain
## 6186 87 25 California
## 6187 87 17 Northern Spain
## 6188 87 14 Central Italy
## 6189 87 29 California
## 6190 87 25 New York
## 6191 87 13 California
## 6192 87 50 Piedmont
## 6193 87 30 Washington
## 6194 87 NA Burgundy
## 6195 87 NA Burgundy
## 6196 87 16 Piedmont
## 6197 87 24 Burgundy
## 6198 87 30 Washington
## 6199 87 16 New York
## 6200 87 15 New York
## 6201 85 11 Mendoza Province
## 6202 85 20 Colorado
## 6203 85 10 Alentejano
## 6204 85 NA Burgundy
## 6205 85 13 California
## 6206 85 25 Mendoza Province
## 6207 85 14 Mendoza Province
## 6208 85 8 Douro
## 6209 85 20 Colorado
## 6210 85 NA Vinho Verde
## 6211 85 24 Oregon
## 6212 85 30 California
## 6213 85 25 Virginia
## 6214 85 15 California
## 6215 85 NA Burgundy
## 6216 85 19 Burgundy
## 6217 85 37 California
## 6218 85 9 Burgundy
## 6219 85 26 Oregon
## 6220 85 10 Vinho Verde
## 6221 85 18 Colorado
## 6222 85 19 Oregon
## 6223 85 30 California
## 6224 85 22 Alentejano
## 6225 85 22 California
## 6226 85 NA Dão
## 6227 85 10 Lisboa
## 6228 85 10 Lisboa
## 6229 85 10 Lisboa
## 6230 85 21 Burgundy
## 6231 90 24 Northeastern Italy
## 6232 90 16 Veneto
## 6233 90 24 Northeastern Italy
## 6234 90 35 Dão
## 6235 90 80 California
## 6236 90 26 Oregon
## 6237 90 26 California
## 6238 90 36 California
## 6239 90 20 Loire Valley
## 6240 90 18 France Other
## 6241 90 15 Loire Valley
## 6242 90 47 Rheingau
## 6243 90 35 California
## 6244 90 25 Northeastern Italy
## 6245 90 25 Aconcagua Valley
## 6246 90 42 Mosel
## 6247 90 24 Maipo Valley
## 6248 90 48 California
## 6249 90 28 Oregon
## 6250 90 18 Alentejano
## 6251 90 19 Lombardy
## 6252 90 25 Alentejano
## 6253 90 23 Lombardy
## 6254 90 25 Tejo
## 6255 90 40 Lisboa
## 6256 90 30 Port
## 6257 90 37 California
## 6258 90 60 California
## 6259 90 38 California
## 6260 90 29 Northeastern Italy
## 6261 95 89 Washington
## 6262 95 53 California
## 6263 95 140 Washington
## 6264 95 55 California
## 6265 95 80 California
## 6266 95 80 California
## 6267 94 45 California
## 6268 94 18 Washington
## 6269 94 75 Oregon
## 6270 94 55 California
## 6271 94 150 California
## 6272 94 120 California
## 6273 94 58 Mosel
## 6274 94 90 Washington
## 6275 94 70 Oregon
## 6276 94 70 California
## 6277 94 50 California
## 6278 94 80 California
## 6279 94 85 Oregon
## 6280 94 80 California
## 6281 94 55 California
## 6282 94 40 Washington
## 6283 94 50 California
## 6284 94 45 California
## 6285 94 140 California
## 6286 94 55 California
## 6287 84 30 California
## 6288 84 9 Mendoza Province
## 6289 84 20 California
## 6290 84 NA France Other
## 6291 84 8 Lisboa
## 6292 84 16 Loire Valley
## 6293 84 28 Virginia
## 6294 84 15 Virginia
## 6295 84 15 California
## 6296 84 16 Mendoza Province
## 6297 84 45 California
## 6298 84 20 Bairrada
## 6299 84 19 California
## 6300 84 23 California
## 6301 84 10 California
## 6302 84 16 Tuscany
## 6303 83 12 France Other
## 6304 83 17 Port
## 6305 83 16 Loire Valley
## 6306 83 10 California
## 6307 83 14 California
## 6308 83 33 Colorado
## 6309 83 22 Tuscany
## 6310 83 22 Tuscany
## 6311 83 11 Mendoza Province
## 6312 83 14 California
## 6313 83 18 California
## 6314 83 26 California
## 6315 83 20 Tuscany
## 6316 92 19 Veneto
## 6317 92 18 Loire Valley
## 6318 92 16 Loire Valley
## 6319 92 50 California
## 6320 91 25 Washington
## 6321 91 17 Loire Valley
## 6322 91 29 Veneto
## 6323 91 60 Washington
## 6324 91 50 Central Otago
## 6325 91 25 Alsace
## 6326 91 50 Alsace
## 6327 91 25 Oregon
## 6328 91 37 Oregon
## 6329 91 50 Stellenbosch
## 6330 91 60 Stellenbosch
## 6331 91 75 California
## 6332 91 34 Alsace
## 6333 91 25 Marlborough
## 6334 91 25 Marlborough
## 6335 91 69 Champagne
## 6336 91 50 Champagne
## 6337 91 30 Alsace
## 6338 91 23 Veneto
## 6339 91 55 Champagne
## 6340 91 12 California
## 6341 91 52 California
## 6342 91 27 California
## 6343 91 95 California
## 6344 91 45 Northern Spain
## 6345 91 32 California
## 6346 93 30 California
## 6347 93 21 California
## 6348 93 38 Pfalz
## 6349 93 99 Port
## 6350 93 95 Oregon
## 6351 93 69 California
## 6352 93 NA Piedmont
## 6353 93 38 Oregon
## 6354 93 NA Burgundy
## 6355 93 45 California
## 6356 93 23 Sicily & Sardinia
## 6357 93 60 Piedmont
## 6358 93 55 Burgundy
## 6359 93 40 California
## 6360 93 30 South Australia
## 6361 93 60 Piedmont
## 6362 93 35 California
## 6363 93 NA Burgundy
## 6364 93 NA Burgundy
## 6365 93 55 Piedmont
## 6366 93 48 California
## 6367 93 50 California
## 6368 93 65 Mendoza Province
## 6369 93 35 Piedmont
## 6370 93 85 Piedmont
## 6371 93 65 Oregon
## 6372 93 NA Burgundy
## 6373 93 NA Burgundy
## 6374 93 40 South Australia
## 6375 87 11 Douro
## 6376 87 17 Veneto
## 6377 87 11 South Africa
## 6378 87 12 Southwest France
## 6379 87 32 California
## 6380 87 23 Mendoza Province
## 6381 87 12 Western Cape
## 6382 86 13 California
## 6383 86 13 California
## 6384 86 45 California
## 6385 86 12 Douro
## 6386 86 14 Washington
## 6387 86 10 Beira Interior
## 6388 86 22 Veneto
## 6389 86 12 Southwest France
## 6390 86 18 Alentejano
## 6391 86 10 Tejo
## 6392 86 15 Southwest France
## 6393 86 12 California
## 6394 86 25 New York
## 6395 86 13 Mendoza Province
## 6396 86 12 Western Cape
## 6397 86 39 Other
## 6398 86 28 Veneto
## 6399 86 12 Mendoza Province
## 6400 86 7 Alentejano
## 6401 86 12 Beira Atlantico
## 6402 86 18 California
## 6403 86 50 California
## 6404 86 12 Western Cape
## 6405 85 NA Tuscany
## 6406 85 10 Languedoc-Roussillon
## 6407 85 NA Veneto
## 6408 85 22 Burgenland
## 6409 85 25 Burgenland
## 6410 85 NA Lombardy
## 6411 85 42 California
## 6412 85 24 California
## 6413 85 17 Hawke's Bay
## 6414 85 10 Western Cape
## 6415 85 15 Marlborough
## 6416 85 60 California
## 6417 85 10 Sicily & Sardinia
## 6418 85 17 Languedoc-Roussillon
## 6419 85 10 Western Cape
## 6420 85 10 Western Cape
## 6421 85 9 Languedoc-Roussillon
## 6422 85 28 California
## 6423 85 12 Washington
## 6424 96 475 Bordeaux
## 6425 96 73 Tuscany
## 6426 96 NA Bordeaux
## 6427 96 155 Champagne
## 6428 96 NA Bordeaux
## 6429 96 132 Bordeaux
## 6430 95 235 Bordeaux
## 6431 95 NA Bordeaux
## 6432 95 145 California
## 6433 95 165 California
## 6434 95 NA Bordeaux
## 6435 95 NA Bordeaux
## 6436 95 NA Bordeaux
## 6437 95 115 Tuscany
## 6438 95 200 Northern Spain
## 6439 95 90 Champagne
## 6440 95 150 Tuscany
## 6441 95 375 Bordeaux
## 6442 95 160 Bordeaux
## 6443 95 398 Bordeaux
## 6444 95 NA Bordeaux
## 6445 95 130 Bordeaux
## 6446 95 NA Tuscany
## 6447 95 NA Bordeaux
## 6448 94 200 Bordeaux
## 6449 94 85 California
## 6450 94 NA Champagne
## 6451 94 65 Tuscany
## 6452 91 50 Washington
## 6453 91 95 Veneto
## 6454 91 54 Burgundy
## 6455 91 35 California
## 6456 91 40 Washington
## 6457 91 28 Washington
## 6458 91 60 Washington
## 6459 91 75 California
## 6460 91 94 Burgundy
## 6461 91 52 Burgundy
## 6462 91 27 Washington
## 6463 91 20 Washington
## 6464 91 80 Veneto
## 6465 91 50 Spain Other
## 6466 91 80 Ontario
## 6467 91 27 Veneto
## 6468 91 48 Washington
## 6469 91 56 Burgundy
## 6470 91 54 Veneto
## 6471 91 70 Burgundy
## 6472 91 35 California
## 6473 91 70 Veneto
## 6474 91 40 Washington
## 6475 91 20 Washington
## 6476 91 90 California
## 6477 91 45 Washington
## 6478 91 30 Burgundy
## 6479 91 34 Veneto
## 6480 91 36 California
## 6481 83 10 Alentejano
## 6482 83 25 Douro
## 6483 83 17 Mendoza Province
## 6484 83 25 Oregon
## 6485 83 11 Central Italy
## 6486 83 15 Oregon
## 6487 83 20 Douro
## 6488 83 15 California
## 6489 83 18 Catalonia
## 6490 82 35 Oregon
## 6491 82 40 California
## 6492 82 20 Galicia
## 6493 82 10 Levante
## 6494 82 11 Other
## 6495 82 28 Oregon
## 6496 82 20 Washington
## 6497 82 10 Spain Other
## 6498 82 37 Piedmont
## 6499 82 23 Northern Spain
## 6500 82 15 Central Italy
## 6501 82 11 Other
## 6502 82 20 Douro
## 6503 82 35 Oregon
## 6504 82 30 Douro
## 6505 82 15 Other
## 6506 82 10 Catalonia
## 6507 81 10 Central Spain
## 6508 81 15 Catalonia
## 6509 81 15 Mendoza Province
## 6510 81 29 Galicia
## 6511 83 NA Burgundy
## 6512 83 10 Central Spain
## 6513 83 13 California
## 6514 83 15 Burgundy
## 6515 83 NA Michigan
## 6516 83 30 Michigan
## 6517 83 16 New York
## 6518 83 25 Missouri
## 6519 83 21 Burgundy
## 6520 83 18 Burgundy
## 6521 83 NA Burgundy
## 6522 83 NA Burgundy
## 6523 83 19 New Mexico
## 6524 83 15 Central Spain
## 6525 83 12 Missouri
## 6526 83 35 America
## 6527 83 25 Virginia
## 6528 83 36 Massachusetts
## 6529 83 10 Central Spain
## 6530 83 13 Central Spain
## 6531 83 20 New Mexico
## 6532 83 25 California
## 6533 83 10 Catalonia
## 6534 83 10 California
## 6535 83 8 California
## 6536 83 8 California
## 6537 83 NA Burgundy
## 6538 83 23 Burgundy
## 6539 83 12 Burgundy
## 6540 83 15 Ohio
## 6541 85 12 California
## 6542 85 15 Casablanca Valley
## 6543 85 22 Washington
## 6544 85 10 Curicó Valley
## 6545 85 30 California
## 6546 85 15 California
## 6547 85 15 New York
## 6548 85 34 Arizona
## 6549 85 12 Rapel Valley
## 6550 85 38 California
## 6551 85 19 New York
## 6552 85 10 California
## 6553 85 10 Elqui Valley
## 6554 85 16 Lontué Valley
## 6555 85 12 Maule Valley
## 6556 85 12 Casablanca Valley
## 6557 85 14 Casablanca Valley
## 6558 85 25 California
## 6559 85 12 Maule Valley
## 6560 85 13 New York
## 6561 85 40 New York
## 6562 85 15 Michigan
## 6563 85 25 Maule Valley
## 6564 85 40 Texas
## 6565 85 18 Casablanca Valley
## 6566 85 14 Ica
## 6567 85 12 Marlborough
## 6568 85 44 Texas
## 6569 85 10 Curicó Valley
## 6570 94 67 Burgundy
## 6571 94 100 California
## 6572 94 150 Burgundy
## 6573 94 99 Burgundy
## 6574 94 273 Burgundy
## 6575 94 40 Washington
## 6576 94 175 Tokaji
## 6577 94 117 Burgundy
## 6578 94 152 Burgundy
## 6579 94 75 Washington
## 6580 94 75 California
## 6581 94 84 Washington
## 6582 93 55 California
## 6583 93 115 Burgundy
## 6584 93 38 California
## 6585 93 38 California
## 6586 93 NA Washington
## 6587 93 NA Burgundy
## 6588 93 75 California
## 6589 93 38 California
## 6590 87 35 Coastal Region
## 6591 87 NA Tuscany
## 6592 87 42 California
## 6593 87 NA Tuscany
## 6594 87 11 Loire Valley
## 6595 86 13 California
## 6596 86 12 Tuscany
## 6597 86 NA Tuscany
## 6598 86 40 California
## 6599 86 NA Beaujolais
## 6600 86 NA Loire Valley
## 6601 86 NA Beaujolais
## 6602 86 24 Tuscany
## 6603 86 15 Maule Valley
## 6604 86 15 Tuscany
## 6605 86 31 California
## 6606 86 11 Limarí Valley
## 6607 86 12 Tuscany
## 6608 86 16 Marlborough
## 6609 86 11 Loire Valley
## 6610 86 26 Loire Valley
## 6611 86 9 Robertson
## 6612 86 26 California
## 6613 86 60 California
## 6614 86 15 Marlborough
## 6615 86 10 Western Cape
## 6616 88 17 Northeastern Italy
## 6617 88 50 California
## 6618 88 46 Burgundy
## 6619 88 24 California
## 6620 88 20 Idaho
## 6621 88 NA Veneto
## 6622 88 18 California
## 6623 88 15 Alentejano
## 6624 88 NA Central Italy
## 6625 88 45 California
## 6626 88 18 Tuscany
## 6627 88 36 Tuscany
## 6628 88 23 Oregon
## 6629 88 40 California
## 6630 88 35 California
## 6631 88 25 California
## 6632 88 33 Veneto
## 6633 88 30 California
## 6634 88 25 California
## 6635 88 50 Mendoza Province
## 6636 88 23 Catalonia
## 6637 88 25 Piedmont
## 6638 88 18 California
## 6639 88 24 Veneto
## 6640 88 27 San Vicente
## 6641 88 55 California
## 6642 88 20 Piedmont
## 6643 88 21 California
## 6644 88 28 California
## 6645 90 40 California
## 6646 90 21 Sicily & Sardinia
## 6647 90 19 Tuscany
## 6648 90 44 Burgenland
## 6649 90 19 Victoria
## 6650 90 39 Waipara Valley
## 6651 90 24 Tuscany
## 6652 90 24 California
## 6653 90 25 Burgundy
## 6654 90 NA Sicily & Sardinia
## 6655 90 38 Sicily & Sardinia
## 6656 90 35 California
## 6657 90 25 Colchagua Valley
## 6658 90 25 California
## 6659 90 24 Rhône Valley
## 6660 90 125 Burgundy
## 6661 90 20 Other
## 6662 90 24 Mendoza Province
## 6663 90 21 Victoria
## 6664 90 30 Hawke's Bay
## 6665 90 NA Burgundy
## 6666 90 35 California
## 6667 90 15 California
## 6668 90 63 Burgundy
## 6669 93 58 Washington
## 6670 93 65 California
## 6671 93 60 California
## 6672 93 50 California
## 6673 93 48 Washington
## 6674 93 20 Nashik
## 6675 93 45 Washington
## 6676 93 50 Washington
## 6677 93 48 Washington
## 6678 93 55 Douro
## 6679 93 35 Alsace
## 6680 93 500 Piedmont
## 6681 93 145 California
## 6682 93 25 California
## 6683 93 38 California
## 6684 93 105 Piedmont
## 6685 93 48 California
## 6686 93 65 Alsace
## 6687 93 45 California
## 6688 93 39 Washington
## 6689 93 200 California
## 6690 93 70 Piedmont
## 6691 93 50 California
## 6692 93 45 Alsace
## 6693 93 49 Piedmont
## 6694 93 50 California
## 6695 93 58 Piedmont
## 6696 93 40 Alsace
## 6697 91 53 Tuscany
## 6698 91 25 California
## 6699 91 25 Levante
## 6700 91 42 California
## 6701 91 40 England
## 6702 91 75 California
## 6703 91 41 Washington
## 6704 91 29 California
## 6705 91 32 California
## 6706 91 45 Levante
## 6707 91 29 Washington
## 6708 91 NA Piedmont
## 6709 91 20 California
## 6710 91 60 Maule Valley
## 6711 91 18 Rhône Valley
## 6712 91 27 Bordeaux
## 6713 91 35 Washington
## 6714 91 53 Piedmont
## 6715 91 15 Rhône Valley
## 6716 91 19 Loire Valley
## 6717 91 40 Tuscany
## 6718 91 29 Washington
## 6719 91 32 New York
## 6720 91 80 California
## 6721 91 48 Washington
## 6722 91 35 California
## 6723 91 35 California
## 6724 91 55 Washington
## 6725 91 34 California
## 6726 91 30 Levante
## 6727 94 NA Central Italy
## 6728 94 53 Burgundy
## 6729 94 60 Washington
## 6730 94 160 California
## 6731 94 285 Burgundy
## 6732 94 280 Burgundy
## 6733 94 35 California
## 6734 94 NA Burgundy
## 6735 94 NA Burgundy
## 6736 94 NA Burgundy
## 6737 94 50 Wachau
## 6738 94 36 Washington
## 6739 94 35 California
## 6740 94 75 California
## 6741 94 50 California
## 6742 94 55 Tuscany
## 6743 94 80 California
## 6744 94 80 Burgundy
## 6745 93 NA Burgundy
## 6746 93 NA Bordeaux
## 6747 89 32 Washington
## 6748 89 35 California
## 6749 89 12 California
## 6750 89 21 California
## 6751 89 48 Tuscany
## 6752 89 NA Kremstal
## 6753 89 13 Mendoza Province
## 6754 89 18 Tuscany
## 6755 89 13 California
## 6756 89 32 California
## 6757 89 NA Niederösterreich
## 6758 89 40 Tuscany
## 6759 89 10 Washington
## 6760 89 80 Tuscany
## 6761 89 38 Südsteiermark
## 6762 89 NA Niederösterreich
## 6763 89 15 Thermenregion
## 6764 89 NA Leithaberg
## 6765 89 NA Wagram-Donauland
## 6766 89 35 New York
## 6767 89 65 Mendoza Province
## 6768 89 42 Mendoza Province
## 6769 89 17 Galicia
## 6770 89 70 Tuscany
## 6771 89 40 Tuscany
## 6772 89 NA Bordeaux
## 6773 89 NA Bordeaux
## 6774 89 NA Bordeaux
## 6775 89 NA Bordeaux
## 6776 89 29 Bordeaux
## 6777 89 26 Loire Valley
## 6778 89 35 Oregon
## 6779 89 12 Stellenbosch
## 6780 89 20 Colchagua Valley
## 6781 89 13 California
## 6782 89 25 Southwest France
## 6783 89 24 Franschhoek
## 6784 89 36 Walker Bay
## 6785 89 40 Northeastern Italy
## 6786 89 61 Southwest France
## 6787 89 8 California
## 6788 89 34 Northern Spain
## 6789 89 24 Oregon
## 6790 89 40 Southwest France
## 6791 89 25 Stellenbosch
## 6792 89 24 Kremstal
## 6793 89 15 Western Cape
## 6794 89 24 Swartland
## 6795 89 20 Northern Spain
## 6796 89 74 Tuscany
## 6797 89 35 Northern Spain
## 6798 89 48 California
## 6799 89 190 Tuscany
## 6800 89 35 Bordeaux
## 6801 89 25 California
## 6802 89 52 Tuscany
## 6803 89 28 California
## 6804 89 42 California
## 6805 89 30 Robertson
## 6806 89 39 Tuscany
## 6807 89 12 California
## 6808 89 NA Champagne
## 6809 89 45 Tuscany
## 6810 89 50 Mendoza Province
## 6811 88 15 Idaho
## 6812 88 55 Northern Spain
## 6813 88 19 Northern Spain
## 6814 88 NA Bordeaux
## 6815 88 25 Bordeaux
## 6816 88 17 Bordeaux
## 6817 88 20 Bordeaux
## 6818 88 27 Bordeaux
## 6819 88 34 California
## 6820 88 27 California
## 6821 88 45 Tuscany
## 6822 88 11 Idaho
## 6823 88 32 California
## 6824 91 120 Tuscany
## 6825 91 48 California
## 6826 91 24 Northern Spain
## 6827 91 NA Champagne
## 6828 91 25 Mendoza Province
## 6829 91 25 Northern Spain
## 6830 91 55 Tuscany
## 6831 91 55 Tuscany
## 6832 91 80 Tuscany
## 6833 91 60 Tuscany
## 6834 91 28 Northern Spain
## 6835 91 160 Champagne
## 6836 91 75 Stellenbosch
## 6837 91 32 Bordeaux
## 6838 91 NA Bordeaux
## 6839 91 NA Bordeaux
## 6840 91 60 Bordeaux
## 6841 91 26 California
## 6842 91 65 Tuscany
## 6843 91 65 Tuscany
## 6844 91 60 Tuscany
## 6845 91 65 Tuscany
## 6846 91 30 New York
## 6847 91 23 Mendoza Province
## 6848 91 NA Tuscany
## 6849 91 55 Tuscany
## 6850 91 30 Bordeaux
## 6851 91 25 Bordeaux
## 6852 91 99 Tuscany
## 6853 91 33 California
## 6854 89 65 Champagne
## 6855 89 20 Veneto
## 6856 89 26 Veneto
## 6857 89 27 Mendoza Province
## 6858 89 22 California
## 6859 89 18 Northern Spain
## 6860 89 19 Veneto
## 6861 89 50 Champagne
## 6862 89 40 Alsace
## 6863 89 50 Alsace
## 6864 89 20 Ontario
## 6865 89 38 California
## 6866 89 15 Other
## 6867 89 19 Mosel
## 6868 89 95 Champagne
## 6869 89 20 Mendoza Province
## 6870 89 28 Weinland Österreich
## 6871 89 19 South Island
## 6872 89 24 Veneto
## 6873 89 67 Champagne
## 6874 89 18 Northern Spain
## 6875 89 18 Veneto
## 6876 89 45 Champagne
## 6877 89 13 Rheinhessen
## 6878 89 25 Marlborough
## 6879 89 22 Oregon
## 6880 89 36 California
## 6881 89 23 Mosel
## 6882 89 35 California
## 6883 89 NA Veneto
## 6884 87 19 Northeastern Italy
## 6885 87 13 Northeastern Italy
## 6886 87 13 Northeastern Italy
## 6887 87 NA Northeastern Italy
## 6888 87 26 Northeastern Italy
## 6889 87 16 Mendoza Province
## 6890 87 11 Nahe
## 6891 87 40 Oregon
## 6892 87 40 Oregon
## 6893 87 16 Northeastern Italy
## 6894 87 18 Northeastern Italy
## 6895 87 24 Northeastern Italy
## 6896 87 18 Northeastern Italy
## 6897 87 33 Oregon
## 6898 87 19 Northeastern Italy
## 6899 87 20 Oregon
## 6900 87 21 Mendoza Province
## 6901 87 20 Northeastern Italy
## 6902 87 19 Northeastern Italy
## 6903 87 10 Northeastern Italy
## 6904 87 16 California
## 6905 87 15 Mendoza Province
## 6906 87 250 Michigan
## 6907 87 17 Northeastern Italy
## 6908 87 15 Mosel
## 6909 87 17 Beira Interior
## 6910 87 19 Mendoza Province
## 6911 87 12 Northeastern Italy
## 6912 93 70 Colchagua Valley
## 6913 93 36 Tejo
## 6914 93 35 Oregon
## 6915 93 23 Loire Valley
## 6916 93 90 California
## 6917 93 46 Catalonia
## 6918 93 29 Veneto
## 6919 93 40 Oregon
## 6920 93 45 California
## 6921 93 30 Bairrada
## 6922 93 NA Loire Valley
## 6923 93 64 California
## 6924 93 45 California
## 6925 93 45 California
## 6926 93 35 California
## 6927 93 90 California
## 6928 93 175 California
## 6929 93 20 Beira Atlantico
## 6930 93 23 Alentejo
## 6931 93 50 Oregon
## 6932 93 40 Mosel
## 6933 93 18 Douro
## 6934 93 65 Douro
## 6935 93 135 California
## 6936 93 50 California
## 6937 93 26 Northeastern Italy
## 6938 93 40 California
## 6939 93 40 Douro
## 6940 93 49 California
## 6941 92 40 Alentejano
## 6942 89 30 South Australia
## 6943 89 11 Western Cape
## 6944 89 40 Bordeaux
## 6945 89 35 Victoria
## 6946 89 38 Pfalz
## 6947 89 17 Pfalz
## 6948 89 30 Pfalz
## 6949 89 15 Robertson
## 6950 89 37 Washington
## 6951 89 55 Tuscany
## 6952 89 47 Tuscany
## 6953 89 24 Pfalz
## 6954 89 17 Andalucia
## 6955 89 30 Washington
## 6956 89 45 Pfalz
## 6957 89 43 Pfalz
## 6958 89 30 Pfalz
## 6959 89 18 Bordeaux
## 6960 89 27 Bordeaux
## 6961 89 NA Tuscany
## 6962 86 10 Vinho Verde
## 6963 86 22 California
## 6964 86 14 Veneto
## 6965 86 13 California
## 6966 86 29 California
## 6967 86 14 Veneto
## 6968 86 23 California
## 6969 86 34 Virginia
## 6970 86 23 Atlantida
## 6971 86 9 Thracian Valley
## 6972 86 8 California
## 6973 86 13 Douro
## 6974 86 11 Bío Bío Valley
## 6975 86 48 California
## 6976 86 9 Douro
## 6977 86 10 California
## 6978 86 9 California
## 6979 86 20 Bordeaux
## 6980 86 13 Bordeaux
## 6981 86 28 Bordeaux
## 6982 86 10 Maule Valley
## 6983 86 20 Western Australia
## 6984 86 15 Veneto
## 6985 86 10 Lisboa
## 6986 86 22 California
## 6987 86 8 Australia Other
## 6988 86 8 Tarnave
## 6989 86 40 California
## 6990 86 18 France Other
## 6991 86 22 France Other
## 6992 89 22 California
## 6993 89 22 California
## 6994 89 55 California
## 6995 89 20 Piedmont
## 6996 89 25 Colchagua Valley
## 6997 89 25 California
## 6998 89 35 Vipavska Dolina
## 6999 89 35 Vipavska Dolina
## 7000 89 35 Piedmont
## 7001 89 17 Piedmont
## 7002 89 NA Alsace
## 7003 89 NA Provence
## 7004 89 NA Provence
## 7005 89 18 Bordeaux
## 7006 89 40 Bordeaux
## 7007 89 25 Alsace
## 7008 89 47 Piedmont
## 7009 89 34 California
## 7010 89 59 California
## 7011 89 14 Bordeaux
## 7012 89 16 Central Italy
## 7013 89 23 Limarí Valley
## 7014 89 22 Alentejano
## 7015 89 40 Provence
## 7016 89 19 Bordeaux
## 7017 89 24 Washington
## 7018 89 30 California
## 7019 89 29 California
## 7020 89 29 Washington
## 7021 89 54 Alsace
## 7022 92 48 Alsace
## 7023 92 30 California
## 7024 92 52 Lombardy
## 7025 92 95 Lombardy
## 7026 92 55 Central Otago
## 7027 92 45 California
## 7028 92 70 California
## 7029 92 50 Hawke's Bay
## 7030 92 95 California
## 7031 92 50 California
## 7032 92 65 California
## 7033 92 NA Lombardy
## 7034 92 45 Oregon
## 7035 92 NA Bordeaux
## 7036 92 22 Northern Spain
## 7037 92 NA Hawke's Bay
## 7038 92 75 California
## 7039 92 54 California
## 7040 92 40 California
## 7041 92 30 California
## 7042 92 50 Oregon
## 7043 92 30 Mosel
## 7044 84 12 Loire Valley
## 7045 84 6 Vinho Verde
## 7046 84 7 Alentejano
## 7047 84 14 Mendoza Province
## 7048 84 14 Mendoza Province
## 7049 84 18 California
## 7050 84 12 Vinho Verde
## 7051 84 14 Northern Spain
## 7052 84 45 California
## 7053 84 20 Oregon
## 7054 84 13 Mendoza Province
## 7055 84 64 California
## 7056 84 15 Central Spain
## 7057 84 10 Northern Spain
## 7058 84 20 California
## 7059 84 NA Southwest France
## 7060 84 12 Southwest France
## 7061 84 13 Alentejano
## 7062 84 20 Galicia
## 7063 84 18 Galicia
## 7064 84 23 Tejo
## 7065 84 8 California
## 7066 84 11 Central Spain
## 7067 84 14 Alentejano
## 7068 84 12 Southwest France
## 7069 84 13 Northern Spain
## 7070 84 30 Piedmont
## 7071 84 26 Oregon
## 7072 84 12 Península de Setúbal
## 7073 84 17 Victoria
## 7074 83 20 California
## 7075 83 28 California
## 7076 83 14 Other
## 7077 83 29 Mendoza Province
## 7078 82 9 California
## 7079 82 45 California
## 7080 82 NA Burgundy
## 7081 82 28 California
## 7082 82 41 Victoria
## 7083 82 30 Victoria
## 7084 82 20 California
## 7085 82 20 Washington
## 7086 82 28 California
## 7087 82 27 California
## 7088 82 20 Limarí Valley
## 7089 82 75 California
## 7090 82 22 California
## 7091 82 15 Mendoza Province
## 7092 81 13 Limarí Valley
## 7093 81 12 Maipo Valley
## 7094 81 7 Mendoza Province
## 7095 80 18 Mendoza Province
## 7096 80 12 Mendoza Province
## 7097 80 12 Colchagua Valley
## 7098 97 110 California
## 7099 87 25 Port
## 7100 87 14 Northern Spain
## 7101 87 31 Veneto
## 7102 87 18 Alsace
## 7103 87 32 Alsace
## 7104 87 32 Italy Other
## 7105 87 24 Oregon
## 7106 87 57 Champagne
## 7107 87 16 Tejo
## 7108 87 40 Champagne
## 7109 87 NA Port
## 7110 87 50 California
## 7111 87 16 Oregon
## 7112 87 125 California
## 7113 87 17 California
## 7114 87 22 California
## 7115 87 18 Western Cape
## 7116 87 25 California
## 7117 87 NA Veneto
## 7118 87 40 Champagne
## 7119 87 18 Veneto
## 7120 87 22 Veneto
## 7121 87 75 Northern Spain
## 7122 87 25 Beaujolais
## 7123 87 NA Veneto
## 7124 87 25 California
## 7125 87 17 Northern Spain
## 7126 87 49 British Columbia
## 7127 87 12 Mendoza Province
## 7128 87 26 California
## 7129 88 55 Oregon
## 7130 88 20 California
## 7131 88 19 Oregon
## 7132 88 16 Alentejano
## 7133 88 13 Casablanca Valley
## 7134 88 48 Central Italy
## 7135 88 20 Languedoc-Roussillon
## 7136 88 15 Casablanca Valley
## 7137 88 NA Southern Italy
## 7138 88 29 California
## 7139 88 18 Oregon
## 7140 88 19 Port
## 7141 88 30 Oregon
## 7142 88 20 British Columbia
## 7143 85 25 Piedmont
## 7144 85 75 California
## 7145 85 22 California
## 7146 85 NA France Other
## 7147 84 13 San Antonio
## 7148 84 55 California
## 7149 84 36 California
## 7150 84 19 Bekaa Valley
## 7151 84 12 California
## 7152 84 25 California
## 7153 84 11 San Antonio
## 7154 84 16 Piedmont
## 7155 84 13 Northern Spain
## 7156 84 13 Alsace
## 7157 84 19 Piedmont
## 7158 84 13 Piedmont
## 7159 83 47 Piedmont
## 7160 83 15 Italy Other
## 7161 83 81 Piedmont
## 7162 83 27 Piedmont
## 7163 83 15 Idaho
## 7164 90 35 Provence
## 7165 90 25 Mendoza Province
## 7166 90 23 Southern Italy
## 7167 90 37 Southern Italy
## 7168 90 14 Marlborough
## 7169 90 20 Upper Galilee
## 7170 90 15 Galilee
## 7171 90 16 Northern Spain
## 7172 90 32 California
## 7173 90 48 New York
## 7174 90 42 Sicily & Sardinia
## 7175 90 85 California
## 7176 90 16 New York
## 7177 90 36 Stellenbosch
## 7178 90 35 Stellenbosch
## 7179 90 80 Paarl
## 7180 90 40 Catalonia
## 7181 90 NA Provence
## 7182 90 20 Provence
## 7183 90 50 California
## 7184 90 49 California
## 7185 90 22 Alsace
## 7186 90 44 Washington
## 7187 90 42 Washington
## 7188 90 14 New York
## 7189 90 35 California
## 7190 90 NA Catalonia
## 7191 90 70 California
## 7192 90 20 Marlborough
## 7193 90 23 Washington
## 7194 90 20 Oregon
## 7195 90 40 Marlborough
## 7196 90 80 Port
## 7197 90 28 Loire Valley
## 7198 90 15 Lisboa
## 7199 90 30 Loire Valley
## 7200 90 18 Loire Valley
## 7201 90 35 Loire Valley
## 7202 90 20 Oregon
## 7203 90 52 Oregon
## 7204 90 42 Mendoza Province
## 7205 90 25 Tejo
## 7206 90 32 Mosel
## 7207 90 45 Oregon
## 7208 90 55 Oregon
## 7209 90 16 Loire Valley
## 7210 90 25 France Other
## 7211 90 28 California
## 7212 90 NA Alentejano
## 7213 90 41 Sicily & Sardinia
## 7214 90 70 Piedmont
## 7215 90 50 Piedmont
## 7216 90 66 Port
## 7217 90 28 California
## 7218 90 50 Oregon
## 7219 90 55 Piedmont
## 7220 90 29 Oregon
## 7221 90 25 France Other
## 7222 90 55 Oregon
## 7223 90 36 California
## 7224 87 21 Veneto
## 7225 87 16 Veneto
## 7226 87 110 California
## 7227 87 30 California
## 7228 87 38 California
## 7229 87 55 California
## 7230 87 NA Burgundy
## 7231 87 14 Washington
## 7232 87 16 Central Spain
## 7233 87 11 Northern Spain
## 7234 87 20 Veneto
## 7235 87 15 Elgin
## 7236 87 10 Central Spain
## 7237 87 19 New York
## 7238 87 35 Burgundy
## 7239 87 15 New York
## 7240 87 12 Coastal Region
## 7241 87 32 Veneto
## 7242 87 25 Robertson
## 7243 87 18 Burgundy
## 7244 87 NA Burgundy
## 7245 87 24 Burgundy
## 7246 87 20 California
## 7247 87 18 Burgundy
## 7248 87 18 Veneto
## 7249 87 19 Galicia
## 7250 87 30 Northern Spain
## 7251 87 20 Burgundy
## 7252 87 25 New York
## 7253 87 29 California
## 7254 89 40 California
## 7255 89 30 California
## 7256 89 20 Itata Valley
## 7257 89 45 Languedoc-Roussillon
## 7258 89 13 Washington
## 7259 89 32 Washington
## 7260 89 20 California
## 7261 89 53 Villány
## 7262 89 27 Villány
## 7263 89 25 Aconcagua Valley
## 7264 89 9 Washington
## 7265 89 26 Washington
## 7266 89 24 Washington
## 7267 89 22 Dealu Mare
## 7268 89 29 California
## 7269 89 32 California
## 7270 89 13 Alsace
## 7271 89 15 Curicó Valley
## 7272 89 32 California
## 7273 89 45 Moravia
## 7274 89 40 New York
## 7275 89 25 California
## 7276 89 10 California
## 7277 89 19 California
## 7278 89 42 Tokaj
## 7279 89 22 Alsace
## 7280 89 28 California
## 7281 89 75 Northeastern Italy
## 7282 89 NA Northeastern Italy
## 7283 89 60 New York
## 7284 90 45 Washington
## 7285 90 32 California
## 7286 90 45 California
## 7287 90 80 California
## 7288 90 27 California
## 7289 90 35 California
## 7290 90 42 California
## 7291 90 36 Southern Italy
## 7292 90 12 Pfalz
## 7293 90 18 Rheinhessen
## 7294 90 19 Alsace
## 7295 90 45 California
## 7296 90 58 Washington
## 7297 90 25 California
## 7298 90 21 South Australia
## 7299 90 56 California
## 7300 90 23 California
## 7301 90 55 California
## 7302 90 20 Northeastern Italy
## 7303 90 20 Alsace
## 7304 90 25 Loire Valley
## 7305 90 30 Washington
## 7306 90 30 Washington
## 7307 90 15 Bordeaux
## 7308 90 10 Bordeaux
## 7309 90 28 Oregon
## 7310 90 NA Alsace
## 7311 90 15 Loire Valley
## 7312 90 25 Alsace
## 7313 90 33 Alsace
## 7314 82 27 California
## 7315 82 10 California
## 7316 82 16 California
## 7317 82 7 Ribatejano
## 7318 82 18 Northern Spain
## 7319 82 13 New York
## 7320 82 35 California
## 7321 82 20 New York
## 7322 81 10 Tuscany
## 7323 81 8 Table wine
## 7324 81 35 Negev Hills
## 7325 81 13 Languedoc-Roussillon
## 7326 81 22 Samson
## 7327 81 13 Northern Spain
## 7328 81 25 California
## 7329 81 15 New York
## 7330 81 16 New York
## 7331 81 44 California
## 7332 81 10 California
## 7333 80 19 Galicia
## 7334 80 10 California
## 7335 80 19 California
## 7336 100 210 Tuscany
## 7337 97 70 California
## 7338 89 35 California
## 7339 89 32 California
## 7340 88 40 California
## 7341 88 18 Wagram-Donauland
## 7342 88 20 Galicia
## 7343 88 39 Washington
## 7344 88 50 Tuscany
## 7345 88 10 Washington
## 7346 88 70 Tuscany
## 7347 88 9 Central Spain
## 7348 88 18 Washington
## 7349 88 45 Tuscany
## 7350 88 45 Tuscany
## 7351 88 30 California
## 7352 88 11 Washington
## 7353 88 50 Tuscany
## 7354 88 20 Washington
## 7355 88 10 Mendoza Province
## 7356 88 18 California
## 7357 88 NA Bordeaux
## 7358 88 30 Bordeaux
## 7359 88 24 Bordeaux
## 7360 88 30 Washington
## 7361 88 34 New York
## 7362 88 60 Tuscany
## 7363 88 NA Tuscany
## 7364 88 25 Galicia
## 7365 88 49 California
## 7366 88 16 Washington
## 7367 88 34 Washington
## 7368 92 70 Rhône Valley
## 7369 92 50 Northern Spain
## 7370 92 25 Washington
## 7371 92 28 Western Cape
## 7372 92 26 California
## 7373 92 65 California
## 7374 92 21 California
## 7375 92 75 Kamptal
## 7376 92 70 California
## 7377 92 66 California
## 7378 92 68 California
## 7379 92 34 Kamptal
## 7380 92 55 Stellenbosch
## 7381 92 70 Northern Spain
## 7382 92 14 Washington
## 7383 92 60 California
## 7384 92 46 California
## 7385 92 75 California
## 7386 92 45 Provence
## 7387 92 32 California
## 7388 92 75 South Australia
## 7389 92 40 Rhône Valley
## 7390 92 28 Washington
## 7391 92 60 Sicily & Sardinia
## 7392 92 23 Catalonia
## 7393 92 80 California
## 7394 92 55 California
## 7395 92 25 California
## 7396 92 60 Northeastern Italy
## 7397 87 24 California
## 7398 87 NA Douro
## 7399 87 30 California
## 7400 87 38 California
## 7401 87 30 California
## 7402 87 42 California
## 7403 87 26 California
## 7404 87 15 California
## 7405 87 65 California
## 7406 87 24 Alsace
## 7407 87 20 Oregon
## 7408 86 15 Oregon
## 7409 86 NA Madeira
## 7410 86 21 California
## 7411 86 22 California
## 7412 86 15 Oregon
## 7413 86 7 Estremadura
## 7414 86 29 California
## 7415 86 13 New York
## 7416 86 27 New York
## 7417 86 16 Northern Spain
## 7418 86 17 Alsace
## 7419 86 20 California
## 7420 86 16 Catalonia
## 7421 86 20 Idaho
## 7422 86 26 California
## 7423 86 20 Alsace
## 7424 86 22 Paarl
## 7425 86 12 Oregon
## 7426 86 8 California
## 7427 86 33 Western Cape
## 7428 86 8 California
## 7429 86 22 Stellenbosch
## 7430 86 34 Stellenbosch
## 7431 86 12 California
## 7432 86 15 South Australia
## 7433 86 15 Oregon
## 7434 86 20 Oregon
## 7435 86 10 Western Cape
## 7436 86 12 Paarl
## 7437 86 14 California
## 7438 86 10 New York
## 7439 86 35 California
## 7440 86 10 Catalonia
## 7441 85 12 California
## 7442 85 20 Stellenbosch
## 7443 85 17 Alsace
## 7444 85 29 California
## 7445 85 18 California
## 7446 85 15 Marlborough
## 7447 85 9 California
## 7448 85 20 Victoria
## 7449 85 10 Catalonia
## 7450 86 18 Casablanca Valley
## 7451 86 10 Languedoc-Roussillon
## 7452 86 9 Languedoc-Roussillon
## 7453 86 NA Piedmont
## 7454 86 18 Piedmont
## 7455 86 16 Piedmont
## 7456 86 36 Piedmont
## 7457 86 15 Catalonia
## 7458 86 35 Maule Valley
## 7459 86 10 Central Valley
## 7460 86 78 Piedmont
## 7461 86 18 Burgundy
## 7462 86 18 Burgundy
## 7463 86 16 New York
## 7464 86 15 Maule Valley
## 7465 86 NA Burgundy
## 7466 86 12 Maule Valley
## 7467 86 25 Washington
## 7468 86 21 Washington
## 7469 86 21 Washington
## 7470 86 60 Piedmont
## 7471 86 12 Languedoc-Roussillon
## 7472 86 NA Burgundy
## 7473 86 36 Washington
## 7474 86 16 Washington
## 7475 86 13 California
## 7476 86 17 California
## 7477 86 48 Piedmont
## 7478 86 NA Piedmont
## 7479 86 12 Piedmont
## 7480 83 32 California
## 7481 83 40 California
## 7482 83 15 Oregon
## 7483 83 20 California
## 7484 83 38 California
## 7485 83 7 Australia Other
## 7486 83 15 Andalucia
## 7487 83 12 Mendoza Province
## 7488 83 19 Oregon
## 7489 83 10 Oregon
## 7490 83 16 Idaho
## 7491 83 20 New Mexico
## 7492 83 12 Oregon
## 7493 83 12 California
## 7494 83 19 Catalonia
## 7495 83 17 Pennsylvania
## 7496 83 15 California
## 7497 83 28 California
## 7498 83 20 California
## 7499 83 6 Mendoza Province
## 7500 83 12 Other
## 7501 83 20 Oregon
## 7502 93 36 California
## 7503 93 55 California
## 7504 92 22 California
## 7505 92 20 British Columbia
## 7506 92 48 California
## 7507 92 50 California
## 7508 92 25 Beaujolais
## 7509 92 62 Mendoza Province
## 7510 92 45 Lombardy
## 7511 92 80 Champagne
## 7512 92 135 Mendoza Province
## 7513 92 30 Veneto
## 7514 92 25 Ontario
## 7515 92 29 California
## 7516 92 150 California
## 7517 92 55 California
## 7518 92 42 Victoria
## 7519 92 75 Champagne
## 7520 92 63 Champagne
## 7521 92 54 Champagne
## 7522 92 25 Douro
## 7523 92 65 Champagne
## 7524 92 60 Oregon
## 7525 92 40 Veneto
## 7526 92 45 California
## 7527 92 30 California
## 7528 92 24 California
## 7529 92 38 California
## 7530 92 95 California
## 7531 92 29 California
## 7532 87 15 Marlborough
## 7533 87 15 California
## 7534 87 38 California
## 7535 87 10 Tuscany
## 7536 87 26 California
## 7537 87 22 Tuscany
## 7538 87 18 California
## 7539 87 65 California
## 7540 87 NA Tuscany
## 7541 87 25 California
## 7542 87 18 Tuscany
## 7543 87 18 Tuscany
## 7544 87 25 California
## 7545 87 16 Levante
## 7546 87 16 Levante
## 7547 87 12 Colchagua Valley
## 7548 87 15 New York
## 7549 91 50 California
## 7550 91 16 Tuscany
## 7551 91 60 California
## 7552 91 12 Península de Setúbal
## 7553 91 23 Levante
## 7554 91 70 California
## 7555 91 NA Tuscany
## 7556 90 NA Tuscany
## 7557 90 17 Vinho Verde
## 7558 90 25 Spanish Islands
## 7559 90 48 Port
## 7560 90 24 California
## 7561 90 27 Loire Valley
## 7562 90 NA Bordeaux
## 7563 90 35 Bordeaux
## 7564 90 60 Oregon
## 7565 90 40 California
## 7566 90 NA Loire Valley
## 7567 90 36 California
## 7568 85 12 Dealu Mare
## 7569 85 17 Cyprus
## 7570 85 8 Recas
## 7571 85 NA Sicily & Sardinia
## 7572 85 11 California
## 7573 85 8 Rapel Valley
## 7574 85 10 Bordeaux
## 7575 85 19 California
## 7576 85 35 California
## 7577 85 10 Mendoza Province
## 7578 85 19 Maule Valley
## 7579 85 16 Veneto
## 7580 85 10 Bordeaux
## 7581 85 41 Veneto
## 7582 85 22 Drama
## 7583 85 25 California
## 7584 85 8 Recas
## 7585 85 NA Other
## 7586 85 13 Curicó Valley
## 7587 85 25 California
## 7588 85 12 Bordeaux
## 7589 85 10 Champagne
## 7590 85 18 Pageon
## 7591 85 24 California
## 7592 83 10 Colchagua Valley
## 7593 83 9 Veneto
## 7594 83 20 California
## 7595 83 7 Central Valley
## 7596 83 6 Central Valley
## 7597 83 6 Maipo Valley
## 7598 83 15 Northeastern Italy
## 7599 83 12 Northeastern Italy
## 7600 83 9 California
## 7601 83 10 Tuscany
## 7602 83 15 Casablanca Valley
## 7603 83 8 Cachapoal Valley
## 7604 83 9 Casablanca Valley
## 7605 83 9 Colchagua Valley
## 7606 83 5 Central Valley
## 7607 83 15 California
## 7608 83 7 Bucelas
## 7609 83 8 Valle de Guadalupe
## 7610 82 10 Veneto
## 7611 82 14 Rapel Valley
## 7612 82 6 Vinho Verde
## 7613 82 8 Colchagua Valley
## 7614 87 70 Champagne
## 7615 87 32 Alsace
## 7616 87 18 Alsace
## 7617 87 10 California
## 7618 87 20 Oregon
## 7619 87 22 Veneto
## 7620 87 40 Northeastern Italy
## 7621 87 13 California
## 7622 87 20 Martinborough
## 7623 87 16 Ontario
## 7624 87 28 California
## 7625 87 20 Niederösterreich
## 7626 87 15 California
## 7627 87 28 British Columbia
## 7628 87 54 Champagne
## 7629 87 70 California
## 7630 87 16 Veneto
## 7631 87 62 California
## 7632 87 46 Champagne
## 7633 87 47 Champagne
## 7634 87 30 California
## 7635 87 22 Oregon
## 7636 87 18 Oregon
## 7637 87 20 Veneto
## 7638 87 22 Veneto
## 7639 87 14 Other
## 7640 87 12 Western Cape
## 7641 87 18 Veneto
## 7642 87 22 Veneto
## 7643 87 20 Veneto
## 7644 85 17 South Island
## 7645 85 8 Sicily & Sardinia
## 7646 85 32 California
## 7647 85 9 Beaujolais
## 7648 85 42 California
## 7649 85 NA Sicily & Sardinia
## 7650 85 12 Northern Spain
## 7651 85 13 Sicily & Sardinia
## 7652 85 25 Galicia
## 7653 85 NA Beaujolais
## 7654 85 30 California
## 7655 85 39 California
## 7656 85 18 Washington
## 7657 85 NA Sicily & Sardinia
## 7658 85 NA New York
## 7659 85 16 South Australia
## 7660 85 14 Cachapoal Valley
## 7661 85 10 Sicily & Sardinia
## 7662 85 10 Sicily & Sardinia
## 7663 85 19 Sicily & Sardinia
## 7664 85 25 Burgundy
## 7665 85 20 Sicily & Sardinia
## 7666 85 20 California
## 7667 85 25 New York
## 7668 85 20 New York
## 7669 85 6 Central Spain
## 7670 85 15 New York
## 7671 85 19 California
## 7672 85 NA Vinho Espumante de Qualidade
## 7673 85 13 California
## 7674 90 19 California
## 7675 90 52 Washington
## 7676 90 25 Washington
## 7677 90 28 Santorini
## 7678 90 35 Catalonia
## 7679 90 45 California
## 7680 90 17 Naoussa
## 7681 90 24 Washington
## 7682 90 NA Burgundy
## 7683 90 60 Burgundy
## 7684 90 9 Central Spain
## 7685 90 25 California
## 7686 90 39 Thrace
## 7687 90 39 Sicily & Sardinia
## 7688 90 25 California
## 7689 90 55 California
## 7690 90 32 Burgundy
## 7691 90 22 Northern Spain
## 7692 90 20 Sicily & Sardinia
## 7693 87 21 Western Cape
## 7694 87 20 California
## 7695 86 14 Tuscany
## 7696 86 20 Bordeaux
## 7697 86 14 California
## 7698 86 15 Wellington
## 7699 86 60 California
## 7700 86 9 Northern Spain
## 7701 86 23 California
## 7702 86 85 California
## 7703 86 17 Walker Bay
## 7704 86 22 California
## 7705 86 56 Northern Spain
## 7706 86 19 Northern Spain
## 7707 86 35 Stellenbosch
## 7708 86 20 Central Spain
## 7709 86 28 California
## 7710 86 60 Bordeaux
## 7711 86 50 California
## 7712 86 13 Western Cape
## 7713 86 13 Australia Other
## 7714 86 25 Mosel-Saar-Ruwer
## 7715 86 8 Stellenbosch
## 7716 86 8 Stellenbosch
## 7717 86 12 Northern Spain
## 7718 86 28 Northern Spain
## 7719 88 29 Bordeaux
## 7720 88 26 California
## 7721 88 50 Bairrada
## 7722 88 25 Washington
## 7723 88 12 Washington
## 7724 88 45 Bordeaux
## 7725 88 20 Bordeaux
## 7726 88 17 Bordeaux
## 7727 88 27 Bordeaux
## 7728 88 35 Bordeaux
## 7729 88 25 Bordeaux
## 7730 88 NA Bordeaux
## 7731 88 NA Bordeaux
## 7732 88 25 California
## 7733 88 28 Beaujolais
## 7734 88 25 Douro
## 7735 88 22 Douro
## 7736 88 25 California
## 7737 88 15 Oregon
## 7738 88 35 Washington
## 7739 88 22 Mosel
## 7740 88 42 California
## 7741 88 56 Victoria
## 7742 88 17 Beaujolais
## 7743 88 24 Oregon
## 7744 88 19 Bordeaux
## 7745 88 35 Lombardy
## 7746 88 17 Bairrada
## 7747 88 16 Washington
## 7748 88 20 California
## 7749 91 50 California
## 7750 91 34 Burgenland
## 7751 91 60 California
## 7752 91 35 California
## 7753 91 68 California
## 7754 91 17 Traisental
## 7755 91 17 Traisental
## 7756 91 35 Washington
## 7757 91 85 California
## 7758 91 45 Washington
## 7759 91 95 Piedmont
## 7760 91 40 California
## 7761 91 95 Washington
## 7762 91 95 Washington
## 7763 91 38 California
## 7764 91 48 California
## 7765 91 23 California
## 7766 91 60 Washington
## 7767 91 19 Thermenregion
## 7768 91 32 Washington
## 7769 91 22 Thermenregion
## 7770 91 24 California
## 7771 91 18 Niederösterreich
## 7772 91 NA Burgenland
## 7773 91 NA Burgenland
## 7774 91 75 Rhône Valley
## 7775 91 25 Languedoc-Roussillon
## 7776 91 29 Northern Spain
## 7777 91 40 Rhône Valley
## 7778 91 45 Washington
## 7779 92 75 California
## 7780 92 30 British Columbia
## 7781 92 45 Wagram-Donauland
## 7782 92 39 Piedmont
## 7783 92 73 Traisental
## 7784 92 70 California
## 7785 92 47 Piedmont
## 7786 92 85 South Australia
## 7787 92 41 California
## 7788 92 60 Niederösterreich
## 7789 92 49 Southwest France
## 7790 92 35 Washington
## 7791 92 62 Piedmont
## 7792 92 24 Stellenbosch
## 7793 92 99 Piedmont
## 7794 92 75 Wachau
## 7795 92 33 Wagram
## 7796 92 52 Niederösterreich
## 7797 92 50 California
## 7798 92 30 Washington
## 7799 92 60 Kamptal
## 7800 92 16 Kremstal
## 7801 92 70 Western Australia
## 7802 92 35 British Columbia
## 7803 92 24 Washington
## 7804 92 14 Washington
## 7805 87 NA Tuscany
## 7806 87 14 Beira Interior
## 7807 87 10 Washington
## 7808 87 25 California
## 7809 87 19 South Australia
## 7810 87 21 California
## 7811 87 15 Washington
## 7812 87 65 California
## 7813 87 35 Washington
## 7814 87 8 Central Spain
## 7815 87 12 California
## 7816 87 15 California
## 7817 87 11 Central Spain
## 7818 87 25 California
## 7819 87 14 South Australia
## 7820 87 25 California
## 7821 87 23 Loire Valley
## 7822 87 13 Washington
## 7823 87 15 South Australia
## 7824 87 11 Washington
## 7825 87 29 Northern Spain
## 7826 87 18 Washington
## 7827 87 10 California
## 7828 87 10 Idaho
## 7829 87 39 Tasmania
## 7830 87 21 South Australia
## 7831 87 NA Tuscany
## 7832 87 34 South Australia
## 7833 87 17 South Australia
## 7834 87 10 Catalonia
## 7835 87 25 Washington
## 7836 87 30 California
## 7837 87 30 California
## 7838 87 7 Levante
## 7839 87 24 South Australia
## 7840 87 15 Washington
## 7841 87 7 Washington
## 7842 87 8 Washington
## 7843 87 17 California
## 7844 87 14 Washington
## 7845 87 22 Washington
## 7846 87 7 Washington
## 7847 87 13 Galicia
## 7848 87 26 California
## 7849 87 13 California
## 7850 87 20 South Australia
## 7851 94 40 California
## 7852 94 48 Mendoza Province
## 7853 94 48 Mendoza Province
## 7854 94 58 California
## 7855 94 68 California
## 7856 94 85 Champagne
## 7857 94 75 Lombardy
## 7858 94 96 California
## 7859 94 150 Champagne
## 7860 94 286 Champagne
## 7861 94 65 Oregon
## 7862 94 67 Northeastern Italy
## 7863 94 60 California
## 7864 94 50 California
## 7865 94 30 Burgenland
## 7866 94 262 Champagne
## 7867 94 90 Mendoza Province
## 7868 94 90 Mendoza Province
## 7869 94 80 California
## 7870 94 65 Stellenbosch
## 7871 94 80 California
## 7872 94 65 Stellenbosch
## 7873 94 70 California
## 7874 94 48 California
## 7875 94 70 California
## 7876 94 140 Champagne
## 7877 94 145 California
## 7878 94 90 Lombardy
## 7879 94 60 Ontario
## 7880 94 58 California
## 7881 84 45 California
## 7882 84 NA Bordeaux
## 7883 84 25 California
## 7884 84 NA Tejo
## 7885 84 NA Tejo
## 7886 84 45 Casablanca Valley
## 7887 84 12 Casablanca Valley
## 7888 84 30 California
## 7889 84 20 Burgundy
## 7890 84 20 California
## 7891 84 18 Oregon
## 7892 84 13 Lombardy
## 7893 84 24 California
## 7894 84 45 Bairrada
## 7895 84 NA Southwest France
## 7896 84 42 California
## 7897 84 NA Alentejano
## 7898 84 13 Lombardy
## 7899 84 35 Bordeaux
## 7900 84 60 Southwest France
## 7901 84 12 Maule Valley
## 7902 84 39 California
## 7903 84 33 California
## 7904 84 18 Bordeaux
## 7905 84 36 Oregon
## 7906 84 17 California
## 7907 84 8 Vinho Verde
## 7908 84 26 California
## 7909 84 24 California
## 7910 84 45 California
## 7911 90 22 California
## 7912 90 39 California
## 7913 90 NA Piedmont
## 7914 90 30 Piedmont
## 7915 90 NA Sicily & Sardinia
## 7916 90 40 Piedmont
## 7917 90 20 South Australia
## 7918 90 16 Burgundy
## 7919 90 21 South Australia
## 7920 90 28 Oregon
## 7921 90 NA Vinho Verde
## 7922 90 30 Sicily & Sardinia
## 7923 90 40 California
## 7924 90 35 California
## 7925 90 34 Alentejano
## 7926 90 40 Alentejano
## 7927 90 45 Piedmont
## 7928 90 13 Mendoza Province
## 7929 90 70 Other
## 7930 90 18 California
## 7931 90 24 California
## 7932 90 13 Alentejano
## 7933 90 19 South Australia
## 7934 90 11 Thracian Valley
## 7935 90 65 Colorado
## 7936 90 NA Piedmont
## 7937 90 85 Piedmont
## 7938 90 26 Burgundy
## 7939 90 14 Danube River Plains
## 7940 90 60 Burgundy
## 7941 88 24 Washington
## 7942 88 13 South Australia
## 7943 88 20 Washington
## 7944 88 20 Central Italy
## 7945 88 25 Loire Valley
## 7946 88 35 California
## 7947 88 11 Washington
## 7948 88 22 Washington
## 7949 88 48 California
## 7950 88 28 California
## 7951 88 25 California
## 7952 88 30 South Australia
## 7953 88 28 Tuscany
## 7954 88 20 Colchagua Valley
## 7955 88 35 Central Italy
## 7956 88 60 Hawke's Bay
## 7957 88 35 Wachau
## 7958 86 14 New York
## 7959 86 75 California
## 7960 86 14 Virginia
## 7961 86 55 Central Otago
## 7962 86 7 Tuscany
## 7963 86 15 Tuscany
## 7964 86 40 Washington
## 7965 86 15 California
## 7966 86 15 Niederösterreich
## 7967 86 10 America
## 7968 86 22 Virginia
## 7969 86 21 California
## 7970 86 16 Central Italy
## 7971 86 20 Provence
## 7972 86 15 Virginia
## 7973 86 20 Provence
## 7974 86 8 California
## 7975 86 NA Burgundy
## 7976 86 18 Burgundy
## 7977 86 20 California
## 7978 86 13 New York
## 7979 86 18 Marlborough
## 7980 86 89 California
## 7981 86 52 California
## 7982 85 15 Virginia
## 7983 85 20 California
## 7984 85 15 Washington
## 7985 85 55 Tuscany
## 7986 85 30 Gisborne
## 7987 85 25 Tuscany
## 7988 87 33 Veneto
## 7989 87 10 Veneto
## 7990 87 NA Alentejano
## 7991 87 14 Provence
## 7992 87 25 California
## 7993 87 15 Douro
## 7994 87 19 Provence
## 7995 87 NA Obidos
## 7996 87 32 California
## 7997 87 34 California
## 7998 87 20 California
## 7999 87 19 California
## 8000 87 9 Mendoza Province
## 8001 87 50 California
## 8002 87 50 Rhône Valley
## 8003 87 25 Rhône Valley
## 8004 87 25 Rhône Valley
## 8005 87 10 Alentejano
## 8006 87 15 Veneto
## 8007 87 18 California
## 8008 87 20 Veneto
## 8009 87 40 California
## 8010 87 23 California
## 8011 87 13 Rhône Valley
## 8012 86 30 Champagne
## 8013 86 14 Bordeaux
## 8014 86 22 Bordeaux
## 8015 86 32 Lombardy
## 8016 86 25 California
## 8017 86 40 California
## 8018 86 17 California
## 8019 86 22 Mosel
## 8020 86 18 Burgundy
## 8021 86 8 Alentejano
## 8022 86 10 Alentejano
## 8023 86 38 California
## 8024 86 14 California
## 8025 86 10 California
## 8026 86 35 California
## 8027 86 28 California
## 8028 86 12 Tejo
## 8029 86 15 Douro
## 8030 86 39 Lombardy
## 8031 86 13 Oregon
## 8032 86 17 California
## 8033 86 14 California
## 8034 86 30 California
## 8035 86 8 California
## 8036 86 22 Washington
## 8037 86 28 Tuscany
## 8038 86 28 California
## 8039 86 12 Northern Spain
## 8040 86 25 Tuscany
## 8041 86 12 Colchagua Valley
## 8042 86 19 Cachapoal Valley
## 8043 86 18 Washington
## 8044 86 14 California
## 8045 86 40 Washington
## 8046 86 17 Beaujolais
## 8047 86 12 Casablanca Valley
## 8048 86 20 Beaujolais
## 8049 86 10 Catalonia
## 8050 86 14 Piedmont
## 8051 86 15 Rhône Valley
## 8052 86 29 Tuscany
## 8053 86 31 California
## 8054 86 18 California
## 8055 86 10 Southwest France
## 8056 86 17 Beaujolais
## 8057 86 15 Beaujolais
## 8058 86 15 Beaujolais
## 8059 86 25 California
## 8060 86 15 Tuscany
## 8061 86 25 Tuscany
## 8062 86 19 New York
## 8063 86 12 Washington
## 8064 86 30 New York
## 8065 91 NA Alsace
## 8066 91 15 Washington
## 8067 91 14 California
## 8068 91 34 California
## 8069 91 85 Maipo Valley
## 8070 91 60 New York
## 8071 91 NA Piedmont
## 8072 91 40 California
## 8073 91 71 Maule Valley
## 8074 91 26 Washington
## 8075 91 33 Alentejano
## 8076 91 28 Bordeaux
## 8077 91 20 Aconcagua Valley
## 8078 91 19 Colchagua Valley
## 8079 91 15 Bordeaux
## 8080 91 16 Bordeaux
## 8081 91 80 California
## 8082 91 60 Washington
## 8083 91 30 California
## 8084 91 49 California
## 8085 91 22 Douro
## 8086 91 35 Lisboa
## 8087 91 38 California
## 8088 91 64 California
## 8089 91 20 Lebanon
## 8090 91 20 Alentejano
## 8091 91 36 California
## 8092 91 30 California
## 8093 91 58 Bairrada
## 8094 91 40 California
## 8095 93 30 California
## 8096 93 25 Washington
## 8097 93 55 California
## 8098 93 25 Marlborough
## 8099 93 90 Burgundy
## 8100 93 90 Burgundy
## 8101 93 35 Marlborough
## 8102 93 35 California
## 8103 93 113 Burgundy
## 8104 93 117 Burgundy
## 8105 93 80 Burgundy
## 8106 93 55 California
## 8107 93 75 California
## 8108 93 79 Veneto
## 8109 93 65 California
## 8110 93 77 Veneto
## 8111 93 50 Mendoza Province
## 8112 93 65 California
## 8113 93 85 California
## 8114 93 92 Veneto
## 8115 93 275 Simonsberg-Stellenbosch
## 8116 93 40 California
## 8117 93 95 Washington
## 8118 93 38 California
## 8119 93 40 California
## 8120 93 105 Hawke's Bay
## 8121 93 70 Burgundy
## 8122 93 106 Burgundy
## 8123 93 59 Martinborough
## 8124 93 50 Washington
## 8125 88 75 California
## 8126 88 40 California
## 8127 88 NA Veneto
## 8128 88 25 Central Otago
## 8129 88 58 Champagne
## 8130 88 45 Washington
## 8131 88 12 Loire Valley
## 8132 88 60 Washington
## 8133 87 40 Oregon
## 8134 87 40 Champagne
## 8135 87 45 Northeastern Italy
## 8136 87 53 Champagne
## 8137 87 13 Mendoza Province
## 8138 87 18 Veneto
## 8139 87 43 California
## 8140 87 14 Catalonia
## 8141 87 20 Mendoza Province
## 8142 87 25 California
## 8143 87 27 Marlborough
## 8144 87 39 Oregon
## 8145 87 NA Veneto
## 8146 87 34 California
## 8147 87 17 Other
## 8148 87 20 British Columbia
## 8149 87 25 Wairarapa
## 8150 87 26 Marlborough
## 8151 87 45 California
## 8152 87 22 Alsace
## 8153 87 35 Champagne
## 8154 87 38 California
## 8155 87 15 Bordeaux
## 8156 87 30 Bordeaux
## 8157 87 12 Bordeaux
## 8158 87 15 San Antonio
## 8159 87 29 California
## 8160 87 25 Oregon
## 8161 87 13 Sicily & Sardinia
## 8162 87 10 Lisboa
## 8163 87 13 Vinho Verde
## 8164 87 23 Southern Italy
## 8165 87 13 Maipo Valley
## 8166 87 15 Colchagua Valley
## 8167 87 24 California
## 8168 87 12 Southern Italy
## 8169 87 12 California
## 8170 87 15 Washington
## 8171 87 14 Armenia
## 8172 87 12 Vinho Verde
## 8173 87 18 South Australia
## 8174 87 28 California
## 8175 87 30 Moldova
## 8176 87 21 Central Spain
## 8177 87 16 Australia Other
## 8178 87 22 Thracian Valley
## 8179 87 22 Thracian Valley
## 8180 87 44 California
## 8181 87 28 Washington
## 8182 87 45 Washington
## 8183 87 19 Oregon
## 8184 87 12 Washington
## 8185 92 95 Santa Cruz
## 8186 92 50 Wachau
## 8187 91 90 Aconcagua Valley
## 8188 91 80 Aconcagua Valley
## 8189 91 NA Bordeaux
## 8190 91 NA Champagne
## 8191 91 21 California
## 8192 91 36 California
## 8193 91 58 California
## 8194 91 19 Northeastern Italy
## 8195 91 47 Champagne
## 8196 91 36 California
## 8197 91 26 Marlborough
## 8198 91 NA Bordeaux
## 8199 91 23 Bordeaux
## 8200 91 28 California
## 8201 91 48 California
## 8202 91 35 California
## 8203 91 60 Wachau
## 8204 91 60 Wachau
## 8205 91 35 Bordeaux
## 8206 91 NA Bordeaux
## 8207 91 25 Bordeaux
## 8208 91 19 Loire Valley
## 8209 92 34 California
## 8210 92 25 Alentejano
## 8211 92 75 California
## 8212 92 48 California
## 8213 92 55 Oregon
## 8214 92 57 Mosel
## 8215 92 71 Rheinhessen
## 8216 92 NA Burgundy
## 8217 92 NA Burgundy
## 8218 92 NA Burgundy
## 8219 92 40 Tuscany
## 8220 92 55 California
## 8221 92 24 Oregon
## 8222 92 NA Burgundy
## 8223 92 22 California
## 8224 92 18 Lisboa
## 8225 92 50 California
## 8226 92 37 California
## 8227 92 40 Lombardy
## 8228 92 275 Champagne
## 8229 92 90 California
## 8230 92 42 California
## 8231 92 70 Ontario
## 8232 92 NA Champagne
## 8233 92 75 Oregon
## 8234 92 75 Maipo Valley
## 8235 92 77 Ontario
## 8236 92 135 California
## 8237 92 NA Champagne
## 8238 92 70 Veneto
## 8239 89 18 Peumo
## 8240 89 45 New York
## 8241 89 20 Coastal Region
## 8242 89 20 Western Cape
## 8243 89 16 New York
## 8244 89 19 Simonsberg-Stellenbosch
## 8245 89 NA Burgenland
## 8246 89 24 California
## 8247 89 25 Washington
## 8248 89 32 Alsace
## 8249 89 35 Provence
## 8250 89 12 Central Italy
## 8251 89 30 California
## 8252 89 12 Washington
## 8253 89 45 California
## 8254 89 24 California
## 8255 89 24 Washington
## 8256 89 16 Central Italy
## 8257 89 22 Central Italy
## 8258 89 20 Colchagua Valley
## 8259 89 NA Burgenland
## 8260 89 25 California
## 8261 89 38 New York
## 8262 89 18 New York
## 8263 89 13 Burgenland
## 8264 89 24 New York
## 8265 89 48 Alsace
## 8266 89 25 Provence
## 8267 89 17 Central Italy
## 8268 89 35 California
## 8269 88 17 California
## 8270 88 17 Piedmont
## 8271 88 NA Burgundy
## 8272 88 80 Burgundy
## 8273 88 20 California
## 8274 88 12 Maipo Valley
## 8275 88 45 Burgundy
## 8276 88 24 Korčula
## 8277 88 11 Limarí Valley
## 8278 88 45 California
## 8279 88 75 Burgundy
## 8280 88 13 Crete
## 8281 88 NA Piedmont
## 8282 88 40 California
## 8283 88 18 California
## 8284 88 NA Piedmont
## 8285 88 26 California
## 8286 88 20 California
## 8287 88 NA Piedmont
## 8288 88 38 California
## 8289 92 76 California
## 8290 92 40 California
## 8291 92 91 Rhône Valley
## 8292 92 35 Hawke's Bay
## 8293 92 45 Kremstal
## 8294 92 79 Central Otago
## 8295 92 49 California
## 8296 92 100 California
## 8297 92 29 Kamptal
## 8298 92 35 California
## 8299 92 18 California
## 8300 92 54 California
## 8301 92 28 Kamptal
## 8302 92 47 Niederösterreich
## 8303 92 65 California
## 8304 92 49 Wachau
## 8305 92 50 Wachau
## 8306 92 20 Rhône Valley
## 8307 92 58 Tuscany
## 8308 92 37 California
## 8309 92 36 Washington
## 8310 92 34 Weinviertel
## 8311 92 25 California
## 8312 92 45 Kremstal
## 8313 92 115 California
## 8314 92 25 Kamptal
## 8315 92 160 Tuscany
## 8316 92 22 California
## 8317 92 41 California
## 8318 92 48 California
## 8319 87 NA Carnuntum
## 8320 87 28 California
## 8321 87 20 Washington
## 8322 87 18 Washington
## 8323 87 32 California
## 8324 87 32 Washington
## 8325 87 24 Washington
## 8326 87 16 Washington
## 8327 87 16 Washington
## 8328 87 18 Alsace
## 8329 87 13 Cachapoal Valley
## 8330 87 48 California
## 8331 87 38 California
## 8332 87 22 Washington
## 8333 87 22 Central Italy
## region_1 region_2
## 1 Etna
## 2
## 3 Willamette Valley Willamette Valley
## 4 Lake Michigan Shore
## 5 Willamette Valley Willamette Valley
## 6 Navarra
## 7 Vittoria
## 8 Alsace
## 9
## 10 Alsace
## 11 Napa Valley Napa
## 12 Alsace
## 13 Alexander Valley Sonoma
## 14 Etna
## 15 Central Coast Central Coast
## 16
## 17 Cafayate
## 18 Mendoza
## 19 Ribera del Duero
## 20 Virginia
## 21 Virginia
## 22 Oregon Oregon Other
## 23 Sicilia
## 24 Paso Robles Central Coast
## 25 Sicilia
## 26 Sonoma Coast Sonoma
## 27 Terre Siciliane
## 28 Terre Siciliane
## 29 Cerasuolo di Vittoria
## 30 Clarksburg Central Valley
## 31 Beaujolais-Villages
## 32 Sicilia
## 33 Sicilia
## 34 Dry Creek Valley Sonoma
## 35 Sonoma Valley Sonoma
## 36 McMinnville Willamette Valley
## 37
## 38 Sicilia
## 39 Puglia
## 40 Sicilia
## 41 Sicilia
## 42 Willamette Valley Willamette Valley
## 43 Beaujolais
## 44 Paso Robles Central Coast
## 45
## 46 Virginia
## 47 Sicilia
## 48 Lake County
## 49 Monticello
## 50 Brouilly
## 51 Sicilia
## 52
## 53 Monica di Sardegna
## 54 Bordeaux Blanc
## 55 Sicilia
## 56 Napa Valley Napa
## 57 North Coast North Coast
## 58 Sicilia
## 59
## 60 Columbia Valley (WA) Columbia Valley
## 61 Napa Valley Napa
## 62 Romagna
## 63 Columbia Valley (WA) Columbia Valley
## 64 Champagne
## 65 Santa Ynez Valley Central Coast
## 66 Chablis
## 67 Mâcon-Milly Lamartine
## 68 Columbia Valley (WA) Columbia Valley
## 69 California California Other
## 70 Champagne
## 71 Columbia Valley (WA) Columbia Valley
## 72 Alexander Valley Sonoma
## 73 Aglianico del Vulture
## 74 Howell Mountain Napa
## 75 Calistoga Napa
## 76 Napa Valley Napa
## 77
## 78 South Australia
## 79 Eola-Amity Hills Willamette Valley
## 80
## 81
## 82 Rías Baixas
## 83 Vin de France
## 84 McLaren Vale
## 85 Napa Valley Napa
## 86
## 87 Ancient Lakes Columbia Valley
## 88 Knights Valley Sonoma
## 89 Vernaccia di San Gimignano
## 90 Toscana
## 91 Sonoma County Sonoma
## 92 Sonoma Coast Sonoma
## 93 Napa Valley Napa
## 94
## 95 Columbia Valley (WA) Columbia Valley
## 96 Juliénas
## 97 Régnié
## 98 Finger Lakes Finger Lakes
## 99 Morellino di Scansano
## 100 Napa Valley Napa
## 101 Finger Lakes Finger Lakes
## 102 Finger Lakes Finger Lakes
## 103 Finger Lakes Finger Lakes
## 104
## 105 Toscana
## 106 Toscana
## 107 Toscana
## 108 Toscana
## 109 Santa Clara Valley Central Coast
## 110 Toscana
## 111 Brouilly
## 112 Yountville Napa
## 113 Toscana
## 114 Toscana
## 115 Paso Robles Central Coast
## 116 Paso Robles Central Coast
## 117 Santa Ynez Valley Central Coast
## 118 Central Coast
## 119 Toscana
## 120 Alsace
## 121 Barolo
## 122 Alexander Valley Sonoma
## 123 Rockpile Sonoma
## 124 Padthaway
## 125 Napa Valley Napa
## 126
## 127 Alsace
## 128 Alsace
## 129 Alsace
## 130
## 131 Barolo
## 132 Alsace
## 133
## 134 Barolo
## 135 Napa Valley Napa
## 136 Barolo
## 137 Saint-Émilion
## 138
## 139 Alsace
## 140 Alsace
## 141 Barbera d'Alba
## 142 Barolo
## 143 Santa Lucia Highlands Central Coast
## 144 Alsace
## 145 Spring Mountain District Napa
## 146 Santa Lucia Highlands Central Coast
## 147 Santa Ynez Valley Central Coast
## 148 Santa Ynez Valley Central Coast
## 149
## 150 Monterey Central Coast
## 151 Napa Valley Napa
## 152
## 153 Carmel Valley Central Coast
## 154 Paso Robles Central Coast
## 155 Dominio de Valdepusa
## 156 Santa Cruz Mountains Central Coast
## 157
## 158
## 159 Chianti Classico
## 160 Brunello di Montalcino
## 161 Cahors
## 162 Paso Robles Central Coast
## 163 Edna Valley Central Coast
## 164 Moulin-à-Vent
## 165
## 166
## 167 Madiran
## 168 Paso Robles Central Coast
## 169 Napa Valley Napa
## 170 Russian River Valley Sonoma
## 171
## 172
## 173
## 174 Willamette Valley Willamette Valley
## 175
## 176 Alto Adige
## 177
## 178 Chianti Classico
## 179 Sonoma Valley Sonoma
## 180 Chablis
## 181 Santa Lucia Highlands Central Coast
## 182 Arroyo Seco Central Coast
## 183 Brunello di Montalcino
## 184 Salta
## 185 Sonoma Coast Sonoma
## 186
## 187 Anderson Valley
## 188 Sicilia
## 189
## 190
## 191 Campania
## 192 Padthaway
## 193 Rosso del Veronese
## 194 St.-Romain
## 195 Chianti Classico
## 196 Vino Nobile di Montepulciano
## 197 Vernaccia di San Gimignano
## 198
## 199 Napa Valley Napa
## 200 Nevada County Sierra Foothills
## 201 Brunello di Montalcino
## 202 Alto Adige
## 203
## 204
## 205 Paso Robles Central Coast
## 206 Arroyo Seco Central Coast
## 207 Napa Valley Napa
## 208 Dry Creek Valley Sonoma
## 209
## 210 Côtes du Rhône
## 211
## 212 Vacqueyras
## 213 Rueda
## 214 Paso Robles Central Coast
## 215 Dry Creek Valley Sonoma
## 216
## 217 Brunello di Montalcino
## 218
## 219 Napa Valley Napa
## 220
## 221 Sonoma Coast Sonoma
## 222 Alto Adige
## 223 Brunello di Montalcino
## 224 Alto Adige
## 225 Luján de Cuyo
## 226
## 227
## 228 Finger Lakes Finger Lakes
## 229 Cayuga Lake Finger Lakes
## 230 Napa Valley Napa
## 231 Finger Lakes Finger Lakes
## 232 Mendoza
## 233 South Australia
## 234 Willamette Valley Willamette Valley
## 235 Montepulciano d'Abruzzo
## 236 Santa Barbara County Central Coast
## 237 Diamond Mountain District Napa
## 238 San Marino
## 239 McLaren Vale
## 240 Mendocino
## 241 Vin de Pays des Côtes de Gascogne
## 242 Napa Valley Napa
## 243 Russian River Valley Sonoma
## 244 Finger Lakes Finger Lakes
## 245 Vino de la Tierra de Castilla y León
## 246 San Juan
## 247 Adelaide Hills
## 248 Sonoma Mountain Sonoma
## 249 Willamette Valley Willamette Valley
## 250 Monticello
## 251 Alexander Valley Sonoma
## 252 Willamette Valley Willamette Valley
## 253 Amador County Sierra Foothills
## 254 Luján de Cuyo
## 255 St. Helena Napa
## 256 Cole Ranch
## 257
## 258
## 259
## 260 Cahors
## 261 Willamette Valley Willamette Valley
## 262
## 263 Napa Valley Napa
## 264 Santa Maria Valley Central Coast
## 265
## 266
## 267 Mendoza
## 268 Torgiano
## 269 Veneto
## 270
## 271 Colli Orientali del Friuli
## 272
## 273 Alto Adige
## 274 Uco Valley
## 275 Monferrato
## 276 Mendoza
## 277 Sonoma County Sonoma
## 278 Napa Valley Napa
## 279 Willamette Valley
## 280 Alto Adige
## 281
## 282 Santa Maria Valley Central Coast
## 283 Toscana
## 284 Dundee Hills Willamette Valley
## 285 Perdriel
## 286
## 287 Arroyo Grande Valley Central Coast
## 288 Montsant
## 289
## 290 Napa Valley Napa
## 291 Saint-Estèphe
## 292 Sagrantino di Montefalco
## 293 Arbois
## 294 Barossa Valley
## 295 Tupungato
## 296 Paso Robles Central Coast
## 297
## 298 Napa Valley Napa
## 299
## 300 Langhe
## 301 Napa Valley Napa
## 302 Columbia Valley (WA) Columbia Valley
## 303 Roero
## 304 Barolo
## 305 Barbera d'Asti Superiore Nizza
## 306 Mendocino County
## 307
## 308 Côte de Nuits-Villages
## 309
## 310 Langhe
## 311 Langhe
## 312
## 313 Napa Valley Napa
## 314 Roero
## 315 Napa Valley Napa
## 316 Prosecco di Valdobbiadene
## 317 Bordeaux Blanc
## 318 Bordeaux Blanc
## 319
## 320 Veneto
## 321 Prosecco di Valdobbiadene
## 322 Prosecco di Valdobbiadene
## 323 Prosecco di Valdobbiadene
## 324
## 325 Prosecco di Conegliano
## 326 Finger Lakes Finger Lakes
## 327 Prosecco di Valdobbiadene
## 328
## 329 Knights Valley Sonoma
## 330 Mendocino
## 331 Central Coast Central Coast
## 332
## 333 Prosecco di Conegliano
## 334 Prosecco di Valdobbiadene
## 335 Champagne
## 336 Prosecco di Conegliano
## 337
## 338 Languedoc
## 339 Coteaux Varois en Provence
## 340 Cava
## 341 Alsace
## 342 Dry Creek Valley Sonoma
## 343 Cava
## 344
## 345
## 346 Rutherglen
## 347 Rutherglen
## 348
## 349 Rutherglen
## 350 Barossa
## 351 Barolo
## 352
## 353 Russian River Valley Sonoma
## 354 Montrachet
## 355
## 356 Russian River Valley Sonoma
## 357 Heathcote
## 358 Clos de Vougeot
## 359
## 360 Chassagne-Montrachet
## 361 Barossa Valley
## 362 Barolo
## 363 Diamond Mountain District Napa
## 364 Criots-Bâtard-Montrachet
## 365 Dundee Hills Willamette Valley
## 366 Clare Valley
## 367 Alto Adige
## 368
## 369 Bianco di Custoza
## 370 Friuli
## 371 Sonoma Valley Sonoma
## 372 Alto Adige
## 373 Soave
## 374 Collio
## 375 Mendocino County
## 376 Toscana
## 377 Colli Orientali del Friuli
## 378
## 379
## 380 Trentino
## 381
## 382 Bianco di Custoza
## 383
## 384 Valdadige
## 385 Alto Adige
## 386 Rutherford Napa
## 387 Russian River Valley Sonoma
## 388 Alexander Valley Sonoma
## 389 Edna Valley Central Coast
## 390 Alto Adige
## 391
## 392
## 393 Santa Ynez Valley Central Coast
## 394
## 395
## 396 Collio
## 397 California California Other
## 398
## 399
## 400 Prosecco di Valdobbiadene
## 401 Italy
## 402 Prosecco di Valdobbiadene
## 403
## 404 California California Other
## 405 Santa Barbara County Central Coast
## 406 Prosecco del Veneto
## 407 Champagne
## 408
## 409 Prosecco di Conegliano e Valdobbiadene
## 410 Finger Lakes Finger Lakes
## 411 Finger Lakes Finger Lakes
## 412 California California Other
## 413 Prosecco di Valdobbiadene
## 414 Prosecco del Veneto
## 415 Prosecco del Veneto
## 416 Finger Lakes Finger Lakes
## 417 Prosecco del Veneto
## 418 Prosecco del Veneto
## 419
## 420 Graves
## 421 Bordeaux Blanc
## 422 Columbia Valley (WA) Columbia Valley
## 423 Walla Walla Valley (WA) Columbia Valley
## 424
## 425 California California Other
## 426 New York New York Other
## 427 Rioja
## 428 North Fork of Long Island Long Island
## 429
## 430 Wahluke Slope Columbia Valley
## 431 Santa Ynez Valley Central Coast
## 432 Templeton Gap District Central Coast
## 433 Snipes Mountain Columbia Valley
## 434 Santa Barbara County Central Coast
## 435 Barolo
## 436
## 437 Gavi
## 438 Alexander Valley Sonoma
## 439 Bierzo
## 440 Vino de la Tierra de Castilla y León
## 441 Walla Walla Valley (WA) Columbia Valley
## 442
## 443 Long Island Long Island
## 444 Sonoma Valley Sonoma
## 445
## 446 Etna
## 447 Paso Robles Central Coast
## 448 Muscadet Sèvre et Maine
## 449 Côtes du Rhône
## 450 Franciacorta
## 451 Champagne
## 452 Vino Nobile di Montepulciano
## 453 Meursault
## 454 Champagne
## 455 Niagara-On-The-Lake
## 456 Carneros Napa-Sonoma
## 457 Anderson Valley
## 458 Santa Maria Valley Central Coast
## 459 Franciacorta
## 460 Champagne
## 461 Ribbon Ridge Willamette Valley
## 462 Dundee Hills Willamette Valley
## 463 Meursault
## 464 Champagne
## 465
## 466 Amarone della Valpolicella
## 467 Champagne
## 468 Willamette Valley Willamette Valley
## 469
## 470
## 471 Champagne
## 472 Chambolle-Musigny
## 473 Chambolle-Musigny
## 474
## 475 Champagne
## 476 Rutherford Napa
## 477 Napa Valley Napa
## 478 Pomerol
## 479 Champagne
## 480 Cannonau di Sardegna
## 481 Red Mountain Columbia Valley
## 482 Isola dei Nuraghi
## 483 Sta. Rita Hills Central Coast
## 484
## 485
## 486 Côtes du Rhône Villages
## 487 Sonoma County Sonoma
## 488 Colli Orientali del Friuli
## 489 Friuli Grave
## 490 Friuli Grave
## 491 Cava
## 492
## 493 Walla Walla Valley (WA) Columbia Valley
## 494 Red Mountain Columbia Valley
## 495 Finger Lakes Finger Lakes
## 496 El Dorado Sierra Foothills
## 497 Rueda
## 498 Suisun Valley North Coast
## 499 Carneros Napa-Sonoma
## 500 Côtes de Provence
## 501 Rioja
## 502 Lodi Central Valley
## 503
## 504 Russian River Valley Sonoma
## 505 Côtes du Rhône
## 506 Vino de la Tierra de Castilla y León
## 507 Venezia Giulia
## 508 Wahluke Slope Columbia Valley
## 509 Yakima Valley Columbia Valley
## 510 Napa Valley Napa
## 511 Monterey County Central Coast
## 512 Champagne
## 513 Champagne
## 514 Chiles Valley Napa
## 515
## 516 Sonoma Coast Sonoma
## 517 Russian River Valley Sonoma
## 518 Russian River Valley Sonoma
## 519 Mercurey
## 520 Calaveras County Sierra Foothills
## 521 Edna Valley Central Coast
## 522 Edna Valley Central Coast
## 523 Willamette Valley Willamette Valley
## 524 Chehalem Mountains Willamette Valley
## 525 Horse Heaven Hills Columbia Valley
## 526 Arroyo Grande Valley Central Coast
## 527 Dundee Hills Willamette Valley
## 528
## 529 Champagne
## 530 Russian River Valley Sonoma
## 531
## 532 Oregon Oregon Other
## 533 Willamette Valley Willamette Valley
## 534 Willamette Valley Willamette Valley
## 535 Paso Robles Central Coast
## 536
## 537 Walla Walla Valley (WA) Columbia Valley
## 538 Napa Valley Napa
## 539 Umpqua Valley Southern Oregon
## 540 Edna Valley Central Coast
## 541 Santa Maria Valley Central Coast
## 542 Santa Maria Valley Central Coast
## 543 Alto Adige Valle Isarco
## 544 Napa Valley Napa
## 545 Templeton Gap District Central Coast
## 546 Napa Valley Napa
## 547 Sonoma Coast Sonoma
## 548 Ballard Canyon Central Coast
## 549 Green Valley Sonoma
## 550 Barolo
## 551 Carneros Napa-Sonoma
## 552 Sonoma Valley Sonoma
## 553 Coteaux d'Aix-en-Provence
## 554 Mendoza
## 555 Côtes de Provence Sainte-Victoire
## 556 Horse Heaven Hills Columbia Valley
## 557 Ribera del Duero
## 558 Santa Maria Valley Central Coast
## 559 Sierra Foothills Sierra Foothills
## 560 Russian River Valley Sonoma
## 561 Russian River Valley Sonoma
## 562 Sonoma Coast Sonoma
## 563 Napa Valley Napa
## 564 Sta. Rita Hills Central Coast
## 565 Paso Robles Central Coast
## 566 Central Coast Central Coast
## 567 Napa Valley Napa
## 568 Mendoza
## 569 Howell Mountain Napa
## 570 Columbia Valley (WA) Columbia Valley
## 571 Yakima Valley Columbia Valley
## 572 Yolo County Central Valley
## 573 Dolcetto d'Alba
## 574 Bordeaux Supérieur
## 575 Costières de Nîmes
## 576 Bordeaux Supérieur
## 577 Saint-Émilion
## 578 Finger Lakes Finger Lakes
## 579 Bordeaux
## 580 California California Other
## 581 Washington Washington Other
## 582 Columbia Gorge (WA) Washington Other
## 583 Wahluke Slope Columbia Valley
## 584 Santa Cruz Mountains Central Coast
## 585
## 586 Yakima Valley Columbia Valley
## 587
## 588
## 589 North Coast
## 590
## 591 Paso Robles Central Coast
## 592
## 593 Walla Walla Valley (WA) Columbia Valley
## 594
## 595
## 596 Columbia Valley (WA) Columbia Valley
## 597
## 598
## 599 Paso Robles Central Coast
## 600 Alexander Valley Sonoma
## 601 Gavi
## 602
## 603 Oak Knoll District Napa
## 604 North Fork of Long Island Long Island
## 605 Navarra
## 606 Mendoza
## 607 Rogue Valley Southern Oregon
## 608 Rogue Valley Southern Oregon
## 609
## 610 Chehalem Mountains Willamette Valley
## 611 Northern Sonoma Sonoma
## 612 Carneros Napa-Sonoma
## 613 Paso Robles Central Coast
## 614
## 615 Soave Classico
## 616 Mendoza
## 617 Russian River Valley Sonoma
## 618 Conegliano Valdobbiadene Prosecco Superiore
## 619 Calistoga Napa
## 620 Piedmont
## 621 Conegliano Valdobbiadene Prosecco Superiore
## 622 Edna Valley Central Coast
## 623
## 624
## 625 Idaho
## 626 Soave
## 627 Gambellara Classico
## 628 Monferrato
## 629 McLaren Vale
## 630 Russian River Valley Sonoma
## 631 Willamette Valley
## 632 Alsace
## 633 Alsace
## 634 Yarra Valley
## 635 Dry Creek Valley Sonoma
## 636 Rioja
## 637 Barossa Valley
## 638 Alsace
## 639 Alsace
## 640 Alsace
## 641 Santa Maria Valley Central Coast
## 642 California California Other
## 643
## 644 Sonoma Coast Sonoma
## 645 Paso Robles Central Coast
## 646 Willamette Valley Willamette Valley
## 647
## 648
## 649
## 650 Napa Valley Napa
## 651 Collio
## 652 Alsace
## 653 Great Southern
## 654 Arroyo Seco Central Coast
## 655 Alsace
## 656 Mokelumne River Central Valley
## 657 Dundee Hills Willamette Valley
## 658
## 659 Los Carneros Napa-Sonoma
## 660 Walla Walla Valley (WA) Columbia Valley
## 661 Mount Veeder Napa
## 662 Mendocino
## 663 Barolo
## 664 Rockpile Sonoma
## 665 Dogliani Superiore
## 666 Barbera d'Alba
## 667 Columbia Valley (WA) Columbia Valley
## 668 Valencia
## 669 North Fork of Long Island Long Island
## 670 Walla Walla Valley (WA) Columbia Valley
## 671 Columbia Valley (WA) Columbia Valley
## 672 Napa Valley Napa
## 673 Long Island Long Island
## 674 Anderson Valley
## 675 Carneros Napa-Sonoma
## 676 Carneros Napa-Sonoma
## 677 Yakima Valley Columbia Valley
## 678 Cortona
## 679 Cortona
## 680 Columbia Valley (WA) Columbia Valley
## 681 Rioja
## 682 Columbia Valley (WA) Columbia Valley
## 683 Piemonte
## 684 Colli della Toscana Centrale
## 685 Horse Heaven Hills Columbia Valley
## 686 Sonoma Coast Sonoma
## 687 Barolo
## 688 Santa Cruz Mountains Central Coast
## 689 Red Mountain Columbia Valley
## 690 Santa Barbara County Central Coast
## 691
## 692 Livermore Valley Central Coast
## 693 Morellino di Scansano
## 694 Sonoma County Sonoma
## 695
## 696 Chianti Classico
## 697
## 698
## 699 Columbia Valley (WA) Columbia Valley
## 700
## 701 Mendoza
## 702 Côtes de Provence
## 703 Côtes de Provence
## 704 Côtes de Provence
## 705 Coteaux d'Aix-en-Provence
## 706
## 707 Côtes de Provence
## 708 Côtes de Provence
## 709 Côtes de Provence
## 710 Dry Creek Valley Sonoma
## 711
## 712 Russian River Valley Sonoma
## 713 Russian River Valley Sonoma
## 714 Russian River Valley Sonoma
## 715
## 716 Valle de Uco
## 717
## 718 Côtes de Provence
## 719
## 720 Mâcon-Villages
## 721
## 722 Tupungato
## 723 Mendoza
## 724
## 725 Texas
## 726 Barolo
## 727
## 728 Oregon Oregon Other
## 729 Salta
## 730
## 731 California California Other
## 732 Vin de France
## 733 Côte Chalonnaise
## 734 Chorey-lès-Beaune
## 735 Mendoza
## 736 Calchaquí Valley
## 737 Paso Robles Central Coast
## 738
## 739 Luján de Cuyo
## 740 Barolo
## 741 Texas
## 742 Coteaux Bourguignons
## 743 Saint-Véran
## 744 Dry Creek Valley Sonoma
## 745 Barbaresco
## 746
## 747 South Eastern Australia
## 748 Sonoma Coast Sonoma
## 749 Finger Lakes Finger Lakes
## 750 Alsace
## 751 Sonoma Coast Sonoma
## 752
## 753 Alsace
## 754 Edna Valley Central Coast
## 755 Rioja
## 756 Anderson Valley
## 757 Napa Valley Napa
## 758 Santa Maria Valley Central Coast
## 759 Sonoma Coast Sonoma
## 760 Temecula Valley South Coast
## 761 Dry Creek Valley Sonoma
## 762
## 763 Rueda
## 764 Rueda
## 765 North Coast North Coast
## 766 Napa Valley Napa
## 767 Tasmania
## 768 Cariñena
## 769 South Eastern Australia
## 770 Aglianico del Vulture
## 771 Champagne
## 772 Green Valley Sonoma
## 773 Champagne
## 774
## 775 Willamette Valley Willamette Valley
## 776 Willamette Valley Willamette Valley
## 777 Champagne
## 778 Colli Orientali del Friuli
## 779 Dundee Hills Willamette Valley
## 780 Champagne
## 781 Vin Santo del Chianti Classico
## 782 Trento
## 783 Arroyo Grande Valley Central Coast
## 784 Alexander Valley Sonoma
## 785
## 786 Salta
## 787
## 788 Rutherford Napa
## 789 Perdriel
## 790
## 791 Columbia Valley (WA) Columbia Valley
## 792 Chehalem Mountains Willamette Valley
## 793 Médoc
## 794 Yakima Valley Columbia Valley
## 795 Santa Ynez Valley Central Coast
## 796 Saint-Émilion
## 797 Haut-Médoc
## 798 Médoc
## 799 Fronsac
## 800 Margaux
## 801 Santa Ynez Valley Central Coast
## 802 Sonoma Valley Sonoma
## 803 Juliénas
## 804 Red Mountain Columbia Valley
## 805 Ancient Lakes Columbia Valley
## 806 Oregon Oregon Other
## 807 Sierra Foothills Sierra Foothills
## 808 Mornington Peninsula
## 809 Verdicchio dei Castelli di Jesi Classico
## 810 Vino de la Tierra de Castilla
## 811 Rutherford Napa
## 812
## 813 Mendocino Ridge
## 814 Barossa Valley
## 815 Rosso di Montalcino
## 816 Wahluke Slope Columbia Valley
## 817 Finger Lakes Finger Lakes
## 818
## 819 Beaujolais-Villages
## 820 Côtes de Gascogne
## 821 Rioja
## 822 Cava
## 823 Rosso di Montalcino
## 824 Paso Robles Central Coast
## 825 California California Other
## 826 Brunello di Montalcino
## 827 Rosso di Montalcino
## 828
## 829 Côtes du Lot
## 830 Columbia Valley (WA) Columbia Valley
## 831 Beaujolais-Villages
## 832 Moulin-à-Vent
## 833 Beaujolais
## 834 Nebbiolo d'Alba
## 835
## 836 Beaujolais
## 837 Cava
## 838 Cava
## 839 Walla Walla Valley (WA) Columbia Valley
## 840 Finger Lakes Finger Lakes
## 841 Beaujolais Rosé
## 842 California California Other
## 843 Beaujolais-Villages
## 844 Columbia Valley (WA) Columbia Valley
## 845 Etna
## 846 Terre Siciliane
## 847 Alsace
## 848 Alsace
## 849 Marsannay
## 850 Gevrey-Chambertin
## 851 Beaune
## 852 Marsannay
## 853 Alsace
## 854
## 855 Amador County Sierra Foothills
## 856 Edna Valley Central Coast
## 857 Sannio
## 858 Santa Barbara County Central Coast
## 859 Oregon Oregon Other
## 860 Spring Mountain District Napa
## 861 Temecula Valley South Coast
## 862 Etna
## 863 Etna
## 864 Sta. Rita Hills Central Coast
## 865
## 866 Sicilia
## 867 McLaren Vale
## 868 Chehalem Mountains Willamette Valley
## 869
## 870 Ballard Canyon Central Coast
## 871 Mendocino Ridge
## 872 Napa Valley Napa
## 873 Oregon Oregon Other
## 874
## 875
## 876
## 877 Priorat
## 878 Bolgheri Superiore
## 879 Saint-Estèphe
## 880 Margaux
## 881 Los Carneros Napa-Sonoma
## 882 Priorat
## 883 Napa Valley Napa
## 884 Bolgheri Superiore
## 885 Russian River Valley Sonoma
## 886 Dry Creek Valley Sonoma
## 887 Minervois
## 888
## 889 Yakima Valley Columbia Valley
## 890 Sta. Rita Hills Central Coast
## 891 Napa Valley Napa
## 892 Santa Maria Valley Central Coast
## 893 Columbia Valley (WA) Columbia Valley
## 894 South Eastern Australia
## 895 Morellino di Scansano
## 896 Toscana
## 897 Temecula Valley South Coast
## 898 Columbia Valley (WA) Columbia Valley
## 899 Toscana
## 900 Chianti Classico
## 901 Priorat
## 902
## 903 Texas High Plains
## 904
## 905 Barbaresco
## 906 Texas
## 907 Texas High Plains
## 908
## 909 Barbaresco
## 910 Barbaresco
## 911 Vista Flores
## 912 Vin de France
## 913 Willamette Valley Willamette Valley
## 914
## 915 San Juan
## 916 Willamette Valley Willamette Valley
## 917 Willamette Valley Willamette Valley
## 918 Barolo
## 919 Barolo
## 920 Tupungato
## 921 Australia
## 922
## 923 Tupungato
## 924
## 925 Adelaide Hills
## 926 Shenandoah Valley (CA) Sierra Foothills
## 927 Tupungato
## 928
## 929 Barbaresco
## 930 Amador County Sierra Foothills
## 931 Mendoza
## 932 Barolo
## 933 Blaye Côtes de Bordeaux
## 934 Bordeaux Supérieur
## 935 Bordeaux
## 936 Blaye Côtes de Bordeaux
## 937 Willamette Valley Willamette Valley
## 938 Dundee Hills Willamette Valley
## 939 Rioja
## 940 Livermore Valley Central Coast
## 941 Champagne
## 942 Jumilla
## 943 Russian River Valley Sonoma
## 944 Rioja
## 945 Rogue Valley Southern Oregon
## 946 Sonoma County Sonoma
## 947 Rutherford Napa
## 948
## 949
## 950 Coste della Sesia
## 951 Los Carneros Napa-Sonoma
## 952 Yorkville Highlands North Coast
## 953 Penedès
## 954 Willamette Valley Willamette Valley
## 955 Lodi Central Valley
## 956 Barolo
## 957 Greco di Tufo
## 958 Russian River Valley Sonoma
## 959 Cariñena
## 960 Champagne
## 961 Blaye Côtes de Bordeaux
## 962 Bordeaux Supérieur
## 963 Champagne
## 964 Graves
## 965 Lugana
## 966 Primitivo di Manduria
## 967
## 968
## 969 Bardolino Classico
## 970
## 971 California California Other
## 972 Champagne
## 973 Clarksburg Central Valley
## 974 Alexander Valley Sonoma
## 975 Walla Walla Valley (WA) Columbia Valley
## 976 Sicilia
## 977 California California Other
## 978 Suisun Valley North Coast
## 979 North Coast North Coast
## 980 Bordeaux Blanc
## 981 Amarone della Valpolicella Classico
## 982 Bordeaux Blanc
## 983 Piave
## 984 Anderson Valley
## 985
## 986 Mendoza
## 987
## 988 Barossa Valley
## 989 Oregon Oregon Other
## 990 Vino de la Tierra de Castilla y León
## 991 California California Other
## 992 Vin de Pays des Côtes de Gascogne
## 993 Gaillac
## 994 Vin de Pays des Côtes de Gascogne
## 995 Sancerre
## 996 Sicilia
## 997 Sicilia
## 998 Barossa
## 999 Dundee Hills Willamette Valley
## 1000 Willamette Valley Willamette Valley
## 1001 Rogue Valley Southern Oregon
## 1002 Etna
## 1003 Willamette Valley Willamette Valley
## 1004 Montravel
## 1005 Montravel
## 1006 Quincy
## 1007 Eola-Amity Hills Willamette Valley
## 1008 Pouilly-Fumé
## 1009 Coonawarra
## 1010
## 1011 Dundee Hills Willamette Valley
## 1012 Finger Lakes Finger Lakes
## 1013 Etna
## 1014 Sicilia
## 1015 Paso Robles Central Coast
## 1016 Temecula Valley South Coast
## 1017 Sicilia
## 1018 Sicilia
## 1019 Alsace
## 1020 Napa Valley Napa
## 1021 Willamette Valley Willamette Valley
## 1022 Mendoza
## 1023 Sicilia
## 1024
## 1025 Alsace
## 1026 Happy Canyon of Santa Barbara Central Coast
## 1027 Oregon Oregon Other
## 1028 Rogue Valley Southern Oregon
## 1029 Valdeorras
## 1030 Bizkaiko Txakolina
## 1031 Carneros Napa-Sonoma
## 1032 Ribera del Duero
## 1033
## 1034 Arroyo Seco Central Coast
## 1035 Alsace
## 1036 Terre Siciliane
## 1037 Etna
## 1038 Walla Walla Valley (OR) Oregon Other
## 1039
## 1040 Rías Baixas
## 1041 Mendoza
## 1042
## 1043 Rioja
## 1044
## 1045 Isonzo del Friuli
## 1046 Willamette Valley Willamette Valley
## 1047 Colli Orientali del Friuli
## 1048 Napa Valley Napa
## 1049 Vin de Pays d'Oc
## 1050 Vin de Pays d'Oc
## 1051 California California Other
## 1052 Rías Baixas
## 1053 California California Other
## 1054 Rioja
## 1055 Colli Orientali del Friuli
## 1056
## 1057
## 1058
## 1059 Central Coast Central Coast
## 1060 Delle Venezie
## 1061 Monbazillac
## 1062 Patrimonio
## 1063 Colli Orientali del Friuli
## 1064
## 1065 Sicilia
## 1066
## 1067 Amador County Sierra Foothills
## 1068 Sonoma Coast Sonoma
## 1069 Willamette Valley Willamette Valley
## 1070 Dundee Hills Willamette Valley
## 1071 Willamette Valley
## 1072 Barolo
## 1073
## 1074
## 1075 Barossa Valley
## 1076 Carneros Napa-Sonoma
## 1077 Sancerre
## 1078 Barolo
## 1079 Willamette Valley Willamette Valley
## 1080 Willamette Valley Willamette Valley
## 1081 Ribbon Ridge Willamette Valley
## 1082 Dundee Hills Willamette Valley
## 1083 Walla Walla Valley (OR) Oregon Other
## 1084 Diamond Mountain District Napa
## 1085 Saumur-Champigny
## 1086 Rutherford Napa
## 1087 Willamette Valley
## 1088 Sonoma Coast Sonoma
## 1089 Walla Walla Valley (OR) Oregon Other
## 1090 Napa Valley Napa
## 1091
## 1092 Sonoma Coast Sonoma
## 1093 Chehalem Mountains Willamette Valley
## 1094 Sancerre
## 1095 Eola-Amity Hills Willamette Valley
## 1096 Napa Valley Napa
## 1097
## 1098 Yakima Valley Columbia Valley
## 1099 Napa Valley Napa
## 1100 Paso Robles Central Coast
## 1101
## 1102
## 1103 Sonoma Coast Sonoma
## 1104 Yakima Valley Columbia Valley
## 1105 Costières de Nîmes
## 1106 Langhe
## 1107 Yakima Valley Columbia Valley
## 1108 Yolo County Central Valley
## 1109 Central Coast Central Coast
## 1110 Vino Nobile di Montepulciano
## 1111 Ribera del Duero
## 1112 Cava
## 1113 Costières de Nîmes
## 1114 Horse Heaven Hills Columbia Valley
## 1115 Rosso di Montalcino
## 1116 Ribera del Duero
## 1117 California California Other
## 1118 Paso Robles Central Coast
## 1119 Rosso di Montepulciano
## 1120 Gers
## 1121 Crémant de Jura
## 1122 Vin de Liqueur
## 1123 Seneca Lake Finger Lakes
## 1124 Naches Heights Columbia Valley
## 1125 Naches Heights Columbia Valley
## 1126 Sonoma Mountain Sonoma
## 1127 Haut-Médoc
## 1128 Médoc
## 1129 Médoc
## 1130
## 1131 Napa Valley Napa
## 1132
## 1133 Bordeaux
## 1134 Médoc
## 1135 Bordeaux Supérieur
## 1136
## 1137 Napa Valley Napa
## 1138 Terre Siciliane
## 1139 Basilicata
## 1140 Napa Valley Napa
## 1141 Hudson River Region New York Other
## 1142
## 1143 Lodi Central Valley
## 1144 Mendocino
## 1145 Napa Valley Napa
## 1146 Bordeaux
## 1147 Campania
## 1148 Columbia Valley (WA) Columbia Valley
## 1149 Sicilia
## 1150 Médoc
## 1151
## 1152 New York New York Other
## 1153 Columbia Valley (WA) Columbia Valley
## 1154
## 1155 Clare Valley
## 1156
## 1157
## 1158 Mendocino
## 1159
## 1160
## 1161
## 1162 Prosecco del Veneto
## 1163 Prosecco di Conegliano
## 1164 Prosecco di Conegliano
## 1165 Prosecco di Valdobbiadene
## 1166 Napa-Sonoma Napa-Sonoma
## 1167 Sonoma Valley Sonoma
## 1168 Prosecco del Veneto
## 1169 Columbia Valley (WA) Columbia Valley
## 1170 Prosecco del Veneto
## 1171 Mendoza
## 1172
## 1173 Sonoma Coast Sonoma
## 1174 Russian River Valley Sonoma
## 1175 Mendoza
## 1176
## 1177 Prosecco di Valdobbiadene
## 1178
## 1179 Valle de Uco
## 1180 Crémant de Bourgogne
## 1181 Anderson Valley
## 1182 Barbaresco
## 1183 South Australia
## 1184 Barolo
## 1185 Barolo
## 1186
## 1187 Mâcon-Villages
## 1188
## 1189 Saint-Véran
## 1190 Chassagne-Montrachet
## 1191 California California Other
## 1192 Pouilly-Fuissé
## 1193 Vin de France
## 1194 Mendoza
## 1195 Mendoza
## 1196 Vista Flores
## 1197 Willamette Valley Willamette Valley
## 1198 Barbaresco
## 1199 Goulburn Valley
## 1200 South Australia
## 1201
## 1202 Pouilly-Fuissé
## 1203 Texas
## 1204 California California Other
## 1205
## 1206 Barolo
## 1207 Willamette Valley Willamette Valley
## 1208 Barolo
## 1209
## 1210 Anderson Valley
## 1211 Alexander Valley Sonoma
## 1212 Yountville Napa
## 1213 Santa Maria Valley Central Coast
## 1214 Sta. Rita Hills Central Coast
## 1215 Bennett Valley Sonoma
## 1216
## 1217 Paso Robles Willow Creek District Central Coast
## 1218
## 1219 Verdicchio dei Castelli di Jesi Classico
## 1220 Santa Barbara County Central Coast
## 1221 Saint-Émilion
## 1222 Sta. Rita Hills Central Coast
## 1223 Ballard Canyon Central Coast
## 1224 Green Valley Sonoma
## 1225
## 1226 Suisun Valley North Coast
## 1227 Russian River Valley Sonoma
## 1228 Santa Maria Valley Central Coast
## 1229 Sta. Rita Hills Central Coast
## 1230
## 1231 Sta. Rita Hills Central Coast
## 1232 Monterey Central Coast
## 1233 Alexander Valley Sonoma
## 1234 Russian River Valley Sonoma
## 1235 Santa Maria Valley Central Coast
## 1236 Central Coast Central Coast
## 1237 Santa Maria Valley Central Coast
## 1238 Chianti Classico
## 1239 Bordeaux
## 1240 Chianti Classico
## 1241 Montagne-Saint-Émilion
## 1242 Columbia Valley (WA) Columbia Valley
## 1243
## 1244
## 1245 Napa Valley Napa
## 1246
## 1247 Rutherford Napa
## 1248
## 1249 Columbia Valley (WA) Columbia Valley
## 1250 Columbia Valley (WA) Columbia Valley
## 1251 Chianti Classico
## 1252
## 1253
## 1254 Washington Washington Other
## 1255 Columbia Valley (WA) Columbia Valley
## 1256
## 1257 Napa Valley Napa
## 1258 Rioja
## 1259 Brunello di Montalcino
## 1260 La Mancha
## 1261 Sicilia
## 1262 Sicilia
## 1263 Contra Costa County Central Coast
## 1264 Cayuga Lake Finger Lakes
## 1265 Russian River Valley Sonoma
## 1266
## 1267 Michigan
## 1268 California California Other
## 1269 Sicilia
## 1270 Rías Baixas
## 1271 Napa Valley Napa
## 1272 Lodi Central Valley
## 1273 Sicilia
## 1274 Russian River Valley Sonoma
## 1275 Sicilia
## 1276 Napa Valley Napa
## 1277 Sonoma Valley Sonoma
## 1278 Sonoma Valley Sonoma
## 1279 Sicilia
## 1280
## 1281 Uclés
## 1282 Ribera del Duero
## 1283 New York New York Other
## 1284 Sicilia
## 1285 Mâcon-Villages
## 1286
## 1287 Greco di Tufo
## 1288 Sonoma County Sonoma
## 1289 Alto Adige
## 1290
## 1291 Alto Adige
## 1292 Alto Adige
## 1293 Trentino
## 1294 Stags Leap District Napa
## 1295 Priorat
## 1296 Santa Barbara County Central Coast
## 1297 Muscadet Sèvre et Maine
## 1298 Valle d'Aosta
## 1299 Fair Play Sierra Foothills
## 1300 Alto Adige
## 1301 Santa Barbara County Central Coast
## 1302 Menetou-Salon
## 1303 Sancerre
## 1304
## 1305
## 1306 Jerez
## 1307 Penedès
## 1308 Dundee Hills Willamette Valley
## 1309
## 1310 Sonoma Valley Sonoma
## 1311 Paso Robles Central Coast
## 1312 Alexander Valley Sonoma
## 1313 Alto Adige
## 1314 Napa Valley Napa
## 1315 Alto Adige
## 1316 Alto Adige
## 1317 Greco di Tufo
## 1318 Russian River Valley Sonoma
## 1319 Russian River Valley Sonoma
## 1320
## 1321
## 1322 Penedès
## 1323
## 1324 Cava
## 1325 Sta. Rita Hills Central Coast
## 1326 Paso Robles Central Coast
## 1327 Rioja
## 1328
## 1329 Sta. Rita Hills Central Coast
## 1330 Fronton
## 1331 Côtes de Provence Sainte-Victoire
## 1332 Bergerac
## 1333 Madiran
## 1334 Russian River Valley Sonoma
## 1335 Finger Lakes Finger Lakes
## 1336 Finger Lakes Finger Lakes
## 1337 Russian River Valley Sonoma
## 1338 Greco di Tufo
## 1339 Côtes de Provence
## 1340 Coteaux Varois en Provence
## 1341 Côtes de Provence
## 1342
## 1343 Sonoma Valley Sonoma
## 1344 Paso Robles Central Coast
## 1345 Sicilia
## 1346 Rogue Valley Southern Oregon
## 1347 Mendoza
## 1348 Salento
## 1349 Washington Washington Other
## 1350 Sicilia
## 1351 Sannio
## 1352 Bordeaux Supérieur
## 1353 Haut-Médoc
## 1354 Bordeaux Rosé
## 1355 California California Other
## 1356 Columbia Valley (WA) Columbia Valley
## 1357 Saint-Émilion
## 1358 Navarra
## 1359 Rioja
## 1360 Russian River Valley Sonoma
## 1361 North Coast North Coast
## 1362 Sicilia
## 1363 Paso Robles Central Coast
## 1364 Puglia
## 1365 Saint-Émilion
## 1366 Côtes de Provence
## 1367
## 1368 Côtes de Provence
## 1369 Sta. Rita Hills Central Coast
## 1370 Delle Venezie
## 1371 Mendocino County
## 1372 Pennsylvania
## 1373 Venezia Giulia
## 1374 El Dorado Sierra Foothills
## 1375 Sierra Foothills Sierra Foothills
## 1376 Les Baux de Provence
## 1377 Amador County Sierra Foothills
## 1378
## 1379 Columbia Valley (WA) Columbia Valley
## 1380 Les Baux de Provence
## 1381 Sierra Foothills Sierra Foothills
## 1382 Shenandoah Valley (CA) Sierra Foothills
## 1383
## 1384 Lodi Central Valley
## 1385 Collio
## 1386
## 1387 Southern Oregon Southern Oregon
## 1388 Collio
## 1389 Russian River Valley Sonoma
## 1390
## 1391
## 1392 Alto Adige Valle Isarco
## 1393 Santa Cruz Mountains Central Coast
## 1394 Santa Ynez Valley Central Coast
## 1395 Mendoza
## 1396 Carneros Napa-Sonoma
## 1397 Old Mission Peninsula
## 1398
## 1399
## 1400 Alto Adige
## 1401
## 1402 Old Mission Peninsula
## 1403 Alto Adige
## 1404 Alto Adige Terlano
## 1405 Collio
## 1406 Dry Creek Valley Sonoma
## 1407 Dunnigan Hills Central Valley
## 1408 Alto Adige
## 1409 Alto Adige
## 1410 Mount Veeder Napa
## 1411
## 1412
## 1413
## 1414 California California Other
## 1415 Bandol
## 1416 Alsace
## 1417 Alsace
## 1418 Dry Creek Valley Sonoma
## 1419 Columbia Valley (WA) Columbia Valley
## 1420 Red Mountain Columbia Valley
## 1421 Columbia Valley (WA) Columbia Valley
## 1422 Alsace
## 1423
## 1424 Napa Valley Napa
## 1425 Columbia Valley (WA) Columbia Valley
## 1426
## 1427 Alsace
## 1428 Alsace
## 1429 Coombsville Napa
## 1430 Horse Heaven Hills Columbia Valley
## 1431 Napa Valley Napa
## 1432 Columbia Valley (WA) Columbia Valley
## 1433 Coteaux d'Aix-en-Provence
## 1434 Bandol
## 1435
## 1436 Columbia Valley (WA) Columbia Valley
## 1437 Columbia Valley (WA) Columbia Valley
## 1438 Bandol
## 1439
## 1440 Red Mountain Columbia Valley
## 1441 Alexander Valley Sonoma
## 1442
## 1443
## 1444 Paso Robles Central Coast
## 1445 Napa Valley Napa
## 1446 Madiran
## 1447 Chassagne-Montrachet
## 1448
## 1449 Sonoma County Sonoma
## 1450 Châteauneuf-du-Pape
## 1451 Nuits-St.-Georges
## 1452 Chambolle-Musigny
## 1453 Brunello di Montalcino
## 1454 Beaune
## 1455 Amarone della Valpolicella Classico
## 1456 Paso Robles Central Coast
## 1457 Rutherford Napa
## 1458
## 1459 Cahors
## 1460 Happy Canyon of Santa Barbara Central Coast
## 1461 Vigneti delle Dolomiti
## 1462 St. Helena Napa
## 1463 Brunello di Montalcino
## 1464 Nuits-St.-Georges
## 1465 Arroyo Seco Central Coast
## 1466
## 1467 Napa Valley Napa
## 1468 Santa Maria Valley Central Coast
## 1469 Napa Valley Napa
## 1470 St. Helena Napa
## 1471 Edna Valley Central Coast
## 1472 Brunello di Montalcino
## 1473 Napa Valley Napa
## 1474
## 1475 Montefalco Rosso
## 1476 Colli Orientali del Friuli
## 1477 Columbia Valley (WA) Columbia Valley
## 1478
## 1479 South Australia
## 1480
## 1481
## 1482 California California Other
## 1483 Tupungato
## 1484 Menetou-Salon
## 1485
## 1486 Napa Valley Napa
## 1487
## 1488 Carneros Napa-Sonoma
## 1489 Sagrantino di Montefalco
## 1490 Toscana
## 1491
## 1492 Umbria
## 1493
## 1494 Calchaquí Valley
## 1495 Paso Robles Central Coast
## 1496 Mount Veeder Napa
## 1497 Mendoza
## 1498 Mendoza
## 1499 Collio
## 1500
## 1501 Sicilia
## 1502 Santa Lucia Highlands Central Coast
## 1503 Russian River Valley Sonoma
## 1504 Sicilia
## 1505 Eola-Amity Hills Willamette Valley
## 1506
## 1507 Madiran
## 1508 Cahors
## 1509 Moulin-à-Vent
## 1510
## 1511 Santa Ynez Valley Central Coast
## 1512 Faro
## 1513 Chénas
## 1514 Sicilia
## 1515 Chehalem Mountains Willamette Valley
## 1516 Napa Valley Napa
## 1517 Médoc
## 1518 Madiran
## 1519 Cahors
## 1520
## 1521 Jurançon
## 1522
## 1523 Sicilia
## 1524 Willamette Valley Willamette Valley
## 1525
## 1526 Livermore Valley Central Coast
## 1527 Terre Siciliane
## 1528
## 1529
## 1530 California California Other
## 1531 Penedès
## 1532 Jumilla
## 1533 La Mancha
## 1534 California California Other
## 1535 Saumur
## 1536 Bordeaux Blanc
## 1537 Bordeaux Blanc
## 1538 Bordeaux Rosé
## 1539 Bordeaux Rosé
## 1540 Sonoma County Sonoma
## 1541 Montsant
## 1542
## 1543
## 1544
## 1545 Puglia
## 1546 Alella
## 1547
## 1548
## 1549
## 1550
## 1551 Bardolino Chiaretto
## 1552
## 1553
## 1554 Murgia
## 1555 Russian River Valley Sonoma
## 1556
## 1557 Columbia Valley (WA) Columbia Valley
## 1558 Sonoma Coast Sonoma
## 1559 Margaux
## 1560 Margaux
## 1561 Columbia Valley (WA) Columbia Valley
## 1562 Bolgheri Superiore
## 1563 Saint-Émilion
## 1564 Bolgheri Sassicaia
## 1565 Bolgheri Superiore
## 1566 Napa Valley Napa
## 1567 Pessac-Léognan
## 1568 Russian River Valley Sonoma
## 1569 Saint-Émilion
## 1570 Saint-Julien
## 1571 Bolgheri Superiore
## 1572 Pessac-Léognan
## 1573 Pomerol
## 1574 Pauillac
## 1575 Oakville Napa
## 1576 Pauillac
## 1577 Pomerol
## 1578 Russian River Valley Sonoma
## 1579 Saint-Émilion
## 1580 Russian River Valley Sonoma
## 1581 Saint-Julien
## 1582 Saint-Émilion
## 1583 Saint-Émilion
## 1584 Red Mountain Columbia Valley
## 1585 Sonoma Valley Sonoma
## 1586 Russian River Valley Sonoma
## 1587 Finger Lakes Finger Lakes
## 1588 Oakville Napa
## 1589 Terre Siciliane
## 1590 Haut-Médoc
## 1591 Lalande de Pomerol
## 1592 Finger Lakes Finger Lakes
## 1593 Pessac-Léognan
## 1594 Pessac-Léognan
## 1595 Pessac-Léognan
## 1596 Pessac-Léognan
## 1597 Haut-Médoc
## 1598 Médoc
## 1599 Columbia Valley (WA) Columbia Valley
## 1600 Pomerol
## 1601 California California Other
## 1602 Anderson Valley
## 1603 Columbia Gorge (WA) Washington Other
## 1604 Sicilia
## 1605 Columbia Valley (WA) Columbia Valley
## 1606
## 1607 North Fork of Long Island Long Island
## 1608 Sonoma Coast Sonoma
## 1609 Columbia Valley (WA) Columbia Valley
## 1610 Delia Nivolelli
## 1611 Walla Walla Valley (WA) Columbia Valley
## 1612 Médoc
## 1613 Pessac-Léognan
## 1614 Cadillac Côtes de Bordeaux
## 1615 Pessac-Léognan
## 1616 Vin de France
## 1617 Vin de France
## 1618
## 1619 Mendoza
## 1620
## 1621
## 1622 Mendoza
## 1623 Maipú
## 1624 Touraine
## 1625 Vin de France
## 1626 Virginia
## 1627 Mendoza
## 1628
## 1629 Menetou-Salon
## 1630
## 1631
## 1632 Middleburg
## 1633 Vin de France
## 1634
## 1635 Mendoza
## 1636 California California Other
## 1637 Australia
## 1638 Napa Valley Napa
## 1639 Reuilly
## 1640
## 1641
## 1642 North Coast North Coast
## 1643 Gattinara
## 1644 California California Other
## 1645 California California Other
## 1646 Montsant
## 1647 Vista Flores
## 1648 Sonoma County Sonoma
## 1649 Mendoza
## 1650 Margaret River
## 1651
## 1652 Patagonia
## 1653 Willamette Valley Willamette Valley
## 1654
## 1655
## 1656
## 1657 Bordeaux
## 1658 Haut-Médoc
## 1659 Entre-Deux-Mers
## 1660 Southern Oregon Southern Oregon
## 1661 Rogue Valley Southern Oregon
## 1662 Umpqua Valley Southern Oregon
## 1663 Montepulciano d'Abruzzo
## 1664
## 1665 California California Other
## 1666 Salta
## 1667 South Eastern Australia
## 1668 California California Other
## 1669 Montepulciano d'Abruzzo
## 1670 Graves
## 1671 Saint-Émilion
## 1672 Southern Oregon Southern Oregon
## 1673 Applegate Valley Southern Oregon
## 1674 Santa Ynez Valley Central Coast
## 1675 Châteauneuf-du-Pape
## 1676 Hermitage
## 1677 Toscana
## 1678 Santa Maria Valley Central Coast
## 1679 Santa Maria Valley Central Coast
## 1680 Livermore Valley Central Coast
## 1681 Mendoza
## 1682
## 1683 Brunello di Montalcino
## 1684 Willamette Valley Willamette Valley
## 1685
## 1686 Maremma
## 1687 Umpqua Valley Southern Oregon
## 1688 Maremma
## 1689 Napa Valley Napa
## 1690 Edna Valley Central Coast
## 1691 Santa Maria Valley Central Coast
## 1692 Châteauneuf-du-Pape
## 1693 Santa Barbara County Central Coast
## 1694
## 1695 California California Other
## 1696 Mendoza
## 1697 Toscana
## 1698
## 1699 Toscana
## 1700 Maremma
## 1701
## 1702 Rueda
## 1703 Sonoma County Sonoma
## 1704 Finger Lakes Finger Lakes
## 1705
## 1706 Toscana
## 1707 South Eastern Australia
## 1708 Margaret River
## 1709 Rueda
## 1710 Toscana
## 1711 San Benito County Central Coast
## 1712 Rueda
## 1713 McLaren Vale
## 1714 Toscana
## 1715
## 1716
## 1717 Carneros Napa-Sonoma
## 1718
## 1719 Catalunya
## 1720 Lodi Central Valley
## 1721 Vino de la Tierra de Castilla
## 1722 Rioja
## 1723 Ribeiro
## 1724 McLaren Vale
## 1725 Pennsylvania
## 1726 New York New York Other
## 1727 Rioja
## 1728 Sauternes
## 1729 San Luis Obispo County Central Coast
## 1730 Santa Cruz Mountains Central Coast
## 1731 Washington Washington Other
## 1732 Columbia Valley (WA) Columbia Valley
## 1733 Brunello di Montalcino
## 1734 Saint-Émilion
## 1735 Walla Walla Valley (WA) Columbia Valley
## 1736 Columbia Valley (WA) Columbia Valley
## 1737 Brunello di Montalcino
## 1738 Monterey County Central Coast
## 1739 Brunello di Montalcino
## 1740 Arroyo Seco Central Coast
## 1741 Bolgheri
## 1742 Columbia Gorge (WA) Washington Other
## 1743 Alexander Valley Sonoma
## 1744 Brunello di Montalcino
## 1745 Pessac-Léognan
## 1746 Pessac-Léognan
## 1747 Sauternes
## 1748 Pauillac
## 1749 Saint-Estèphe
## 1750 Livermore Valley Central Coast
## 1751 Bordeaux
## 1752 Alicante
## 1753 Washington Washington Other
## 1754 Rioja
## 1755 Blaye Côtes de Bordeaux
## 1756 Cava
## 1757 Ancient Lakes Columbia Valley
## 1758 Touraine
## 1759 Vin de Savoie
## 1760 Almansa
## 1761 Bordeaux
## 1762 Cayuga Lake Finger Lakes
## 1763 Napa Valley Napa
## 1764 Seneca Lake Finger Lakes
## 1765 Cava
## 1766 Bordeaux Blanc
## 1767 Ancient Lakes Columbia Valley
## 1768 Bordeaux Supérieur
## 1769 Bordeaux Supérieur
## 1770
## 1771 Castillon Côtes de Bordeaux
## 1772 California California Other
## 1773 Mediterranée
## 1774
## 1775 Knights Valley Sonoma
## 1776 Castillon Côtes de Bordeaux
## 1777 Blaye Côtes de Bordeaux
## 1778 Bordeaux Supérieur
## 1779 Francs Côtes de Bordeaux
## 1780 Blaye Côtes de Bordeaux
## 1781 Columbia Valley (WA) Columbia Valley
## 1782 Brunello di Montalcino
## 1783 Priorat
## 1784 Blaye Côtes de Bordeaux
## 1785 Saint-Julien
## 1786 Médoc
## 1787
## 1788 Santa Lucia Highlands Central Coast
## 1789 San Luis Obispo County Central Coast
## 1790 Sonoma Coast Sonoma
## 1791 Uco Valley
## 1792 Santa Lucia Highlands Central Coast
## 1793 Walla Walla Valley (WA) Columbia Valley
## 1794 Brunello di Montalcino
## 1795 Carneros Napa-Sonoma
## 1796 Russian River Valley Sonoma
## 1797 Red Mountain Columbia Valley
## 1798 Brunello di Montalcino
## 1799 Barolo
## 1800 Saint-Estèphe
## 1801 Lalande de Pomerol
## 1802
## 1803
## 1804 Beaujolais-Villages
## 1805 Beaujolais-Villages
## 1806 Central Coast Central Coast
## 1807 Cava
## 1808 Champagne
## 1809 Central Coast Central Coast
## 1810 Valencia
## 1811 Rueda
## 1812 California California Other
## 1813
## 1814
## 1815 Valencia
## 1816 Mendoza
## 1817 Cava
## 1818 Sonoma County Sonoma
## 1819 Beaujolais
## 1820 Beaujolais Rosé
## 1821 Beaujolais
## 1822
## 1823 Uco Valley
## 1824 Chiroubles
## 1825 Saint-Amour
## 1826 Central Coast Central Coast
## 1827 Beaujolais
## 1828 Ribeira Sacra
## 1829 Alicante
## 1830 Napa Valley Napa
## 1831 Willamette Valley Willamette Valley
## 1832 Sonoma County Sonoma
## 1833 California California Other
## 1834 Cariñena
## 1835 California California Other
## 1836 Ribera del Duero
## 1837 Leelanau Peninsula
## 1838 Alsace
## 1839 Napa Valley Napa
## 1840 Napa Valley Napa
## 1841 Alexander Valley Sonoma
## 1842 Lodi Central Valley
## 1843 Napa Valley Napa
## 1844 Getariako Txakolina
## 1845 Mendoza
## 1846 Rías Baixas
## 1847 Rueda
## 1848 Calatayud
## 1849 Vino de la Tierra de Castilla
## 1850 Anderson Valley
## 1851 Outer Coastal Plain
## 1852 Mendoza
## 1853 Alsace
## 1854 Rogue Valley Southern Oregon
## 1855 Cariñena
## 1856 Mendoza
## 1857 Napa Valley Napa
## 1858 Russian River Valley Sonoma
## 1859 Oregon Oregon Other
## 1860 Cerasuolo di Vittoria
## 1861 Saint-Émilion
## 1862 Pauillac
## 1863 Saint-Émilion
## 1864 Napa Valley Napa
## 1865 Toscana
## 1866 Toscana
## 1867 Wahluke Slope Columbia Valley
## 1868 Calaveras County Sierra Foothills
## 1869 Horse Heaven Hills Columbia Valley
## 1870 Toscana
## 1871
## 1872 Saint-Estèphe
## 1873 Saint-Julien
## 1874 Yakima Valley Columbia Valley
## 1875 Coteaux du Languedoc
## 1876 Toscana
## 1877 Brunello di Montalcino
## 1878 Toscana
## 1879 Sonoma-Napa Napa-Sonoma
## 1880 Margaux
## 1881 Pomerol
## 1882 Columbia Valley (WA) Columbia Valley
## 1883 Columbia Valley (WA) Columbia Valley
## 1884 Carneros Napa-Sonoma
## 1885
## 1886 Toscana
## 1887 Padthaway
## 1888 Napa Valley Napa
## 1889 Columbia Valley (WA) Columbia Valley
## 1890 Chablis
## 1891 Langhorne Creek
## 1892 Adelaide Hills
## 1893 Falerno del Massico
## 1894 Russian River Valley Sonoma
## 1895 Barossa Valley
## 1896 Greco di Tufo
## 1897 Willamette Valley Willamette Valley
## 1898 McLaren Vale
## 1899 Penedès
## 1900 Uco Valley
## 1901 Willamette Valley Willamette Valley
## 1902 Chablis
## 1903 Luján de Cuyo
## 1904 Yarra Valley
## 1905 Fiano di Avellino
## 1906 Napa Valley Napa
## 1907 Vi de la Terra Illes Balears
## 1908 Murgia
## 1909 South Eastern Australia
## 1910 McLaren Vale
## 1911 Alexander Valley Sonoma
## 1912 Paso Robles Central Coast
## 1913
## 1914 Yakima Valley Columbia Valley
## 1915 Santa Barbara Central Coast
## 1916
## 1917
## 1918
## 1919 Bordeaux
## 1920 Cadillac Côtes de Bordeaux
## 1921 Côtes de Bourg
## 1922 Wahluke Slope Columbia Valley
## 1923
## 1924 Happy Canyon of Santa Barbara Central Coast
## 1925
## 1926 Barolo
## 1927 Walla Walla Valley (WA) Columbia Valley
## 1928 Bordeaux Supérieur
## 1929 Barbera d'Asti Superiore
## 1930 Central Coast Central Coast
## 1931 Margaret River
## 1932
## 1933 Barolo
## 1934 Bordeaux
## 1935 Barossa Valley
## 1936
## 1937 Napa Valley Napa
## 1938
## 1939
## 1940 Columbia Valley (WA) Columbia Valley
## 1941 Saint-Georges-Saint-Émilion
## 1942
## 1943 Washington Washington Other
## 1944 Oakville Napa
## 1945 Cahors
## 1946 Santa Ynez Valley Central Coast
## 1947 Dry Creek Valley Sonoma
## 1948 Walla Walla Valley (WA) Columbia Valley
## 1949 Arroyo Grande Valley Central Coast
## 1950
## 1951 Columbia Valley (WA) Columbia Valley
## 1952 Bordeaux Blanc
## 1953 Napa Valley Napa
## 1954 Walla Walla Valley (WA) Columbia Valley
## 1955
## 1956
## 1957 Santa Maria Valley Central Coast
## 1958 Brouilly
## 1959 Napa Valley Napa
## 1960 Virginia
## 1961 Vermentino di Sardegna
## 1962 Isola dei Nuraghi
## 1963 Carneros Napa-Sonoma
## 1964 Oakville Napa
## 1965 Chiroubles
## 1966
## 1967 Willamette Valley Willamette Valley
## 1968 Primitivo di Manduria
## 1969 Bordeaux
## 1970 Médoc
## 1971 Chiroubles
## 1972 Bergerac Sec
## 1973 Etna
## 1974 Applegate Valley Southern Oregon
## 1975 Dundee Hills Willamette Valley
## 1976 Primitivo di Manduria
## 1977 Cahors
## 1978 Salento
## 1979 Greco di Tufo
## 1980 Santa Lucia Highlands Central Coast
## 1981 Santa Lucia Highlands Central Coast
## 1982 Sicilia
## 1983 Virginia
## 1984 Sicilia
## 1985 Carneros Napa-Sonoma
## 1986 Paso Robles Central Coast
## 1987 Morgon
## 1988 Vino de la Tierra de Castilla
## 1989 Jumilla
## 1990 Willamette Valley Willamette Valley
## 1991 Alsace
## 1992 Uco Valley
## 1993 Uco Valley
## 1994 Mendoza
## 1995 Virginia's Eastern Shore
## 1996 Russian River Valley Sonoma
## 1997 Willamette Valley Willamette Valley
## 1998 Terre Siciliane
## 1999 Alsace
## 2000 Alsace
## 2001 Sicilia
## 2002 Vino de la Tierra de Castilla
## 2003 Mendoza
## 2004 Alsace
## 2005 Oregon Oregon Other
## 2006
## 2007
## 2008 Alsace
## 2009 California California Other
## 2010 Alsace
## 2011 Alsace
## 2012 Central Coast Central Coast
## 2013 Mendoza
## 2014 Alsace
## 2015 Rueda
## 2016 Alsace
## 2017 Alsace
## 2018
## 2019 California California Other
## 2020 Russian River Valley Sonoma
## 2021 Santa Barbara County Central Coast
## 2022 Applegate Valley Southern Oregon
## 2023 Lugana
## 2024 Venezia Giulia
## 2025 Eola-Amity Hills Willamette Valley
## 2026
## 2027 Mâcon-Villages
## 2028
## 2029 Vigneti delle Dolomiti
## 2030 Lugana
## 2031 Toscana
## 2032 Russian River Valley Sonoma
## 2033
## 2034
## 2035 Alexander Valley Sonoma
## 2036 Paso Robles Central Coast
## 2037 Soave Classico
## 2038 Alto Adige
## 2039 Fronsac
## 2040 Barolo
## 2041 Champagne
## 2042 Champagne
## 2043 Paso Robles Central Coast
## 2044 Barolo
## 2045 Barolo
## 2046 Barolo
## 2047 Barolo
## 2048 Barolo
## 2049
## 2050
## 2051
## 2052
## 2053 Rutherford Napa
## 2054 Rutherford Napa
## 2055 Barolo
## 2056 Barolo
## 2057 Barbaresco
## 2058 Barolo
## 2059 Barolo
## 2060 Barolo
## 2061 Barolo
## 2062 Barolo
## 2063 Napa Valley Napa
## 2064 Champagne
## 2065 Russian River Valley Sonoma
## 2066 Green Valley Sonoma
## 2067 Calaveras County Sierra Foothills
## 2068 Napa Valley Napa
## 2069 Walla Walla Valley (WA) Columbia Valley
## 2070 Sonoma County Sonoma
## 2071 Sta. Rita Hills Central Coast
## 2072 Graves
## 2073 Amarone della Valpolicella Classico
## 2074 Columbia Valley (WA) Columbia Valley
## 2075 Sicilia
## 2076 Sicilia
## 2077 Lalande de Pomerol
## 2078 Washington Washington Other
## 2079
## 2080 Champagne
## 2081 Russian River Valley Sonoma
## 2082 Sonoma Coast Sonoma
## 2083 Napa Valley Napa
## 2084 Perdriel
## 2085
## 2086 Calaveras County Sierra Foothills
## 2087 Sta. Rita Hills Central Coast
## 2088 Napa Valley Napa
## 2089 Dry Creek Valley Sonoma
## 2090 Champagne
## 2091 Walla Walla Valley (WA) Columbia Valley
## 2092
## 2093 Alto Adige
## 2094 Collio
## 2095
## 2096 Central Coast Central Coast
## 2097 Isonzo del Friuli
## 2098 Amador County Sierra Foothills
## 2099 Colli Orientali del Friuli
## 2100 San Luis Obispo County Central Coast
## 2101 Santa Maria Valley Central Coast
## 2102 El Dorado Sierra Foothills
## 2103 Colli Trevigiani
## 2104 Colli Orientali del Friuli
## 2105
## 2106
## 2107 Collio
## 2108 Livermore Valley Central Coast
## 2109 Delle Venezie
## 2110 Columbia Valley (OR) Oregon Other
## 2111 Friuli Grave
## 2112 Coteaux d'Aix-en-Provence
## 2113 Côtes de Provence
## 2114 Médoc
## 2115 Listrac-Médoc
## 2116
## 2117 Santa Ynez Valley Central Coast
## 2118 Columbia Valley (WA) Columbia Valley
## 2119 Horse Heaven Hills Columbia Valley
## 2120 Amador County Sierra Foothills
## 2121 North Fork of Long Island Long Island
## 2122 Lalande de Pomerol
## 2123 Haut-Médoc
## 2124 Lalande de Pomerol
## 2125 Montagne-Saint-Émilion
## 2126 Paso Robles Central Coast
## 2127 California California Other
## 2128 Oak Knoll District Napa
## 2129 Red Mountain Columbia Valley
## 2130 Roero
## 2131 Menetou-Salon
## 2132 Russian River Valley Sonoma
## 2133 Lussac Saint-Émilion
## 2134 Barbera d'Asti
## 2135 Montepulciano d'Abruzzo
## 2136 Cava
## 2137 Amador County Sierra Foothills
## 2138 McLaren Vale
## 2139 Rioja
## 2140 Montepulciano d'Abruzzo
## 2141 Rioja
## 2142 Mendoza
## 2143 Côtes de Bourg
## 2144 Moulin-à-Vent
## 2145 Columbia Valley (WA) Columbia Valley
## 2146 Rioja
## 2147 Rogue Valley Southern Oregon
## 2148 Montepulciano d'Abruzzo
## 2149 Montepulciano d'Abruzzo
## 2150
## 2151 California California Other
## 2152 Vino de la Tierra de Castilla
## 2153 California California Other
## 2154 Vino de la Tierra de Castilla
## 2155 Jumilla
## 2156 San Juan
## 2157 Yakima Valley Columbia Valley
## 2158 Beaujolais-Villages
## 2159
## 2160 Montepulciano d'Abruzzo
## 2161 Montepulciano d'Abruzzo
## 2162 California California Other
## 2163 Rías Baixas
## 2164 Willamette Valley Willamette Valley
## 2165 Finger Lakes Finger Lakes
## 2166 Finger Lakes Finger Lakes
## 2167
## 2168 Dry Creek Valley Sonoma
## 2169 Russian River Valley Sonoma
## 2170 Sierra Foothills Sierra Foothills
## 2171
## 2172 Barolo
## 2173 Columbia Valley (WA) Columbia Valley
## 2174 Barolo
## 2175 Lake County
## 2176 Rioja
## 2177 Napa Valley Napa
## 2178 Russian River Valley Sonoma
## 2179
## 2180 Cava
## 2181 Tavel
## 2182 Rioja
## 2183 El Dorado Sierra Foothills
## 2184
## 2185 Walla Walla Valley (WA) Columbia Valley
## 2186
## 2187 Barbera d'Alba Superiore
## 2188 Clarksburg Central Valley
## 2189 North Fork of Long Island Long Island
## 2190 Mendocino
## 2191 Santa Barbara County Central Coast
## 2192 Paso Robles Central Coast
## 2193 Paso Robles Central Coast
## 2194 Horse Heaven Hills Columbia Valley
## 2195
## 2196 Dry Creek Valley Sonoma
## 2197 Yolo County Central Valley
## 2198 Santa Ynez Valley Central Coast
## 2199 Amarone della Valpolicella Classico
## 2200 Alsace
## 2201 Rutherford Napa
## 2202 Santa Cruz Mountains Central Coast
## 2203 Paso Robles Central Coast
## 2204 Columbia Valley (WA) Columbia Valley
## 2205 Columbia Valley (WA) Columbia Valley
## 2206
## 2207 Paso Robles Willow Creek District Central Coast
## 2208 Alsace
## 2209 Napa Valley Napa
## 2210 Arroyo Seco Central Coast
## 2211 Alexander Valley Sonoma
## 2212 Monterey County Central Coast
## 2213 Alsace
## 2214 Recioto di Soave
## 2215 Santenay
## 2216 Santa Clara Valley Central Coast
## 2217
## 2218 Alsace
## 2219
## 2220
## 2221 Santa Barbara County Central Coast
## 2222 Monterey County Central Coast
## 2223 Columbia Valley (WA) Columbia Valley
## 2224 Finger Lakes Finger Lakes
## 2225 Brunello di Montalcino
## 2226 Brunello di Montalcino
## 2227 Brunello di Montalcino
## 2228 Gevrey-Chambertin
## 2229 Brunello di Montalcino
## 2230 Sonoma Coast Sonoma
## 2231 Brunello di Montalcino
## 2232 Santa Maria Valley Central Coast
## 2233 Brunello di Montalcino
## 2234 Toscana
## 2235 Brunello di Montalcino
## 2236 Santa Lucia Highlands Central Coast
## 2237 Brunello di Montalcino
## 2238 Brunello di Montalcino
## 2239 Sta. Rita Hills Central Coast
## 2240 Brunello di Montalcino
## 2241 Brunello di Montalcino
## 2242 Anderson Valley
## 2243 Sta. Rita Hills Central Coast
## 2244 Brunello di Montalcino
## 2245 Puligny-Montrachet
## 2246 Puligny-Montrachet
## 2247 Russian River Valley Sonoma
## 2248 Brunello di Montalcino
## 2249 Brunello di Montalcino
## 2250 Brunello di Montalcino
## 2251 Carneros Napa-Sonoma
## 2252 Napa Valley Napa
## 2253 Alexander Valley Sonoma
## 2254 Napa Valley Napa
## 2255 Mendoza
## 2256 Napa Valley Napa
## 2257 McLaren Vale
## 2258 Ruché di Castagnole Monferrato
## 2259 Médoc
## 2260 Pessac-Léognan
## 2261 Barbera d'Asti
## 2262 Médoc
## 2263 Valtellina Superiore
## 2264 Oltrepò Pavese
## 2265 Haut-Médoc
## 2266
## 2267 Red Hills Lake County
## 2268 Sonoma Valley Sonoma
## 2269 San Luis Obispo County Central Coast
## 2270 Dry Creek Valley Sonoma
## 2271 Sonoma County Sonoma
## 2272 Alexander Valley Sonoma
## 2273
## 2274
## 2275 Sonoma County Sonoma
## 2276 Chianti Classico
## 2277 Rosso di Montepulciano
## 2278 Mendoza
## 2279 Sonoma County Sonoma
## 2280 Alsace
## 2281 Napa Valley Napa
## 2282 Willamette Valley Willamette Valley
## 2283 Chianti Classico
## 2284 Umpqua Valley Southern Oregon
## 2285 Rías Baixas
## 2286 Toro
## 2287 Napa Valley Napa
## 2288 Chianti Classico
## 2289
## 2290 Santa Clara Valley Central Coast
## 2291 California California Other
## 2292 Mendoza
## 2293
## 2294 Vino Nobile di Montepulciano
## 2295
## 2296 Brunello di Montalcino
## 2297 Chianti Classico
## 2298 Russian River Valley Sonoma
## 2299 Horse Heaven Hills Columbia Valley
## 2300
## 2301
## 2302 Howell Mountain Napa
## 2303
## 2304 Columbia Valley (WA) Columbia Valley
## 2305 Mount Veeder Napa
## 2306 Brunello di Montalcino
## 2307 Moulis-en-Médoc
## 2308 Brunello di Montalcino
## 2309 Napa Valley Napa
## 2310 Ribera del Duero
## 2311
## 2312
## 2313 Pemberton
## 2314 Chianti Classico
## 2315 Brunello di Montalcino
## 2316 Brunello di Montalcino
## 2317 Rutherford Napa
## 2318 Chianti Classico
## 2319 Brunello di Montalcino
## 2320 Rosé de Loire
## 2321 Bordeaux Supérieur
## 2322 Côtes de Bordeaux
## 2323 Castillon Côtes de Bordeaux
## 2324 Bordeaux Supérieur
## 2325 Vin Mousseux
## 2326 California California Other
## 2327 Washington Washington Other
## 2328 California California Other
## 2329 California California Other
## 2330 Barbera d'Alba Superiore
## 2331 Seneca Lake Finger Lakes
## 2332
## 2333 Saumur
## 2334 South Coast South Coast
## 2335 Yecla
## 2336 Washington Washington Other
## 2337
## 2338 Russian River Valley Sonoma
## 2339
## 2340 California California Other
## 2341 Columbia Valley (WA) Columbia Valley
## 2342
## 2343 Lake Erie Finger Lakes
## 2344 California California Other
## 2345 Sancerre
## 2346 Potter Valley
## 2347 Potter Valley
## 2348 California California Other
## 2349 Horse Heaven Hills Columbia Valley
## 2350 Mendocino County
## 2351 Amarone della Valpolicella
## 2352 Mendoza
## 2353 Monticello
## 2354 Sonoma County-Napa County Napa-Sonoma
## 2355 Sonoma County Sonoma
## 2356 Sonoma Valley Sonoma
## 2357 Navarra
## 2358 Contra Costa County Central Coast
## 2359 Santa Barbara County Central Coast
## 2360 Mercurey
## 2361 Mercurey
## 2362 Givry
## 2363 Amarone della Valpolicella
## 2364 Mount Veeder Napa
## 2365 Buzet
## 2366
## 2367 Columbia Valley (WA) Columbia Valley
## 2368 Columbia Valley (WA) Columbia Valley
## 2369 Juliénas
## 2370 Amarone della Valpolicella
## 2371 Columbia Valley (WA) Columbia Valley
## 2372 Alsace
## 2373 Gaillac
## 2374 Valpolicella Classico Superiore Ripasso
## 2375 Collio
## 2376 Columbia Valley (WA) Columbia Valley
## 2377 Valpolicella Classico Superiore Ripasso
## 2378 Yakima Valley Columbia Valley
## 2379 Amarone della Valpolicella
## 2380 Virginia
## 2381
## 2382
## 2383
## 2384
## 2385
## 2386 Amador County Sierra Foothills
## 2387 Chehalem Mountains Willamette Valley
## 2388 Mendoza
## 2389 Corse
## 2390 Sancerre
## 2391 Muscadet Côtes de Grandlieu
## 2392
## 2393
## 2394
## 2395
## 2396 Eola-Amity Hills Willamette Valley
## 2397
## 2398
## 2399
## 2400 Rogue Valley Southern Oregon
## 2401
## 2402 Sicilia
## 2403 Russian River Valley Sonoma
## 2404 Vin de France
## 2405 Sonoma County Sonoma
## 2406
## 2407
## 2408 Vin de France
## 2409 North Coast North Coast
## 2410 Sicilia
## 2411
## 2412 Murgia
## 2413 Monica di Sardegna
## 2414 Bordeaux Blanc
## 2415 Sicilia
## 2416 Paso Robles Central Coast
## 2417 Terra degli Osci
## 2418 Sonoma Valley Sonoma
## 2419
## 2420 Sonoma County Sonoma
## 2421 Faro
## 2422 Beaujolais Rosé
## 2423 Bordeaux Supérieur
## 2424 Dundee Hills Willamette Valley
## 2425
## 2426 Sicilia
## 2427 Sicilia
## 2428 Beaujolais
## 2429 Sonoma Mountain Sonoma
## 2430 Chehalem Mountains Willamette Valley
## 2431 Chehalem Mountains Willamette Valley
## 2432 Beaujolais
## 2433 Cahors
## 2434
## 2435 Puglia
## 2436 California California Other
## 2437 Virginia
## 2438
## 2439 Montefalco Rosso
## 2440 Carneros Napa-Sonoma
## 2441 Arroyo Seco Central Coast
## 2442 Napa Valley Napa
## 2443 Dundee Hills Willamette Valley
## 2444 Sonoma County Sonoma
## 2445 Lambrusco di Modena
## 2446 Montefalco Rosso
## 2447 Sonoma County Sonoma
## 2448 Montefalco Sagrantino
## 2449 Lazio
## 2450 Finger Lakes Finger Lakes
## 2451 Brunello di Montalcino
## 2452 Alexander Valley Sonoma
## 2453 Paso Robles Central Coast
## 2454 Columbia Valley (WA) Columbia Valley
## 2455 Yakima Valley Columbia Valley
## 2456 Horse Heaven Hills Columbia Valley
## 2457 Mendocino
## 2458 Sierra Foothills Sierra Foothills
## 2459 California California Other
## 2460 Brunello di Montalcino
## 2461 Chalk Hill Sonoma
## 2462 Haut-Médoc
## 2463 Saint-Émilion
## 2464 Haut-Médoc
## 2465 Pessac-Léognan
## 2466 Médoc
## 2467 Montagne-Saint-Émilion
## 2468 Saint-Estèphe
## 2469 Brunello di Montalcino
## 2470 Jerez
## 2471 Rioja
## 2472 Lodi Central Valley
## 2473 New York New York Other
## 2474 California California Other
## 2475 Paso Robles Central Coast
## 2476 Livermore Valley Central Coast
## 2477 Arroyo Seco Central Coast
## 2478 Napa Valley Napa
## 2479 Santa Ynez Valley Central Coast
## 2480 Sonoma Mountain Sonoma
## 2481 Paso Robles Central Coast
## 2482 Columbia Valley (WA) Columbia Valley
## 2483 Yakima Valley Columbia Valley
## 2484 Yakima Valley Columbia Valley
## 2485 Columbia Valley (WA) Columbia Valley
## 2486 Columbia Valley (WA) Columbia Valley
## 2487
## 2488
## 2489 Wahluke Slope Columbia Valley
## 2490 Santa Barbara County Central Coast
## 2491 Alsace
## 2492 Alsace
## 2493 Chorey-lès-Beaune
## 2494
## 2495
## 2496 Napa Valley Napa
## 2497 Soave Classico
## 2498 Venezia Giulia
## 2499 Paso Robles Central Coast
## 2500 Finger Lakes Finger Lakes
## 2501 Alsace
## 2502
## 2503 Columbia Valley (WA) Columbia Valley
## 2504 Napa Valley Napa
## 2505
## 2506 Santa Ynez Valley Central Coast
## 2507 Paso Robles Central Coast
## 2508 Russian River Valley Sonoma
## 2509 Rioja
## 2510 Barolo
## 2511 Barolo
## 2512 Barolo
## 2513 Barbaresco
## 2514 Willamette Valley Willamette Valley
## 2515 Barolo
## 2516 Russian River Valley Sonoma
## 2517 Barolo
## 2518 Barossa Valley
## 2519 Barolo
## 2520 Barolo
## 2521 Barolo
## 2522 Barolo
## 2523 Barolo
## 2524 Barolo
## 2525 Barolo
## 2526 Barolo
## 2527 Alto Adige
## 2528 Sonoma County Sonoma
## 2529
## 2530
## 2531 Napa Valley Napa
## 2532 Rioja
## 2533
## 2534 Monterey Central Coast
## 2535 Ribera del Duero
## 2536
## 2537 Santa Barbara County Central Coast
## 2538 Alto Adige
## 2539 Vin de France
## 2540 Napa Valley Napa
## 2541 Marche
## 2542 Vin de France
## 2543 Mendocino
## 2544 Côtes de Provence
## 2545 Santa Cruz Mountains Central Coast
## 2546 Finger Lakes Finger Lakes
## 2547
## 2548
## 2549 Rías Baixas
## 2550 Ribera del Duero
## 2551 Paso Robles Central Coast
## 2552 Mendoza
## 2553 California California Other
## 2554 Central Coast Central Coast
## 2555 Spring Mountain District Napa
## 2556 Yountville Napa
## 2557 Sta. Rita Hills Central Coast
## 2558 Santa Clara Valley Central Coast
## 2559 Livermore Valley Central Coast
## 2560 Napa Valley Napa
## 2561
## 2562 Paso Robles Central Coast
## 2563 Cerasuolo di Vittoria Classico
## 2564 Paso Robles Central Coast
## 2565 Edna Valley Central Coast
## 2566
## 2567 Red Mountain Columbia Valley
## 2568 Columbia Valley (WA) Columbia Valley
## 2569 Columbia Valley (WA) Columbia Valley
## 2570 Columbia Valley (WA) Columbia Valley
## 2571 Isola dei Nuraghi
## 2572 Horse Heaven Hills Columbia Valley
## 2573 Walla Walla Valley (WA) Columbia Valley
## 2574 Aglianico del Vulture
## 2575 Walla Walla Valley (WA) Columbia Valley
## 2576 Santa Cruz Mountains Central Coast
## 2577 Columbia Valley (WA) Columbia Valley
## 2578 Horse Heaven Hills Columbia Valley
## 2579 Walla Walla Valley (WA) Columbia Valley
## 2580 Yakima Valley Columbia Valley
## 2581 Yakima Valley Columbia Valley
## 2582 Walla Walla Valley (WA) Columbia Valley
## 2583 Snipes Mountain Columbia Valley
## 2584 Carneros Napa-Sonoma
## 2585 Graves
## 2586 Fronsac
## 2587
## 2588 Frankland River
## 2589
## 2590
## 2591 Columbia Valley (WA) Columbia Valley
## 2592 Barolo
## 2593 Barolo
## 2594 Columbia Valley (WA) Columbia Valley
## 2595 Geographe
## 2596
## 2597
## 2598
## 2599 Western Australia
## 2600
## 2601 Margaret River
## 2602 Green Valley Sonoma
## 2603 Sierra Foothills Sierra Foothills
## 2604
## 2605 Napa Valley Napa
## 2606 Alexander Valley Sonoma
## 2607
## 2608
## 2609 Columbia Valley (WA) Columbia Valley
## 2610 Columbia Valley (WA) Columbia Valley
## 2611 Napa Valley Napa
## 2612 Western Australia
## 2613 Columbia Valley (WA) Columbia Valley
## 2614
## 2615 Columbia Valley (WA) Columbia Valley
## 2616 Calchaquí Valley
## 2617 Niagara Peninsula
## 2618 South Eastern Australia
## 2619 Mendoza
## 2620 Molise
## 2621 New Jersey
## 2622 California California Other
## 2623 Lodi Central Valley
## 2624 California California Other
## 2625 Edna Valley Central Coast
## 2626 Sonoma County Sonoma
## 2627 Alexander Valley Sonoma
## 2628 California California Other
## 2629 Willamette Valley Willamette Valley
## 2630 Amador County Sierra Foothills
## 2631 California California Other
## 2632 McLaren Vale
## 2633 Cortona
## 2634
## 2635 Bolgheri
## 2636 Graves
## 2637 Pomerol
## 2638 Haut-Médoc
## 2639 Haut-Médoc
## 2640 Alexander Valley Sonoma
## 2641 Tasmania
## 2642
## 2643 Adelaide Hills
## 2644 Toscana
## 2645 Temecula Valley South Coast
## 2646 Central Coast Central Coast
## 2647 Bolgheri
## 2648 Hudson River Region New York Other
## 2649 Wahluke Slope Columbia Valley
## 2650 Yakima Valley Columbia Valley
## 2651 Columbia Valley (WA) Columbia Valley
## 2652
## 2653
## 2654
## 2655 Bolgheri
## 2656 Margaux
## 2657 Saint-Émilion
## 2658 Saint-Émilion
## 2659 Saint-Émilion
## 2660 Morellino di Scansano
## 2661 Toscana
## 2662 Amarone della Valpolicella Classico
## 2663 Howell Mountain Napa
## 2664 Columbia Valley (WA) Columbia Valley
## 2665 Columbia Valley (WA) Columbia Valley
## 2666
## 2667 Valpolicella Classico Superiore Ripasso
## 2668 Yountville Napa
## 2669 Napa Valley Napa
## 2670 Maury Sec
## 2671 Spring Mountain District Napa
## 2672 Chiroubles
## 2673 Russian River Valley Sonoma
## 2674 Tupungato
## 2675 Côtes du Roussillon Villages Caramany
## 2676 Columbia Valley (WA) Columbia Valley
## 2677 Sonoma Coast Sonoma
## 2678 Columbia Valley (WA) Columbia Valley
## 2679 Walla Walla Valley (WA) Columbia Valley
## 2680 Irrouléguy
## 2681 Sta. Rita Hills Central Coast
## 2682 Mendocino Ridge
## 2683 Givry
## 2684 Rioja
## 2685 Amarone della Valpolicella Classico
## 2686
## 2687 Horse Heaven Hills Columbia Valley
## 2688 Chablis
## 2689 Spring Mountain District Napa
## 2690 Carneros Napa-Sonoma
## 2691 Stags Leap District Napa
## 2692 Delle Venezie
## 2693
## 2694
## 2695
## 2696 Santa Maria Valley Central Coast
## 2697 Redwood Valley
## 2698 Russian River Valley Sonoma
## 2699
## 2700 Sonoma Valley Sonoma
## 2701 Napa Valley Napa
## 2702 Santa Barbara County Central Coast
## 2703 Isonzo del Friuli
## 2704
## 2705
## 2706
## 2707 Edna Valley Central Coast
## 2708
## 2709 Colli Orientali del Friuli
## 2710 Green Valley Sonoma
## 2711 Central Coast Central Coast
## 2712 Santa Lucia Highlands Central Coast
## 2713 Friuli Aquileia
## 2714
## 2715 Russian River Valley Sonoma
## 2716 Friuli Grave
## 2717 Soave
## 2718 Piave
## 2719
## 2720
## 2721 Alsace
## 2722 Ile de Beauté
## 2723 Lodi Central Valley
## 2724 Bordeaux Rosé
## 2725 Rioja
## 2726 Sicilia
## 2727 Campania
## 2728 Cucamonga Valley South Coast
## 2729 Pays d'Oc
## 2730 Alsace
## 2731 Fiano di Avellino
## 2732 Lodi Central Valley
## 2733
## 2734 Calistoga Napa
## 2735
## 2736 California California Other
## 2737 Cariñena
## 2738
## 2739
## 2740 Alsace
## 2741 Napa Valley Napa
## 2742
## 2743 California California Other
## 2744 Rioja
## 2745 Bordeaux Rosé
## 2746 Bordeaux Rosé
## 2747 Greco di Tufo
## 2748
## 2749
## 2750
## 2751 California California Other
## 2752 Bordeaux Rosé
## 2753 Rioja
## 2754
## 2755 Pays d'Oc
## 2756 Pays d'Oc
## 2757
## 2758 Shenandoah Valley (CA) Sierra Foothills
## 2759 Gard
## 2760 Rioja
## 2761
## 2762
## 2763
## 2764 Sonoma County Sonoma
## 2765 Anderson Valley
## 2766 Lodi Central Valley
## 2767 California California Other
## 2768 Ribera del Duero
## 2769 Bordeaux Rosé
## 2770 Bordeaux Rosé
## 2771 Paso Robles Central Coast
## 2772 Russian River Valley Sonoma
## 2773
## 2774
## 2775
## 2776 California California Other
## 2777 Monterey Central Coast
## 2778
## 2779 Monterey Central Coast
## 2780
## 2781
## 2782 Napa Valley Napa
## 2783
## 2784 Carneros Napa-Sonoma
## 2785 Carneros Napa-Sonoma
## 2786 California California Other
## 2787 Dunnigan Hills Central Valley
## 2788
## 2789
## 2790 Ile de Beauté
## 2791 California California Other
## 2792 California California Other
## 2793
## 2794 Paso Robles Central Coast
## 2795 Paso Robles Central Coast
## 2796 Mendoza
## 2797 Pays d'Oc
## 2798 Anderson Valley
## 2799 Dry Creek Valley Sonoma
## 2800
## 2801 California California Other
## 2802 Central Coast Central Coast
## 2803 Vin de France
## 2804 California California Other
## 2805 Chianti
## 2806 Seneca Lake Finger Lakes
## 2807 Ribera del Duero
## 2808 Horse Heaven Hills Columbia Valley
## 2809 Oakville Napa
## 2810 Vino Nobile di Montepulciano
## 2811 Columbia Valley (WA) Columbia Valley
## 2812 Yakima Valley Columbia Valley
## 2813 Oakville Napa
## 2814 Columbia Valley (WA) Columbia Valley
## 2815 Columbia Valley (WA) Columbia Valley
## 2816 Chianti Montespertoli
## 2817 Amador County Sierra Foothills
## 2818 Vino Nobile di Montepulciano
## 2819 Rías Baixas
## 2820 Calistoga Napa
## 2821 Chianti Colli Senesi
## 2822 Rioja
## 2823 Chianti Classico
## 2824 Chianti Classico
## 2825 Bordeaux
## 2826 Columbia Valley (WA) Columbia Valley
## 2827 Bordeaux Blanc
## 2828 Bordeaux Supérieur
## 2829 Bordeaux Blanc
## 2830 Bordeaux Clairet
## 2831 Bordeaux Blanc
## 2832 Bordeaux Blanc
## 2833 Bordeaux Supérieur
## 2834 Chianti Classico
## 2835 Knights Valley Sonoma
## 2836 Toscana
## 2837 Brouilly
## 2838
## 2839 Washington Washington Other
## 2840 Toscana
## 2841 Toscana
## 2842 Saint-Amour
## 2843 Morgon
## 2844 Chiroubles
## 2845 Fleurie
## 2846 California California Other
## 2847 Toscana
## 2848 California California Other
## 2849 Columbia Valley (WA) Columbia Valley
## 2850 Toscana
## 2851 North Coast North Coast
## 2852 Finger Lakes Finger Lakes
## 2853 Santa Lucia Highlands Central Coast
## 2854 Morellino di Scansano
## 2855
## 2856 Brunello di Montalcino
## 2857 Central Coast
## 2858 Wahluke Slope Columbia Valley
## 2859
## 2860 Toscana
## 2861 Toscana
## 2862
## 2863 Toscana
## 2864 Dry Creek Valley Sonoma
## 2865 Ribera del Duero
## 2866 Dundee Hills Willamette Valley
## 2867
## 2868 Paso Robles Central Coast
## 2869 Sta. Rita Hills Central Coast
## 2870 Paso Robles Central Coast
## 2871 Alto Adige
## 2872 Sancerre
## 2873 Soave Classico
## 2874 Sonoma Coast Sonoma
## 2875 Sonoma Mountain Sonoma
## 2876 Calistoga Napa
## 2877 Anjou Villages Brissac
## 2878 Franciacorta
## 2879 Willamette Valley
## 2880 Columbia Valley (WA) Columbia Valley
## 2881 Paso Robles Central Coast
## 2882 Fiddletown Sierra Foothills
## 2883 Napa Valley Napa
## 2884 Sta. Rita Hills Central Coast
## 2885 Santa Ynez Valley Central Coast
## 2886 Paso Robles Central Coast
## 2887 Paso Robles Central Coast
## 2888 Anderson Valley
## 2889 Columbia Valley (WA) Columbia Valley
## 2890 Bonnezeaux
## 2891 Cahors
## 2892 Cahors
## 2893 Franciacorta
## 2894 Cahors
## 2895 Bierzo
## 2896 Bourgogne Hautes Côtes de Nuits
## 2897 Oregon Oregon Other
## 2898 Mercurey
## 2899 Amarone della Valpolicella Classico
## 2900
## 2901 Santa Cruz Mountains Central Coast
## 2902 Rioja
## 2903
## 2904 Franciacorta
## 2905 Crémant d'Alsace
## 2906 Crémant d'Alsace
## 2907 Rogue Valley Southern Oregon
## 2908 Navarra
## 2909 Franciacorta
## 2910 Mâcon-Péronne
## 2911 Maranges
## 2912 Rioja
## 2913
## 2914 Rioja
## 2915 Trento
## 2916 Russian River Valley Sonoma
## 2917 Montsant
## 2918 Sonoma Coast Sonoma
## 2919
## 2920 Amarone della Valpolicella Classico
## 2921
## 2922
## 2923 Augusta
## 2924 Dry Creek Valley Sonoma
## 2925
## 2926 Mendoza
## 2927 Saint-Bris
## 2928 Dry Creek Valley Sonoma
## 2929 Mendocino
## 2930 Texas
## 2931
## 2932 New Mexico
## 2933 Lodi Central Valley
## 2934 Alexander Valley Sonoma
## 2935 Luján de Cuyo
## 2936 Uco Valley
## 2937 Nevada
## 2938 Amador County Sierra Foothills
## 2939 Sierra Foothills Sierra Foothills
## 2940 Virginia
## 2941 North Fork of Long Island Long Island
## 2942 Columbia Valley (WA) Columbia Valley
## 2943 Mendoza
## 2944 Shenandoah Valley (CA) Sierra Foothills
## 2945 Wahluke Slope Columbia Valley
## 2946 Finger Lakes Finger Lakes
## 2947 Finger Lakes Finger Lakes
## 2948 Tupungato
## 2949 Wahluke Slope Columbia Valley
## 2950 South Australia
## 2951 Willamette Valley Willamette Valley
## 2952 Dundee Hills Willamette Valley
## 2953 California California Other
## 2954 Adelaide Plains
## 2955 Luján de Cuyo
## 2956 Sonoma County Sonoma
## 2957 Margaret River
## 2958 Sonoma County Sonoma
## 2959 Clare Valley
## 2960 Chablis
## 2961 Ribera del Duero
## 2962 Bennett Valley Sonoma
## 2963 Rueda
## 2964 Sicilia
## 2965 Mendoza
## 2966 South Australia
## 2967 Sicilia
## 2968 Dundee Hills Willamette Valley
## 2969 Paso Robles Central Coast
## 2970 Sierra Foothills Sierra Foothills
## 2971 Vino de la Tierra de Castilla
## 2972 Margaret River
## 2973 Paso Robles Central Coast
## 2974 Monticello
## 2975 Sonoma County Sonoma
## 2976 Blaye Côtes de Bordeaux
## 2977 Médoc
## 2978 Castillon Côtes de Bordeaux
## 2979 Castillon Côtes de Bordeaux
## 2980 Blaye Côtes de Bordeaux
## 2981 Alsace
## 2982 Coonawarra
## 2983 Coonawarra
## 2984 Russian River Valley Sonoma
## 2985 Livermore Valley Central Coast
## 2986 Red Hills Lake County
## 2987 Paso Robles Central Coast
## 2988 Lambrusco di Modena
## 2989
## 2990 Willamette Valley Willamette Valley
## 2991 Napa Valley Napa
## 2992 Russian River Valley Sonoma
## 2993
## 2994 Padthaway
## 2995 North Coast North Coast
## 2996 Paso Robles Central Coast
## 2997 Lessona
## 2998 Champagne
## 2999 Franciacorta
## 3000 Crémant d'Alsace
## 3001
## 3002 Vino Spumante
## 3003 Priorat
## 3004 Rías Baixas
## 3005 Boca
## 3006 Napa Valley Napa
## 3007 Columbia Valley (WA) Columbia Valley
## 3008 Walla Walla Valley (WA) Columbia Valley
## 3009 Columbia Valley (WA) Columbia Valley
## 3010 Napa Valley Napa
## 3011 Rivesaltes
## 3012 Chianti Classico
## 3013 Toro
## 3014 Walla Walla Valley (WA) Columbia Valley
## 3015 Alsace
## 3016 Colli della Toscana Centrale
## 3017 Champagne
## 3018
## 3019 Walla Walla Valley (WA) Columbia Valley
## 3020 Alsace
## 3021 Sonoma Coast Sonoma
## 3022 Ribera del Duero
## 3023 Columbia Valley (WA) Columbia Valley
## 3024 Columbia Valley (WA) Columbia Valley
## 3025 Red Mountain Columbia Valley
## 3026
## 3027 Columbia Valley (WA) Columbia Valley
## 3028 Ribera del Duero
## 3029 Napa Valley Napa
## 3030 Paso Robles Central Coast
## 3031 Napa Valley Napa
## 3032
## 3033 Rías Baixas
## 3034 Napa Valley Napa
## 3035 Montepulciano d'Abruzzo
## 3036 Yakima Valley Columbia Valley
## 3037 Yakima Valley Columbia Valley
## 3038 Montepulciano d'Abruzzo
## 3039
## 3040
## 3041 Cava
## 3042 Ancient Lakes Columbia Valley
## 3043 Mendocino County
## 3044 Columbia Valley (WA) Columbia Valley
## 3045 Chénas
## 3046 Mendoza
## 3047 Brouilly
## 3048 Washington Washington Other
## 3049 Paso Robles Central Coast
## 3050
## 3051 Valtellina Superiore
## 3052
## 3053 Sonoma County Sonoma
## 3054 Rogue Valley Southern Oregon
## 3055 Napa Valley Napa
## 3056 Amador County Sierra Foothills
## 3057 Mendoza
## 3058 Mendoza
## 3059 Moulin-à-Vent
## 3060 Columbia Gorge (WA) Washington Other
## 3061 Eola-Amity Hills Willamette Valley
## 3062 Rutherford Napa
## 3063 Sonoma Coast Sonoma
## 3064 Charmes-Chambertin
## 3065 Columbia Valley (WA) Columbia Valley
## 3066 Sicilia
## 3067 Yakima Valley Columbia Valley
## 3068 Green Valley Sonoma
## 3069 Charmes-Chambertin
## 3070 Clos de Vougeot
## 3071 Sierra Foothills Sierra Foothills
## 3072 Puligny-Montrachet
## 3073 Beaune
## 3074 Sta. Rita Hills Central Coast
## 3075 Napa Valley Napa
## 3076 Napa Valley Napa
## 3077 Horse Heaven Hills Columbia Valley
## 3078 Livermore Valley Central Coast
## 3079 Columbia Valley (WA) Columbia Valley
## 3080 Yakima Valley Columbia Valley
## 3081 Barossa Valley
## 3082 Knights Valley Sonoma
## 3083 Valpolicella Superiore
## 3084 Valpolicella Classico Superiore Ripasso
## 3085 Valpolicella Classico Superiore Ripasso
## 3086 Valpolicella Classico Superiore Ripasso
## 3087 Columbia Valley (WA) Columbia Valley
## 3088 Napa Valley Napa
## 3089 Valpolicella Classico Superiore Ripasso
## 3090 Red Mountain Columbia Valley
## 3091 Amarone della Valpolicella
## 3092 Amarone della Valpolicella Classico
## 3093 Yarra Valley
## 3094
## 3095 Alsace
## 3096 Amarone della Valpolicella Classico
## 3097 Amarone della Valpolicella
## 3098 Amarone della Valpolicella
## 3099 La Mancha
## 3100 Coonawarra
## 3101 Santa Ynez Valley Central Coast
## 3102 Santa Cruz Mountains Central Coast
## 3103
## 3104
## 3105
## 3106 Amarone della Valpolicella Classico
## 3107 Valpolicella Classico Superiore
## 3108 Crémant d'Alsace
## 3109 Amarone della Valpolicella
## 3110 Alsace
## 3111
## 3112 Bordeaux Supérieur
## 3113 Bordeaux
## 3114 Paso Robles Central Coast
## 3115 Paso Robles Central Coast
## 3116 California California Other
## 3117 Napa Valley Napa
## 3118 Willamette Valley Willamette Valley
## 3119 Central Coast Central Coast
## 3120 Russian River Valley Sonoma
## 3121 Uco Valley
## 3122 Montefalco Rosso
## 3123 Bordeaux Supérieur
## 3124 Lodi Central Valley
## 3125 Paso Robles Central Coast
## 3126 Willamette Valley Willamette Valley
## 3127 Rogue Valley Southern Oregon
## 3128 California California Other
## 3129 California California Other
## 3130 Paso Robles Central Coast
## 3131 California California Other
## 3132
## 3133 Rioja
## 3134 Bordeaux Blanc
## 3135 Bordeaux Supérieur
## 3136 Margaret River
## 3137 Uco Valley
## 3138
## 3139
## 3140
## 3141 Carneros Napa-Sonoma
## 3142 Columbia Valley (WA) Columbia Valley
## 3143 Livermore Valley Central Coast
## 3144 Washington Washington Other
## 3145 Beaune
## 3146 Walla Walla Valley (WA) Columbia Valley
## 3147
## 3148 Columbia Valley (WA) Columbia Valley
## 3149 Salta
## 3150 Mendoza
## 3151 Anderson Valley
## 3152
## 3153 Sonoma Valley Sonoma
## 3154 Wahluke Slope Columbia Valley
## 3155 Ribera del Duero
## 3156 California California Other
## 3157
## 3158 Mendoza
## 3159 Alto Valle del Río Negro
## 3160 Luján de Cuyo
## 3161 Alsace
## 3162 Prosecco
## 3163 Conegliano Valdobbiadene Prosecco Superiore
## 3164 Alsace
## 3165 Sonoma-Napa Napa-Sonoma
## 3166 Mendoza
## 3167 Conegliano Valdobbiadene Prosecco Superiore
## 3168 Prosecco
## 3169 Conegliano Valdobbiadene Prosecco Superiore
## 3170 Conegliano Valdobbiadene Prosecco Superiore
## 3171 Conegliano Valdobbiadene Prosecco Superiore
## 3172 Prosecco
## 3173 Conegliano Valdobbiadene Prosecco Superiore
## 3174 Willamette Valley Willamette Valley
## 3175 Napa Valley Napa
## 3176 Central Coast Central Coast
## 3177 Alsace
## 3178 Alsace
## 3179 Paicines Central Coast
## 3180 Mendoza
## 3181 Juliénas
## 3182 Juliénas
## 3183 Morgon
## 3184 Fleurie
## 3185 Mount Veeder Napa
## 3186 Toscana
## 3187 Green Valley Sonoma
## 3188
## 3189 Columbia Valley (WA) Columbia Valley
## 3190 Paso Robles Central Coast
## 3191 North Coast North Coast
## 3192 Juliénas
## 3193 North Fork of Long Island Long Island
## 3194 Condrieu
## 3195 Sonoma Coast Sonoma
## 3196 Côtes du Rhône
## 3197 Brunello di Montalcino
## 3198 Napa Valley Napa
## 3199
## 3200
## 3201 Saint-Amour
## 3202 Toscana
## 3203
## 3204 Wahluke Slope Columbia Valley
## 3205 Ancient Lakes Columbia Valley
## 3206 California California Other
## 3207 Napa Valley Napa
## 3208 Brunello di Montalcino
## 3209 Russian River Valley Sonoma
## 3210 Sonoma County Sonoma
## 3211 Rioja
## 3212 Montsant
## 3213 Walla Walla Valley (WA) Columbia Valley
## 3214 Montsant
## 3215 Alto Adige
## 3216 Cucamonga Valley South Coast
## 3217 Priorat
## 3218 Umbria
## 3219 Médoc
## 3220 Côtes de Provence
## 3221 Côtes de Bourg
## 3222 Dry Creek Valley Sonoma
## 3223 Napa Valley Napa
## 3224 Napa Valley Napa
## 3225 Ribera del Duero
## 3226 Alexander Valley Sonoma
## 3227 Colline Pescaresi
## 3228 Dundee Hills Willamette Valley
## 3229 Paso Robles Central Coast
## 3230 Sangiovese di Romagna Superiore
## 3231 Sonoma Valley Sonoma
## 3232 Rías Baixas
## 3233 Chehalem Mountains Willamette Valley
## 3234 Paso Robles Central Coast
## 3235
## 3236 Russian River Valley Sonoma
## 3237
## 3238 Empordà
## 3239 Napa Valley Napa
## 3240 Sangiovese di Romagna Superiore
## 3241 California California Other
## 3242 Columbia Valley (WA) Columbia Valley
## 3243 Columbia Valley (WA) Columbia Valley
## 3244 Chianti
## 3245 Napa Valley Napa
## 3246 Yakima Valley Columbia Valley
## 3247 Champagne
## 3248 California California Other
## 3249 Chianti
## 3250 Placer County Sierra Foothills
## 3251 Sonoma Coast Sonoma
## 3252 Médoc
## 3253 Bordeaux Rosé
## 3254 Chianti Classico
## 3255 Sonoma County Sonoma
## 3256 Chianti Rufina
## 3257 Napa Valley Napa
## 3258 Walla Walla Valley (WA) Columbia Valley
## 3259 Walla Walla Valley (WA) Columbia Valley
## 3260 Monterey Central Coast
## 3261 Toro
## 3262
## 3263 Red Mountain Columbia Valley
## 3264
## 3265 Champagne
## 3266 Bordeaux Rosé
## 3267 Rioja
## 3268 Chianti Classico
## 3269 Bordeaux Blanc
## 3270 Napa Valley Napa
## 3271 Cahors
## 3272
## 3273 Sicilia
## 3274
## 3275 Sicilia
## 3276 Etna
## 3277 Edna Valley Central Coast
## 3278 Barossa Valley
## 3279
## 3280 Russian River Valley Sonoma
## 3281 Santa Barbara County Central Coast
## 3282 Mendoza
## 3283 Salice Salentino
## 3284 Greco di Tufo
## 3285 Mendoza
## 3286 Walla Walla Valley (WA) Columbia Valley
## 3287 Walla Walla Valley (WA) Columbia Valley
## 3288 Sicilia
## 3289 McLaren Vale
## 3290 Walla Walla Valley (WA) Columbia Valley
## 3291 Puglia
## 3292 Lake County
## 3293 Russian River Valley Sonoma
## 3294 Lodi Central Valley
## 3295
## 3296 Sonoma Valley Sonoma
## 3297 Oak Knoll District Napa
## 3298
## 3299
## 3300 Jumilla
## 3301
## 3302 California California Other
## 3303 Cava
## 3304 Prosecco di Conegliano e Valdobbiadene
## 3305 Sonoma Coast Sonoma
## 3306 Rutherford Napa
## 3307 Alexander Valley Sonoma
## 3308 Prosecco di Valdobbiadene
## 3309
## 3310 Prosecco di Valdobbiadene
## 3311 Prosecco di Valdobbiadene
## 3312 Carneros Napa-Sonoma
## 3313 Cava
## 3314 Sta. Rita Hills Central Coast
## 3315
## 3316 Chianti Classico
## 3317 Columbia Valley (WA) Columbia Valley
## 3318 Carneros Napa-Sonoma
## 3319 Penedès
## 3320 Rosso di Montepulciano
## 3321
## 3322 Rioja
## 3323
## 3324 Morellino di Scansano
## 3325 Médoc
## 3326
## 3327 Anderson Valley
## 3328 Toscana
## 3329 Dry Creek Valley Sonoma
## 3330 Rueda
## 3331 Chianti Classico
## 3332 Pouilly-Fuissé
## 3333 Central Coast Central Coast
## 3334 Mâcon-Chardonnay
## 3335 Seneca Lake Finger Lakes
## 3336 Chorey-lès-Beaune
## 3337 Finger Lakes Finger Lakes
## 3338 Sicilia
## 3339 Seneca Lake Finger Lakes
## 3340 California California Other
## 3341 Côtes du Rhône
## 3342 Rías Baixas
## 3343 Ladoix
## 3344
## 3345 Finger Lakes Finger Lakes
## 3346 Viré-Clessé
## 3347 Campo de Borja
## 3348 Santenay
## 3349 Viré-Clessé
## 3350 Mâcon-Fuissé
## 3351 Temecula Valley South Coast
## 3352 Finger Lakes Finger Lakes
## 3353 Saint-Véran
## 3354 Mâcon-Villages
## 3355 Saint-Véran
## 3356 Finger Lakes Finger Lakes
## 3357 Napa Valley Napa
## 3358 Finger Lakes Finger Lakes
## 3359 Rioja
## 3360 Ribera del Duero
## 3361
## 3362 Oakville Napa
## 3363 Napa Valley Napa
## 3364 Eden Valley
## 3365 Amador County Sierra Foothills
## 3366
## 3367 Mendocino Ridge
## 3368 Amador County Sierra Foothills
## 3369 Dundee Hills Willamette Valley
## 3370 Sonoma Coast Sonoma
## 3371 Lodi Central Valley
## 3372 Willamette Valley
## 3373 Willamette Valley
## 3374 Carneros Napa-Sonoma
## 3375 Fleurie
## 3376 Yakima Valley Columbia Valley
## 3377 Alexander Valley Sonoma
## 3378 Columbia Valley (WA) Columbia Valley
## 3379
## 3380 Columbia Valley (WA) Columbia Valley
## 3381 Willamette Valley Willamette Valley
## 3382
## 3383
## 3384 Yorkville Highlands North Coast
## 3385 Eola-Amity Hills Willamette Valley
## 3386 Empordà
## 3387 Walla Walla Valley (WA) Columbia Valley
## 3388
## 3389
## 3390 Lake Michigan Shore
## 3391 Spain
## 3392 San Juan
## 3393 Penedès
## 3394 Dry Creek Valley Sonoma
## 3395 Sonoma Coast Sonoma
## 3396 Russian River Valley Sonoma
## 3397 La Consulta
## 3398 Lodi Central Valley
## 3399 Napa County-Sonoma County Napa-Sonoma
## 3400 Mendoza
## 3401
## 3402
## 3403
## 3404 Applegate Valley Southern Oregon
## 3405 Lake Michigan Shore
## 3406 Leelanau Peninsula
## 3407
## 3408
## 3409 Vino de la Tierra de Castilla
## 3410 Sonoma County Sonoma
## 3411 Rías Baixas
## 3412
## 3413 Napa Valley Napa
## 3414
## 3415 Trentino
## 3416 California California Other
## 3417 Ribera del Duero
## 3418 Solano County North Coast
## 3419 Russian River Valley Sonoma
## 3420 Paso Robles Central Coast
## 3421
## 3422
## 3423
## 3424 Dry Creek Valley Sonoma
## 3425 Santa Barbara County Central Coast
## 3426 Muscadet Sèvre et Maine
## 3427
## 3428
## 3429 Umpqua Valley Southern Oregon
## 3430 Napa Valley Napa
## 3431 Napa Valley Napa
## 3432 Moulin-à-Vent
## 3433 Columbia Gorge (WA) Washington Other
## 3434 Eola-Amity Hills Willamette Valley
## 3435 Jumilla
## 3436 Yorkville Highlands North Coast
## 3437 Wahluke Slope Columbia Valley
## 3438 Central Coast Central Coast
## 3439 Paso Robles Central Coast
## 3440 Rueda
## 3441
## 3442 Paso Robles Central Coast
## 3443
## 3444
## 3445
## 3446 Carneros Napa-Sonoma
## 3447 Willamette Valley Willamette Valley
## 3448 Barolo
## 3449 Colline Novaresi
## 3450 California California Other
## 3451 California California Other
## 3452 Adelaide
## 3453 Mendoza
## 3454 California California Other
## 3455 Adelaide Hills
## 3456 Russian River Valley Sonoma
## 3457 Agrelo
## 3458 Mendoza
## 3459 Sierra Foothills Sierra Foothills
## 3460 Adelaide Hills
## 3461 California California Other
## 3462 Chehalem Mountains Willamette Valley
## 3463
## 3464 Veneto Orientale
## 3465 Vin de Pays des Cévennes
## 3466 Franciacorta
## 3467 Central Coast Central Coast
## 3468
## 3469 Paso Robles Central Coast
## 3470 Santa Cruz Mountains Central Coast
## 3471 Barbaresco
## 3472 Rioja
## 3473 Luberon
## 3474
## 3475
## 3476 Willamette Valley
## 3477 Pessac-Léognan
## 3478 Listrac-Médoc
## 3479 Haut-Médoc
## 3480 Pauillac
## 3481 Pomerol
## 3482
## 3483 Alsace
## 3484 Alsace
## 3485 Finger Lakes Finger Lakes
## 3486 Willamette Valley Willamette Valley
## 3487 Alsace
## 3488 Finger Lakes Finger Lakes
## 3489 Valpolicella Classico Superiore Ripasso
## 3490 Sierra Foothills Sierra Foothills
## 3491 Valpolicella Classico Superiore Ripasso
## 3492 Sonoma County Sonoma
## 3493
## 3494 North Fork of Long Island Long Island
## 3495 Amarone della Valpolicella Classico
## 3496
## 3497
## 3498 Alsace
## 3499 Amarone della Valpolicella Classico
## 3500 Finger Lakes Finger Lakes
## 3501 California California Other
## 3502 Champagne
## 3503 Yakima Valley Columbia Valley
## 3504 California California Other
## 3505 Adelaida District Central Coast
## 3506 Columbia Valley (WA) Columbia Valley
## 3507 Napa Valley Napa
## 3508 Alexander Valley Sonoma
## 3509 Oregon Oregon Other
## 3510 Vernaccia di San Gimignano
## 3511 Calabria
## 3512 Chehalem Mountains Willamette Valley
## 3513 Vernaccia di San Gimignano
## 3514 Napa Valley Napa
## 3515 Carneros Napa-Sonoma
## 3516 Columbia Valley (WA) Columbia Valley
## 3517 Champagne
## 3518 Carneros Napa-Sonoma
## 3519 Rías Baixas
## 3520 Champagne
## 3521 St. Helena Napa
## 3522 Paso Robles Central Coast
## 3523 Paso Robles Central Coast
## 3524 Romagna
## 3525 Champagne
## 3526 Champagne
## 3527 Taurasi
## 3528 Aglianico del Vulture
## 3529 California California Other
## 3530
## 3531 Barolo
## 3532
## 3533 Margaret River
## 3534 Columbia Valley (WA) Columbia Valley
## 3535 McLaren Vale
## 3536 Russian River Valley Sonoma
## 3537
## 3538 Haut-Médoc
## 3539
## 3540 Barolo
## 3541 Barbaresco
## 3542 Barbaresco
## 3543 Horse Heaven Hills Columbia Valley
## 3544 Columbia Valley (WA) Columbia Valley
## 3545 Barolo
## 3546 Russian River Valley Sonoma
## 3547 Russian River Valley Sonoma
## 3548 Frankland River
## 3549 Barolo
## 3550 Russian River Valley Sonoma
## 3551
## 3552 Columbia Valley (WA) Columbia Valley
## 3553
## 3554 Russian River Valley Sonoma
## 3555 Barossa
## 3556
## 3557 Columbia Valley (WA) Columbia Valley
## 3558
## 3559 Walla Walla Valley (WA) Columbia Valley
## 3560 Sancerre
## 3561
## 3562 Ribbon Ridge Willamette Valley
## 3563 Central Coast Central Coast
## 3564 Terre Siciliane
## 3565 Eloro
## 3566
## 3567 Menetou-Salon
## 3568 Sancerre
## 3569
## 3570
## 3571 Sicilia
## 3572 Mendoza
## 3573 Willamette Valley
## 3574 Agrelo
## 3575
## 3576 Menetou-Salon
## 3577
## 3578 Temecula Valley South Coast
## 3579 Willamette Valley Willamette Valley
## 3580 Patagonia
## 3581 Willamette Valley Willamette Valley
## 3582 Monterey County Central Coast
## 3583 Eola-Amity Hills Willamette Valley
## 3584
## 3585 Middleburg
## 3586
## 3587 Terre Siciliane
## 3588 Saumur-Champigny
## 3589
## 3590 Chianti Classico
## 3591 Faugères
## 3592 Pessac-Léognan
## 3593 Fronsac
## 3594 Calistoga Napa
## 3595 South Eastern Australia
## 3596 South Eastern Australia
## 3597 Columbia Valley (WA) Columbia Valley
## 3598 Bordeaux Blanc
## 3599 Padthaway
## 3600 Sonoma Coast Sonoma
## 3601 North Fork of Long Island Long Island
## 3602 Dry Creek Valley Sonoma
## 3603 Bordeaux
## 3604 Coteaux du Languedoc
## 3605 Horse Heaven Hills Columbia Valley
## 3606 Bolgheri
## 3607
## 3608 Santa Maria Valley Central Coast
## 3609 Santa Barbara County Central Coast
## 3610 Horse Heaven Hills Columbia Valley
## 3611
## 3612 Russian River Valley Sonoma
## 3613
## 3614
## 3615 Ribera del Duero
## 3616 Crémant de Limoux
## 3617
## 3618 Cayuga Lake Finger Lakes
## 3619 Paso Robles Central Coast
## 3620
## 3621
## 3622
## 3623 Napa Valley Napa
## 3624 Napa Valley Napa
## 3625 Paso Robles Central Coast
## 3626 Sonoma County Sonoma
## 3627 Napa Valley Napa
## 3628
## 3629 Sonoma Coast Sonoma
## 3630 Oregon Oregon Other
## 3631
## 3632
## 3633 Paso Robles Central Coast
## 3634 Paso Robles Central Coast
## 3635 California California Other
## 3636
## 3637 Paso Robles Central Coast
## 3638
## 3639 Umpqua Valley Southern Oregon
## 3640
## 3641
## 3642
## 3643 Pauillac
## 3644 Pauillac
## 3645 Pessac-Léognan
## 3646 Umbria
## 3647
## 3648
## 3649 Santa Maria Valley Central Coast
## 3650 Columbia Valley (WA) Columbia Valley
## 3651 Chalk Hill Sonoma
## 3652 Santa Barbara County Central Coast
## 3653
## 3654 Alexander Valley Sonoma
## 3655 Red Mountain Columbia Valley
## 3656 Santa Ynez Valley Central Coast
## 3657
## 3658 Mendoza
## 3659 Napa Valley Napa
## 3660 Horse Heaven Hills Columbia Valley
## 3661 St. Helena Napa
## 3662 Columbia Valley (WA) Columbia Valley
## 3663 Spring Mountain District Napa
## 3664 Santa Barbara County Central Coast
## 3665 Walla Walla Valley (WA) Columbia Valley
## 3666 Sonoma Coast Sonoma
## 3667
## 3668
## 3669 Happy Canyon of Santa Barbara Central Coast
## 3670 Lodi Central Valley
## 3671 Central Coast Central Coast
## 3672 Côtes de Provence
## 3673 California California Other
## 3674
## 3675 North Coast North Coast
## 3676 Piedmont
## 3677 Bergerac Sec
## 3678 Lodi Central Valley
## 3679 California California Other
## 3680 South Eastern Australia
## 3681
## 3682
## 3683
## 3684
## 3685
## 3686
## 3687 Sonoma Coast Sonoma
## 3688 Champagne
## 3689 Russian River Valley Sonoma
## 3690
## 3691 Chablis
## 3692 Beaune
## 3693 Campo de Borja
## 3694 Crémant de Bourgogne
## 3695 Valdobbiadene Prosecco Superiore
## 3696 Franciacorta
## 3697 Santa Lucia Highlands Central Coast
## 3698 Bierzo
## 3699 Champagne
## 3700 Champagne
## 3701 Amarone della Valpolicella
## 3702 Mendoza
## 3703
## 3704 Mendoza
## 3705 Russian River Valley Sonoma
## 3706 Franciacorta
## 3707
## 3708 Eola-Amity Hills Willamette Valley
## 3709 Eola-Amity Hills Willamette Valley
## 3710 Bierzo
## 3711
## 3712 Mendoza
## 3713 Santa Barbara County Central Coast
## 3714 Irpinia
## 3715 Greco di Tufo
## 3716
## 3717
## 3718 Irpinia
## 3719 Vino de la Tierra de Castilla y León
## 3720 Santa Ynez Valley Central Coast
## 3721 Rías Baixas
## 3722 Columbia Valley (WA) Columbia Valley
## 3723
## 3724 Columbia Valley (WA) Columbia Valley
## 3725 Saint-Émilion
## 3726 Haut-Médoc
## 3727 Bordeaux Supérieur
## 3728 Rosso di Montalcino
## 3729 Cava
## 3730 Beaujolais-Villages
## 3731 Fronton
## 3732
## 3733 California California Other
## 3734 Picpoul de Pinet
## 3735 Alsace
## 3736 Côtes de Gascogne
## 3737 Coteaux d'Aix-en-Provence
## 3738 Cava
## 3739
## 3740
## 3741 Rosso di Montalcino
## 3742 Beaujolais-Villages
## 3743 Rosso di Montalcino
## 3744
## 3745 Rosso di Montalcino
## 3746 Paso Robles Central Coast
## 3747 Napa Valley Napa
## 3748
## 3749 California California Other
## 3750 Cahors
## 3751 Paso Robles Central Coast
## 3752 Morgon
## 3753 Picpoul de Pinet
## 3754 Alsace
## 3755 Rioja
## 3756
## 3757 Rosso di Montalcino
## 3758 Sonoma County Sonoma
## 3759 Côtes de Provence
## 3760 Mendoza
## 3761 Mendoza
## 3762 Sicilia
## 3763 Seneca Lake Finger Lakes
## 3764
## 3765 Ancient Lakes Columbia Valley
## 3766 New York New York Other
## 3767 Napa Valley Napa
## 3768 Rioja
## 3769 Sannio
## 3770 Greco di Tufo
## 3771 Carneros Napa-Sonoma
## 3772 Crémant d'Alsace
## 3773 Monticello
## 3774 Russian River Valley Sonoma
## 3775 Napa Valley Napa
## 3776 Sonoma Coast Sonoma
## 3777 Basilicata
## 3778 Middleburg
## 3779 Virginia
## 3780 North Fork of Long Island Long Island
## 3781 Finger Lakes Finger Lakes
## 3782
## 3783 Columbia Valley (WA) Columbia Valley
## 3784 Alsace
## 3785 Monticello
## 3786 Fiano di Avellino
## 3787 Terre Siciliane
## 3788 Sonoma Valley Sonoma
## 3789 Red Hills Lake County
## 3790
## 3791 Columbia Valley (WA) Columbia Valley
## 3792 Napa Valley Napa
## 3793 Rosso di Montalcino
## 3794 Washington Washington Other
## 3795 Seneca Lake Finger Lakes
## 3796 Red Mountain Columbia Valley
## 3797 Morellino di Scansano
## 3798 Rosso di Montepulciano
## 3799 Rosso di Montalcino
## 3800 Rosso di Montalcino
## 3801 North Fork of Long Island Long Island
## 3802
## 3803 Yakima Valley Columbia Valley
## 3804 Yakima Valley Columbia Valley
## 3805 Rosso di Montalcino
## 3806 Cava
## 3807 Monterey Central Coast
## 3808 California California Other
## 3809 Rioja
## 3810
## 3811 Russian River Valley Sonoma
## 3812 Côtes du Marmandais
## 3813 California California Other
## 3814 Beaujolais-Villages
## 3815 Cahors
## 3816 Costières de Nîmes
## 3817 Bergerac Sec
## 3818 Vino Nobile di Montepulciano
## 3819
## 3820
## 3821 Santa Maria Valley Central Coast
## 3822 Rioja
## 3823 Santa Lucia Highlands Central Coast
## 3824 Coteaux du Layon
## 3825 Cornas
## 3826 Cornas
## 3827 Vino Nobile di Montepulciano
## 3828 Chalone Central Coast
## 3829 California California Other
## 3830 Alsace
## 3831 Chianti Classico
## 3832 Napa Valley Napa
## 3833 Savennières
## 3834 Alsace
## 3835 Ventoux
## 3836 Vino Nobile di Montepulciano
## 3837
## 3838 Chianti Classico
## 3839 Alsace
## 3840 Napa Valley Napa
## 3841 Sonoma Coast Sonoma
## 3842
## 3843 Chianti Classico
## 3844
## 3845 Chianti Classico
## 3846 Alsace
## 3847 Russian River Valley Sonoma
## 3848 Taburno
## 3849 Faro
## 3850 Rutherford Napa
## 3851
## 3852 Dundee Hills Willamette Valley
## 3853 Chinon
## 3854 Chinon
## 3855 Savennières
## 3856 Howell Mountain Napa
## 3857
## 3858 Santa Barbara County Central Coast
## 3859 Santa Cruz Mountains Central Coast
## 3860 Napa Valley Napa
## 3861 Napa Valley Napa
## 3862 Sta. Rita Hills Central Coast
## 3863 Sebino
## 3864 Vouvray
## 3865 Russian River Valley Sonoma
## 3866 Santa Ynez Valley Central Coast
## 3867 Columbia Gorge (OR) Oregon Other
## 3868 Falerno del Massico
## 3869 Napa Valley Napa
## 3870 Carneros Napa-Sonoma
## 3871 Savennières
## 3872
## 3873 Howell Mountain Napa
## 3874 Oregon Oregon Other
## 3875 Chehalem Mountains Willamette Valley
## 3876 Trebbiano d'Abruzzo
## 3877 Russian River Valley Sonoma
## 3878 Crémant de Loire
## 3879 Carneros Napa-Sonoma
## 3880 Rutherford Napa
## 3881 South Australia
## 3882 Washington Washington Other
## 3883
## 3884 Rosso di Montalcino
## 3885 Columbia Valley (WA) Columbia Valley
## 3886 Terra Alta
## 3887 Victoria
## 3888 Valdepeñas
## 3889 Washington Washington Other
## 3890 Sonoma Valley Sonoma
## 3891 Ribeiro
## 3892
## 3893 Napa Valley Napa
## 3894 Russian River Valley Sonoma
## 3895 Menetou-Salon
## 3896 Cariñena
## 3897 Napa Valley Napa
## 3898 Yecla
## 3899 Paso Robles Central Coast
## 3900 Applegate Valley Southern Oregon
## 3901 Friuli Colli Orientali
## 3902 Sonoma County Sonoma
## 3903 Collio
## 3904
## 3905 Carneros Napa-Sonoma
## 3906 Collio
## 3907 Crémant de Loire
## 3908 Alto Adige
## 3909 Collio
## 3910 Friuli Colli Orientali
## 3911 Trentino
## 3912 Trentino
## 3913 Oregon Oregon Other
## 3914 Crémant de Loire
## 3915 Alto Adige Terlano
## 3916 Carneros Napa-Sonoma
## 3917 Santa Cruz Mountains Central Coast
## 3918 Uco Valley
## 3919 Alto Adige
## 3920 Rueda
## 3921 Santa Lucia Highlands Central Coast
## 3922 Applegate Valley Southern Oregon
## 3923
## 3924 Dry Creek Valley Sonoma
## 3925 Collio
## 3926 Santa Clara Valley Central Coast
## 3927 Alto Adige
## 3928 Collio
## 3929 Sonoma County Sonoma
## 3930 Mendoza
## 3931 Mendoza
## 3932 California California Other
## 3933 Dry Creek Valley Sonoma
## 3934 San Juan
## 3935 Mendoza
## 3936 Navarra
## 3937 California California Other
## 3938 Napa Valley Napa
## 3939
## 3940 Santa Ynez Valley Central Coast
## 3941 Mendoza
## 3942 Mendoza
## 3943 Livermore Valley Central Coast
## 3944 Central Coast Central Coast
## 3945 Cariñena
## 3946
## 3947 California California Other
## 3948 South Eastern Australia
## 3949
## 3950 South Eastern Australia
## 3951
## 3952 Mendoza
## 3953 South Eastern Australia
## 3954 Calatayud
## 3955 Vin Santo del Chianti
## 3956 Fleurie
## 3957 Moulin-à-Vent
## 3958 Napa Valley Napa
## 3959
## 3960
## 3961 Columbia Valley (WA) Columbia Valley
## 3962 Mendoza
## 3963
## 3964 Vosne-Romanée
## 3965 Nuits-St.-Georges
## 3966 Napa Valley Napa
## 3967 Santa Barbara County Central Coast
## 3968 Dry Creek Valley Sonoma
## 3969 Vin Santo del Chianti
## 3970
## 3971 Valdobbiadene Superiore di Cartizze
## 3972 Gevrey-Chambertin
## 3973 Haut-Médoc
## 3974 Saint-Estèphe
## 3975 St. Helena Napa
## 3976 Russian River Valley Sonoma
## 3977 Santa Barbara County Central Coast
## 3978 Recioto della Valpolicella Classico
## 3979 Gavi di Gavi
## 3980
## 3981 Columbia Valley (WA) Columbia Valley
## 3982 Russian River Valley Sonoma
## 3983
## 3984
## 3985 Barbera d'Alba Superiore
## 3986 Paso Robles Central Coast
## 3987 Monferrato
## 3988 Monferrato
## 3989 Dolcetto d'Alba
## 3990 Roero Arneis
## 3991 Dolcetto di Dogliani
## 3992 Horse Heaven Hills Columbia Valley
## 3993 Russian River Valley Sonoma
## 3994 Paso Robles Central Coast
## 3995 Napa Valley Napa
## 3996 Neuquén
## 3997 Moscato d'Asti
## 3998 Finger Lakes Finger Lakes
## 3999 Ribera del Duero
## 4000 Finger Lakes Finger Lakes
## 4001 Toro
## 4002 Virginia
## 4003 Mendoza
## 4004 Chalk Hill Sonoma
## 4005 Côtes de Provence Sainte-Victoire
## 4006 Côtes de Provence
## 4007 Fiano di Avellino
## 4008
## 4009 Red Mountain Columbia Valley
## 4010 Finger Lakes Finger Lakes
## 4011 Sannio
## 4012 Mendoza
## 4013
## 4014 Wahluke Slope Columbia Valley
## 4015 Washington Washington Other
## 4016
## 4017 Cava
## 4018
## 4019 Falerno del Massico
## 4020
## 4021 Russian River Valley Sonoma
## 4022 Paso Robles Central Coast
## 4023 Columbia Valley (WA) Columbia Valley
## 4024 Vino de la Tierra de Castilla y León
## 4025
## 4026
## 4027 Greco di Tufo
## 4028 Yakima Valley Columbia Valley
## 4029 Sonoma County Sonoma
## 4030 Sierra Foothills Sierra Foothills
## 4031 Santa Ynez Valley Central Coast
## 4032 Central Coast
## 4033 Crémant de Bourgogne
## 4034 Horse Heaven Hills Columbia Valley
## 4035 Columbia Valley (WA) Columbia Valley
## 4036 Muscadet Sèvre et Maine
## 4037 Santenay
## 4038 Santenay
## 4039 Saint-Nicolas-de-Bourgueil
## 4040 Soave
## 4041 Soave Classico
## 4042 Lake Chelan Columbia Valley
## 4043 Red Mountain Columbia Valley
## 4044 Yakima Valley Columbia Valley
## 4045 Columbia Valley (WA) Columbia Valley
## 4046 Mendoza
## 4047
## 4048 Hudson River Region New York Other
## 4049
## 4050
## 4051 Valle de Uco
## 4052
## 4053 Columbia Valley (WA) Columbia Valley
## 4054 Amarone della Valpolicella Classico
## 4055 Mendoza
## 4056 Columbia Valley (WA) Columbia Valley
## 4057 Paso Robles Central Coast
## 4058 Sonoma County Sonoma
## 4059 Russian River Valley Sonoma
## 4060 Columbia Valley (WA) Columbia Valley
## 4061 Roussette de Savoie
## 4062 Napa County-Sonoma County Napa-Sonoma
## 4063 Sonoma County Sonoma
## 4064 Walla Walla Valley (WA) Columbia Valley
## 4065 North Fork of Long Island Long Island
## 4066 Columbia Valley (WA) Columbia Valley
## 4067 Knights Valley Sonoma
## 4068 Maremma Toscana
## 4069 Barbera d'Asti Superiore
## 4070 El Dorado Sierra Foothills
## 4071 Barolo
## 4072 Columbia Valley (WA) Columbia Valley
## 4073 Dry Creek Valley Sonoma
## 4074
## 4075 Temecula Valley South Coast
## 4076 Sonoma County Sonoma
## 4077 Rattlesnake Hills Columbia Valley
## 4078 Alexander Valley Sonoma
## 4079 Santa Barbara County Central Coast
## 4080 Napa Valley Napa
## 4081 Horse Heaven Hills Columbia Valley
## 4082 Pouilly-Fumé
## 4083 El Dorado Sierra Foothills
## 4084 Santa Cruz Mountains Central Coast
## 4085 Rockpile Sonoma
## 4086
## 4087 Wahluke Slope Columbia Valley
## 4088 Sonoma Valley Sonoma
## 4089 Cariñena
## 4090 Friuli Grave
## 4091
## 4092
## 4093
## 4094
## 4095 Umpqua Valley Southern Oregon
## 4096 Napa Valley Napa
## 4097 Napa Valley Napa
## 4098
## 4099
## 4100 Barossa
## 4101 Napa Valley Napa
## 4102 Napa Valley Napa
## 4103 Dry Creek Valley Sonoma
## 4104 Napa Valley Napa
## 4105
## 4106 Napa Valley Napa
## 4107 Willamette Valley Willamette Valley
## 4108
## 4109
## 4110
## 4111 Russian River Valley Sonoma
## 4112 Sonoma Coast Sonoma
## 4113 Sonoma Valley Sonoma
## 4114 El Dorado Sierra Foothills
## 4115
## 4116
## 4117 North Coast North Coast
## 4118 El Dorado Sierra Foothills
## 4119 El Dorado Sierra Foothills
## 4120 Sicilia
## 4121
## 4122 Champagne
## 4123 Champagne
## 4124 Livermore Valley Central Coast
## 4125 Livermore Valley Central Coast
## 4126 Alta Langa
## 4127 Franciacorta
## 4128 Champagne
## 4129 Champagne
## 4130 Champagne
## 4131 Calistoga Napa
## 4132 Blaye Côtes de Bordeaux
## 4133 Santa Ynez Valley Central Coast
## 4134 Eola-Amity Hills Willamette Valley
## 4135
## 4136 Champagne
## 4137
## 4138 McLaren Vale
## 4139 Champagne
## 4140
## 4141 Willamette Valley Willamette Valley
## 4142 Chablis
## 4143 Chablis
## 4144 El Dorado Sierra Foothills
## 4145 Taurasi
## 4146
## 4147 Edna Valley Central Coast
## 4148 Willamette Valley Willamette Valley
## 4149 Santa Barbara County Central Coast
## 4150 Sta. Rita Hills Central Coast
## 4151 Columbia Valley (WA) Columbia Valley
## 4152 Champagne
## 4153 Eola-Amity Hills Willamette Valley
## 4154 Dry Creek Valley Sonoma
## 4155 Etna
## 4156 Champagne
## 4157 Santa Clara Valley Central Coast
## 4158 Sonoma Coast Sonoma
## 4159 Sonoma Coast Sonoma
## 4160 Paso Robles Willow Creek District Central Coast
## 4161 California California Other
## 4162 Calaveras County Sierra Foothills
## 4163
## 4164 Aglianico del Vulture
## 4165
## 4166 Edna Valley Central Coast
## 4167 Taurasi
## 4168 Eola-Amity Hills Willamette Valley
## 4169 Yakima Valley Columbia Valley
## 4170
## 4171 El Dorado County Sierra Foothills
## 4172 Texas
## 4173 Columbia Valley (WA) Columbia Valley
## 4174 Sonoma Valley Sonoma
## 4175 Napa County Napa
## 4176 Central Coast Central Coast
## 4177 Napa Valley Napa
## 4178 Columbia Valley (WA) Columbia Valley
## 4179 Columbia Valley (WA) Columbia Valley
## 4180 Columbia Valley (WA) Columbia Valley
## 4181 Texas
## 4182 Finger Lakes Finger Lakes
## 4183
## 4184 Côtes de Provence
## 4185 Côtes de Nuits Villages
## 4186 Vigneti delle Dolomiti
## 4187 Russian River Valley Sonoma
## 4188 Monterey County Central Coast
## 4189 Finger Lakes Finger Lakes
## 4190 New York New York Other
## 4191 Amarone della Valpolicella
## 4192 Carneros Napa-Sonoma
## 4193
## 4194 Central Coast Central Coast
## 4195 Edna Valley Central Coast
## 4196 Yakima Valley Columbia Valley
## 4197
## 4198 Coteaux d'Aix-en-Provence
## 4199
## 4200
## 4201 Sonoma Valley Sonoma
## 4202 Livermore Valley Central Coast
## 4203 Soave Classico
## 4204 Paso Robles Willow Creek District Central Coast
## 4205 Bourgogne Hautes Côtes de Beaune
## 4206 Red Mountain Columbia Valley
## 4207
## 4208 Mendoza
## 4209 Bourgogne Hautes Côtes de Nuits
## 4210 Vigneti delle Dolomiti
## 4211 Vino de la Tierra de Castilla y León
## 4212
## 4213
## 4214
## 4215 Santa Barbara County Central Coast
## 4216
## 4217 Russian River Valley Sonoma
## 4218 Brunello di Montalcino
## 4219
## 4220 Vista Flores
## 4221 Carneros Napa-Sonoma
## 4222 Soave
## 4223 Veneto
## 4224 Mendoza
## 4225 Santa Ynez Valley Central Coast
## 4226
## 4227 Santa Barbara County Central Coast
## 4228 Cahors
## 4229 California California Other
## 4230 Alexander Valley Sonoma
## 4231 Rosso di Montalcino
## 4232 Mendoza
## 4233 North Fork of Long Island Long Island
## 4234 Yakima Valley Columbia Valley
## 4235 Columbia Valley (WA) Columbia Valley
## 4236
## 4237 Paso Robles Central Coast
## 4238 Carneros Napa-Sonoma
## 4239 Dry Creek Valley Sonoma
## 4240 Saint-Aubin
## 4241 Napa Valley Napa
## 4242
## 4243 Rutherford Napa
## 4244
## 4245 Columbia Valley (WA) Columbia Valley
## 4246 Sonoma Coast Sonoma
## 4247 Mendocino County
## 4248
## 4249 Lodi Central Valley
## 4250 California California Other
## 4251 Horse Heaven Hills Columbia Valley
## 4252 Rattlesnake Hills Columbia Valley
## 4253 Bierzo
## 4254 Lake County
## 4255 Columbia Valley (WA) Columbia Valley
## 4256 South Coast
## 4257 California California Other
## 4258 Mendoza
## 4259 Barbera d'Alba Superiore
## 4260
## 4261 Yakima Valley Columbia Valley
## 4262 Columbia Valley (WA) Columbia Valley
## 4263 Mediterranée
## 4264 Calistoga Napa
## 4265 Jumilla
## 4266 Bordeaux
## 4267 Blaye Côtes de Bordeaux
## 4268 Sonoma County Sonoma
## 4269 Columbia Valley (WA) Columbia Valley
## 4270 Napa Valley Napa
## 4271 California California Other
## 4272 Côtes du Rhône
## 4273 Finger Lakes Finger Lakes
## 4274 Barbera d'Alba
## 4275 California California Other
## 4276 Columbia Valley (WA) Columbia Valley
## 4277 Yakima Valley Columbia Valley
## 4278 Mediterranée
## 4279 Vin de Savoie
## 4280 Vin de France
## 4281 Napa Valley Napa
## 4282 Russian River Valley Sonoma
## 4283 Blaye Côtes de Bordeaux
## 4284 Sonoma County Sonoma
## 4285 Muscadet Sèvre et Maine
## 4286 Cava
## 4287 Almansa
## 4288 Yecla
## 4289 Champagne
## 4290 Lake County
## 4291 Sonoma County Sonoma
## 4292 Marin County North Coast
## 4293 Carneros Napa-Sonoma
## 4294
## 4295 Soave Classico
## 4296
## 4297 Columbia Valley (WA) Columbia Valley
## 4298 Etna
## 4299 Sonoma Valley Sonoma
## 4300 Horse Heaven Hills Columbia Valley
## 4301 Etna
## 4302 Columbia Valley (WA) Columbia Valley
## 4303 Champagne
## 4304 Haut-Médoc
## 4305 Amarone della Valpolicella Classico
## 4306 Amarone della Valpolicella Classico
## 4307
## 4308 Amarone della Valpolicella Classico
## 4309 Santa Cruz Mountains Central Coast
## 4310 Calaveras County Sierra Foothills
## 4311 Amarone della Valpolicella Classico
## 4312
## 4313 Suisun Valley North Coast
## 4314 Barsac
## 4315 Rioja
## 4316 Pouilly-Fumé
## 4317 Finger Lakes Finger Lakes
## 4318
## 4319
## 4320 Dundee Hills Willamette Valley
## 4321
## 4322 Jerez
## 4323 Conero
## 4324 Sonoma Coast Sonoma
## 4325 Margaret River
## 4326 Sauternes
## 4327 Willamette Valley Willamette Valley
## 4328 Willamette Valley Willamette Valley
## 4329 Sancerre
## 4330 Jerez
## 4331 Menfi
## 4332 Sicilia
## 4333 McLaren Vale
## 4334 Yarra Valley
## 4335 Montilla-Moriles
## 4336 Sta. Rita Hills Central Coast
## 4337 Valdeorras
## 4338 Sonoma Coast Sonoma
## 4339 Russian River Valley Sonoma
## 4340 Brunello di Montalcino
## 4341 Willamette Valley Willamette Valley
## 4342
## 4343 Dundee Hills Willamette Valley
## 4344 Sonoma Coast Sonoma
## 4345 Sonoma Coast Sonoma
## 4346 Willamette Valley Willamette Valley
## 4347 Dunnigan Hills Central Valley
## 4348 Sonoma Valley Sonoma
## 4349 Paso Robles Central Coast
## 4350 Eola-Amity Hills Willamette Valley
## 4351 Sonoma Mountain Sonoma
## 4352 Sonoma Mountain Sonoma
## 4353 Vino Nobile di Montepulciano
## 4354 Sonoma County Sonoma
## 4355 Ribera del Duero
## 4356 Vino Nobile di Montepulciano
## 4357 Haut-Médoc
## 4358 Listrac-Médoc
## 4359 Médoc
## 4360 Fronsac
## 4361 Médoc
## 4362 Saint-Émilion
## 4363 Médoc
## 4364
## 4365 Pouilly-Fuissé
## 4366 Collio
## 4367 Napa Valley Napa
## 4368 Río Negro Valley
## 4369 Saint-Véran
## 4370 Mendoza
## 4371 Alto Adige
## 4372 Pernand-Vergelesses
## 4373 Saint-Véran
## 4374 Meursault
## 4375 Napa Valley Napa
## 4376 Red Mountain Columbia Valley
## 4377 Carmel Valley Central Coast
## 4378 Pouilly-Fuissé
## 4379 Rioja
## 4380 Mâcon-Villages
## 4381 Columbia Valley (WA) Columbia Valley
## 4382 Red Mountain Columbia Valley
## 4383 Meursault
## 4384 Meursault
## 4385 Brouilly
## 4386 Mâcon-Milly Lamartine
## 4387 Santenay
## 4388 Côte Chalonnaise
## 4389 Saint-Véran
## 4390 Walla Walla Valley (WA) Columbia Valley
## 4391 Columbia Valley (WA) Columbia Valley
## 4392 Walla Walla Valley (WA) Columbia Valley
## 4393 California California Other
## 4394 Columbia Valley (WA) Columbia Valley
## 4395 Red Mountain Columbia Valley
## 4396 Columbia Valley (WA) Columbia Valley
## 4397 Anderson Valley
## 4398 Pouilly-Fuissé
## 4399 Pouilly-Fuissé
## 4400 Sonoma County Sonoma
## 4401 Finger Lakes Finger Lakes
## 4402 Bourgogne Hautes Côtes de Nuits
## 4403 Morgon
## 4404 Barbaresco
## 4405 Marsannay
## 4406 North Fork of Long Island Long Island
## 4407 Cava
## 4408 Finger Lakes Finger Lakes
## 4409 Russian River Valley Sonoma
## 4410 Pouilly-Fuissé
## 4411 Wahluke Slope Columbia Valley
## 4412 Red Mountain Columbia Valley
## 4413 Horse Heaven Hills Columbia Valley
## 4414 Saint-Véran
## 4415 Santa Maria Valley Central Coast
## 4416 Málaga
## 4417 Barbera d'Asti
## 4418 Walla Walla Valley (WA) Columbia Valley
## 4419 Columbia Valley (WA) Columbia Valley
## 4420 Wahluke Slope Columbia Valley
## 4421
## 4422 Sta. Rita Hills Central Coast
## 4423 Sierra Foothills Sierra Foothills
## 4424 Rioja
## 4425 Horse Heaven Hills Columbia Valley
## 4426 Barbaresco
## 4427 Monterey County Central Coast
## 4428 Santa Cruz Mountains Central Coast
## 4429 Barbaresco
## 4430 Chénas
## 4431 Coteaux Varois en Provence
## 4432 Contra Costa County Central Coast
## 4433 Barbaresco
## 4434 Meursault
## 4435 Auxey-Duresses
## 4436 Savigny-lès-Beaune
## 4437 Mâcon-Verze
## 4438 Finger Lakes Finger Lakes
## 4439 Santa Ynez Valley Central Coast
## 4440 Chénas
## 4441
## 4442 Romagna
## 4443 Columbia Valley (WA) Columbia Valley
## 4444 Barbaresco
## 4445 Rogue Valley Southern Oregon
## 4446 Chianti
## 4447 Saint-Joseph
## 4448 Rioja
## 4449 Chianti
## 4450
## 4451 Willamette Valley Willamette Valley
## 4452 California California Other
## 4453 Côtes du Marmandais
## 4454 Vin de Pays Var
## 4455 Amador County Sierra Foothills
## 4456 Napa County Napa
## 4457 Sonoma County Sonoma
## 4458 Napa Valley Napa
## 4459 California California Other
## 4460 Priorat
## 4461 Spain
## 4462 Red Hills Lake County
## 4463 Howell Mountain Napa
## 4464 Frascati Superiore
## 4465 Rutherford Napa
## 4466 Rutherford Napa
## 4467 Livermore Valley Central Coast
## 4468 Lake County
## 4469 Columbia Valley (WA) Columbia Valley
## 4470 Rosso di Montalcino
## 4471 Columbia Valley (WA) Columbia Valley
## 4472 Carneros Napa-Sonoma
## 4473 Columbia Valley (WA) Columbia Valley
## 4474 Anderson Valley
## 4475 Rioja
## 4476 Santa Maria Valley Central Coast
## 4477 Walla Walla Valley (WA) Columbia Valley
## 4478 Columbia Valley (WA) Columbia Valley
## 4479 Walla Walla Valley (WA) Columbia Valley
## 4480 Crémant de Bourgogne
## 4481 Amarone della Valpolicella Classico
## 4482 Sancerre
## 4483 Horse Heaven Hills Columbia Valley
## 4484 Sancerre
## 4485 Volnay
## 4486 Temecula Valley South Coast
## 4487 Santa Clara Valley Central Coast
## 4488 St. Helena Napa
## 4489 Santa Ynez Valley Central Coast
## 4490 Santa Ynez Valley Central Coast
## 4491
## 4492
## 4493 Alexander Valley Sonoma
## 4494 Russian River Valley Sonoma
## 4495 Sancerre
## 4496 Yakima Valley Columbia Valley
## 4497 Russian River Valley Sonoma
## 4498 Gevrey-Chambertin
## 4499
## 4500
## 4501
## 4502
## 4503 Fort Ross-Seaview Sonoma
## 4504 Terre Siciliane
## 4505 Russian River Valley Sonoma
## 4506 Fort Ross-Seaview Sonoma
## 4507 Mt. Harlan Central Coast
## 4508 Fort Ross-Seaview Sonoma
## 4509 Russian River Valley Sonoma
## 4510 Fort Ross-Seaview Sonoma
## 4511 Russian River Valley Sonoma
## 4512 Russian River Valley Sonoma
## 4513 Mt. Harlan Central Coast
## 4514 Barolo
## 4515 Russian River Valley Sonoma
## 4516 Barolo
## 4517 Russian River Valley Sonoma
## 4518 Santa Maria Valley Central Coast
## 4519 Russian River Valley Sonoma
## 4520 Quarts de Chaume
## 4521 Fort Ross-Seaview Sonoma
## 4522 Sonoma Valley Sonoma
## 4523 Barolo
## 4524 Etna
## 4525 Etna
## 4526 Santa Barbara County Central Coast
## 4527 Bonnezeaux
## 4528 Vittoria
## 4529
## 4530 Livermore Valley Central Coast
## 4531 Paso Robles Central Coast
## 4532 Paso Robles Central Coast
## 4533 Navarra
## 4534 Mendocino County
## 4535 Delle Venezie
## 4536 Oak Knoll District Napa
## 4537 Carneros Napa-Sonoma
## 4538 Central Coast Central Coast
## 4539 Sonoma County Sonoma
## 4540 Lambrusco dell'Emilia
## 4541 California California Other
## 4542 California California Other
## 4543 Bordeaux Clairet
## 4544 Sangiovese di Romagna Superiore
## 4545 Amador County Sierra Foothills
## 4546 Mendocino County
## 4547 Paso Robles Central Coast
## 4548 Bordeaux Rosé
## 4549
## 4550 Lodi Central Valley
## 4551 Lodi Central Valley
## 4552 Lake County
## 4553 Vino de la Tierra de Castilla
## 4554 California California Other
## 4555
## 4556 Catalunya
## 4557 Colli Aprutini
## 4558 Cava
## 4559 Vino de la Tierra de Castilla
## 4560
## 4561 Oregon Oregon Other
## 4562
## 4563
## 4564 Bordeaux
## 4565 Santa Clara Valley Central Coast
## 4566 Rogue Valley Southern Oregon
## 4567 California California Other
## 4568 Montepulciano d'Abruzzo
## 4569 Montepulciano d'Abruzzo Colline Teramane
## 4570 Valle de Uco
## 4571 Rioja
## 4572
## 4573
## 4574 Montepulciano d'Abruzzo
## 4575 Willamette Valley
## 4576
## 4577
## 4578 Bordeaux Blanc
## 4579 Cava
## 4580
## 4581
## 4582
## 4583
## 4584
## 4585 Rogue Valley Southern Oregon
## 4586 Moscato d'Asti
## 4587
## 4588
## 4589 Rías Baixas
## 4590 Russian River Valley Sonoma
## 4591 Central Coast Central Coast
## 4592 California California Other
## 4593 California California Other
## 4594 Valpolicella Superiore Ripasso
## 4595 Valpolicella Classico Superiore
## 4596 Arroyo Seco Central Coast
## 4597 Sonoma County Sonoma
## 4598 Valpolicella Ripasso
## 4599 Napa Valley Napa
## 4600 Russian River Valley Sonoma
## 4601 Finger Lakes Finger Lakes
## 4602 Finger Lakes Finger Lakes
## 4603 California California Other
## 4604 Napa Valley Napa
## 4605 Jumilla
## 4606 Costières de Nîmes
## 4607
## 4608 Valpolicella Classico Superiore
## 4609 Valpolicella Classico Superiore Ripasso
## 4610 Santa Ynez Valley Central Coast
## 4611 Côtes du Rhône
## 4612 Bierzo
## 4613 Rioja
## 4614 Priorat
## 4615 Seneca Lake Finger Lakes
## 4616 Finger Lakes Finger Lakes
## 4617
## 4618 Amarone della Valpolicella Classico
## 4619 Barolo
## 4620 Walla Walla Valley (OR) Oregon Other
## 4621 Santa Maria Valley Central Coast
## 4622 Carneros Napa-Sonoma
## 4623 Sonoma County Sonoma
## 4624
## 4625 Uco Valley
## 4626 Barbaresco
## 4627 Barolo
## 4628 Barolo
## 4629 Dundee Hills Willamette Valley
## 4630 Sonoma Coast Sonoma
## 4631 Barolo
## 4632 Barolo
## 4633 Sancerre
## 4634 Calchaquí Valley
## 4635 Spring Mountain District Napa
## 4636 Sancerre
## 4637 Willamette Valley Willamette Valley
## 4638 Eola-Amity Hills Willamette Valley
## 4639 Mendoza
## 4640 Russian River Valley Sonoma
## 4641 Russian River Valley Sonoma
## 4642 Dry Creek Valley Sonoma
## 4643
## 4644
## 4645 Sancerre
## 4646 Sancerre
## 4647
## 4648 Saint-Émilion
## 4649 Graves
## 4650 Margaux
## 4651 Fronsac
## 4652 Margaux
## 4653 Pessac-Léognan
## 4654 Barbera d'Asti
## 4655 Pomerol
## 4656 Pessac-Léognan
## 4657 Pomerol
## 4658
## 4659 Mendoza
## 4660
## 4661 Pessac-Léognan
## 4662 Pessac-Léognan
## 4663 Pessac-Léognan
## 4664 Pessac-Léognan
## 4665 Sauternes
## 4666 Pauillac
## 4667 Margaux
## 4668 Lodi Central Valley
## 4669 Wahluke Slope Columbia Valley
## 4670 Tasmania
## 4671 Rutherford Napa
## 4672 Santa Ynez Valley Central Coast
## 4673
## 4674 Napa Valley Napa
## 4675 El Dorado Sierra Foothills
## 4676 Dundee Hills Willamette Valley
## 4677 Russian River Valley Sonoma
## 4678 Red Hills Lake County
## 4679
## 4680
## 4681 Willamette Valley Willamette Valley
## 4682 North Coast North Coast
## 4683 Rioja
## 4684 Napa Valley Napa
## 4685 Santa Lucia Highlands Central Coast
## 4686 Russian River Valley Sonoma
## 4687 Lodi Central Valley
## 4688 Anderson Valley
## 4689 Livermore Valley Central Coast
## 4690 Santa Barbara County Central Coast
## 4691 Paso Robles Central Coast
## 4692 Amador County Sierra Foothills
## 4693
## 4694 Santa Cruz Mountains Central Coast
## 4695 Carneros Napa-Sonoma
## 4696 Edna Valley Central Coast
## 4697 Dundee Hills Willamette Valley
## 4698 Napa Valley Napa
## 4699 Rioja
## 4700 Rioja
## 4701 Cheverny
## 4702 Cheverny
## 4703
## 4704 Willamette Valley Willamette Valley
## 4705 Willamette Valley
## 4706 Barbera d'Asti Superiore
## 4707 Dogliani Superiore
## 4708
## 4709 Mendoza
## 4710 Roero
## 4711 Barbera d'Asti
## 4712 Rioja
## 4713 Mount Veeder Napa
## 4714 Barbera d'Alba Superiore
## 4715
## 4716
## 4717 Barbera d'Alba
## 4718
## 4719 Sonoma County Sonoma
## 4720 Willamette Valley Willamette Valley
## 4721
## 4722
## 4723
## 4724 Victoria
## 4725
## 4726 Uco Valley
## 4727 Oregon Oregon Other
## 4728 Rogue Valley Southern Oregon
## 4729 Monterey County Central Coast
## 4730
## 4731 Walla Walla Valley (WA) Columbia Valley
## 4732 Columbia Valley (WA) Columbia Valley
## 4733 California California Other
## 4734 California California Other
## 4735 Columbia Valley (WA) Columbia Valley
## 4736 Washington Washington Other
## 4737 California California Other
## 4738 Yakima Valley Columbia Valley
## 4739 Sonoma Valley Sonoma
## 4740 Santa Ynez Valley Central Coast
## 4741 Yakima Valley Columbia Valley
## 4742 California California Other
## 4743 Columbia Valley (WA) Columbia Valley
## 4744 Columbia Valley (WA) Columbia Valley
## 4745 Yakima Valley Columbia Valley
## 4746 Central Coast Central Coast
## 4747 Chiles Valley Napa
## 4748 Stags Leap District Napa
## 4749 California California Other
## 4750 Napa Valley Napa
## 4751 Napa Valley Napa
## 4752 Yakima Valley Columbia Valley
## 4753 California California Other
## 4754 Walla Walla Valley (WA) Columbia Valley
## 4755 Walla Walla Valley (WA) Columbia Valley
## 4756 Carneros Napa-Sonoma
## 4757 Paso Robles Central Coast
## 4758 Napa Valley Napa
## 4759 Yakima Valley Columbia Valley
## 4760 Yakima Valley Columbia Valley
## 4761 Rioja
## 4762 Oakville Napa
## 4763 Brunello di Montalcino
## 4764
## 4765 Mendocino County
## 4766
## 4767 Moulis-en-Médoc
## 4768 Pomerol
## 4769 Saint-Estèphe
## 4770 Washington Washington Other
## 4771 Brunello di Montalcino
## 4772 Brunello di Montalcino
## 4773 Columbia Valley (WA) Columbia Valley
## 4774 Uco Valley
## 4775 Ribera del Duero
## 4776 Brunello di Montalcino
## 4777 Tupungato
## 4778
## 4779 Mount Veeder Napa
## 4780
## 4781 Russian River Valley Sonoma
## 4782 Brunello di Montalcino
## 4783
## 4784
## 4785 Mendoza
## 4786 Brunello di Montalcino
## 4787 Brunello di Montalcino
## 4788 Colli Orientali del Friuli
## 4789
## 4790 California California Other
## 4791 California California Other
## 4792 Alto Adige
## 4793 Forlì
## 4794 Maremma
## 4795
## 4796 Colli Martani
## 4797 Mendoza
## 4798
## 4799 Umbria
## 4800 Carneros Napa-Sonoma
## 4801 Veneto
## 4802 California California Other
## 4803
## 4804 Monterey Central Coast
## 4805 Vernaccia di San Gimignano
## 4806 Livermore Valley Central Coast
## 4807 Uco Valley
## 4808 Monterey County Central Coast
## 4809
## 4810 Willamette Valley Willamette Valley
## 4811 Carneros Napa-Sonoma
## 4812 Valdadige
## 4813
## 4814 Alto Adige
## 4815 Neuquén
## 4816 Champagne
## 4817 Santa Cruz Mountains Central Coast
## 4818 Napa Valley Napa
## 4819 Santa Barbara County Central Coast
## 4820 Santa Barbara County Central Coast
## 4821 Columbia Valley (WA) Columbia Valley
## 4822 Columbia Valley (WA) Columbia Valley
## 4823 Napa Valley Napa
## 4824 Cienega Valley Central Coast
## 4825 Sonoma County Sonoma
## 4826 Oakville Napa
## 4827 Paso Robles Central Coast
## 4828 Champagne
## 4829 Santa Barbara County Central Coast
## 4830 Columbia Valley (WA) Columbia Valley
## 4831 Santa Ynez Valley Central Coast
## 4832 Sierra Foothills Sierra Foothills
## 4833 Edna Valley Central Coast
## 4834 Santa Ynez Valley Central Coast
## 4835 Dry Creek Valley Sonoma
## 4836 Santa Ynez Valley Central Coast
## 4837
## 4838 Paso Robles Central Coast
## 4839 Chianti Classico
## 4840
## 4841
## 4842
## 4843 California California Other
## 4844 Carneros Napa-Sonoma
## 4845
## 4846 Willamette Valley Willamette Valley
## 4847 Chianti Classico
## 4848 Chianti Classico
## 4849
## 4850
## 4851 Chianti Classico
## 4852 Chianti Classico
## 4853 Beaujolais-Villages
## 4854 Rosso di Montepulciano
## 4855 Cahors
## 4856 Gaillac
## 4857 Rioja
## 4858 Chianti Classico
## 4859 Chianti Classico
## 4860
## 4861 Rosso di Montepulciano
## 4862
## 4863 Paso Robles Central Coast
## 4864
## 4865 Willamette Valley Willamette Valley
## 4866 Sonoma Valley Sonoma
## 4867
## 4868 Temecula South Coast
## 4869 Mendocino Ridge
## 4870 Cava
## 4871 Umpqua Valley Southern Oregon
## 4872 Vino Spumante
## 4873 Willamette Valley Willamette Valley
## 4874 Toscana
## 4875
## 4876
## 4877 Toscana
## 4878 Coombsville Napa
## 4879 Toscana
## 4880
## 4881 Valtellina Superiore
## 4882
## 4883
## 4884
## 4885
## 4886 Rioja
## 4887 Vino Spumante
## 4888 Willamette Valley Willamette Valley
## 4889 Central Coast Central Coast
## 4890 Napa Valley Napa
## 4891
## 4892
## 4893 Toscana
## 4894 North Coast North Coast
## 4895 Sierra Foothills Sierra Foothills
## 4896 Mendocino
## 4897
## 4898 Chablis
## 4899 Dry Creek Valley Sonoma
## 4900 Monticello
## 4901 Sierra Foothills Sierra Foothills
## 4902 Russian River Valley Sonoma
## 4903
## 4904
## 4905
## 4906
## 4907 Barbaresco
## 4908
## 4909 Tupungato
## 4910
## 4911
## 4912
## 4913 Salta
## 4914 El Dorado Sierra Foothills
## 4915 Ghemme
## 4916 Carignano del Sulcis
## 4917
## 4918
## 4919 Applegate Valley Southern Oregon
## 4920 Walla Walla Valley (OR) Oregon Other
## 4921 Sonoma Coast Sonoma
## 4922 Alghero
## 4923 Saint-Véran
## 4924 Willamette Valley Willamette Valley
## 4925 Vermentino di Sardegna
## 4926
## 4927 Uco Valley
## 4928
## 4929 Tasmania
## 4930
## 4931
## 4932 Toro
## 4933 Cafayate
## 4934 Wahluke Slope Columbia Valley
## 4935 California California Other
## 4936 Sierra Foothills Sierra Foothills
## 4937 Paso Robles Central Coast
## 4938 Columbia Valley (WA) Columbia Valley
## 4939
## 4940
## 4941 California California Other
## 4942 Sonoma County Sonoma
## 4943 South Eastern Australia
## 4944 Mendoza
## 4945 Lodi Central Valley
## 4946 Columbia Valley (WA) Columbia Valley
## 4947 Cortona
## 4948
## 4949
## 4950 California California Other
## 4951 Bordeaux Supérieur
## 4952 Napa Valley Napa
## 4953 California California Other
## 4954 Russian River Valley Sonoma
## 4955 Vino de la Tierra de Castilla
## 4956 Calatayud
## 4957 Sancerre
## 4958 Paso Robles Central Coast
## 4959 Vino de la Tierra de Castilla
## 4960 Sonoma Valley Sonoma
## 4961 Alto Adige
## 4962 Alto Adige
## 4963 Anjou
## 4964 Anjou Villages Brissac
## 4965 Napa Valley Napa
## 4966 Napa Valley Napa
## 4967 Terra Alta
## 4968 Mendoza
## 4969 Sancerre
## 4970 Pécharmant
## 4971 Pouilly-Fumé
## 4972 Veneto
## 4973
## 4974 Anderson Valley
## 4975 Edna Valley Central Coast
## 4976 Santa Ynez Valley Central Coast
## 4977 Russian River Valley Sonoma
## 4978
## 4979 Yakima Valley Columbia Valley
## 4980 Sicilia
## 4981 Salento
## 4982 Saint-Émilion
## 4983 Listrac-Médoc
## 4984 Minervois La Liviniere
## 4985 Irpinia
## 4986 Corbières
## 4987
## 4988
## 4989 Napa Valley Napa
## 4990
## 4991 Irpinia
## 4992 Veneto
## 4993 Adelaide Hills
## 4994 Arroyo Grande Valley Central Coast
## 4995 Rosso del Veronese
## 4996
## 4997 Campania
## 4998 Marsala
## 4999 Sonoma-Napa Napa-Sonoma
## 5000
## 5001
## 5002 Walla Walla Valley (WA) Columbia Valley
## 5003
## 5004 Columbia Valley (WA) Columbia Valley
## 5005 Saint-Estèphe
## 5006 Saint-Émilion
## 5007 Columbia Valley (WA) Columbia Valley
## 5008 Toro
## 5009 Walla Walla Valley (WA) Columbia Valley
## 5010 Columbia Valley (WA) Columbia Valley
## 5011 Coombsville Napa
## 5012 Columbia Valley (WA) Columbia Valley
## 5013 Yakima Valley Columbia Valley
## 5014 Napa Valley Napa
## 5015 Napa Valley Napa
## 5016 Napa Valley Napa
## 5017 Napa Valley Napa
## 5018 Walla Walla Valley (WA) Columbia Valley
## 5019 Walla Walla Valley (WA) Columbia Valley
## 5020 Howell Mountain Napa
## 5021 Columbia Valley (WA) Columbia Valley
## 5022 Chalk Hill Sonoma
## 5023 Alexander Valley Sonoma
## 5024 Walla Walla Valley (WA) Columbia Valley
## 5025 Russian River Valley Sonoma
## 5026 Stags Leap District Napa
## 5027 Washington Washington Other
## 5028 Napa Valley Napa
## 5029 Napa Valley Napa
## 5030 Rutherford Napa
## 5031 Columbia Valley (WA) Columbia Valley
## 5032 Saint-Émilion
## 5033 Haut-Médoc
## 5034 Sauternes
## 5035
## 5036 Alsace
## 5037 Alsace
## 5038 Alsace
## 5039 Sierra Foothills Sierra Foothills
## 5040 Anderson Valley
## 5041 Carneros Napa-Sonoma
## 5042 St. Helena Napa
## 5043 Napa Valley Napa
## 5044
## 5045 Rutherford Napa
## 5046 Barbaresco
## 5047 Napa Valley Napa
## 5048 Sta. Rita Hills Central Coast
## 5049 Paso Robles Central Coast
## 5050 Sonoma County Sonoma
## 5051 Alsace
## 5052 Lake County
## 5053
## 5054 Santa Cruz Mountains Central Coast
## 5055
## 5056
## 5057 Napa Valley Napa
## 5058 Columbia Gorge (WA) Washington Other
## 5059 Rattlesnake Hills Columbia Valley
## 5060 Columbia Valley (WA) Columbia Valley
## 5061 Chalk Hill Sonoma
## 5062 Happy Canyon of Santa Barbara Central Coast
## 5063
## 5064
## 5065 Barolo
## 5066 Barolo
## 5067 Yolo County Central Valley
## 5068 Mendoza
## 5069
## 5070 Mendocino
## 5071 Barbaresco
## 5072 Grand Valley
## 5073 Colorado
## 5074 Mendoza
## 5075 Monticello
## 5076 Valdepeñas
## 5077 Bordeaux Blanc
## 5078 Chinon
## 5079 Pessac-Léognan
## 5080 Saint-Émilion
## 5081 Willamette Valley Willamette Valley
## 5082 Sonoma County Sonoma
## 5083 Navarra
## 5084 Côtes de Bourg
## 5085 Virginia
## 5086
## 5087 Barolo
## 5088 Bordeaux Blanc
## 5089 Western Australia
## 5090 Napa Valley Napa
## 5091 Central Coast Central Coast
## 5092 Walla Walla Valley (WA) Columbia Valley
## 5093
## 5094 Arroyo Grande Valley Central Coast
## 5095
## 5096
## 5097 Columbia Valley (WA) Columbia Valley
## 5098 Bordeaux
## 5099 Columbia Valley (WA) Columbia Valley
## 5100 Santa Maria Valley Central Coast
## 5101
## 5102
## 5103 Happy Canyon of Santa Barbara Central Coast
## 5104 Horse Heaven Hills Columbia Valley
## 5105
## 5106 Columbia Valley (WA) Columbia Valley
## 5107 Mount Veeder Napa
## 5108
## 5109 Santa Barbara County Central Coast
## 5110
## 5111
## 5112 California California Other
## 5113 Barbera d'Asti Superiore
## 5114 Barbera d'Asti
## 5115 Central Coast Central Coast
## 5116 Stags Leap District Napa
## 5117
## 5118 Napa Valley Napa
## 5119 Santa Lucia Highlands Central Coast
## 5120 Santa Lucia Highlands Central Coast
## 5121 Santa Lucia Highlands Central Coast
## 5122 Sierra Foothills Sierra Foothills
## 5123 Dry Creek Valley Sonoma
## 5124
## 5125 Juliénas
## 5126 Edna Valley Central Coast
## 5127
## 5128 Sonoma Valley Sonoma
## 5129
## 5130 Okanagan Valley
## 5131 Morgon
## 5132
## 5133 Saint-Amour
## 5134
## 5135 Lodi Central Valley
## 5136 Columbia Valley (WA) Columbia Valley
## 5137 Sonoma Coast Sonoma
## 5138 Toscana
## 5139 North Fork of Long Island Long Island
## 5140 Sonoma Valley Sonoma
## 5141
## 5142
## 5143 Monterey County Central Coast
## 5144 Napa Valley Napa
## 5145
## 5146 California California Other
## 5147 Red Mountain Columbia Valley
## 5148 Pauillac
## 5149 Saint-Émilion
## 5150 Padthaway
## 5151 Southern Oregon Southern Oregon
## 5152 Sta. Rita Hills Central Coast
## 5153 Campo de Borja
## 5154 Santa Maria Valley Central Coast
## 5155 Monterey County Central Coast
## 5156 Vernaccia di San Gimignano
## 5157 Clarendon
## 5158 McLaren Vale
## 5159 Alsace
## 5160 Oregon Oregon Other
## 5161 Santa Barbara County Central Coast
## 5162 Rogue Valley Southern Oregon
## 5163 Cava
## 5164 Willamette Valley
## 5165 Rioja
## 5166 Rosso di Montalcino
## 5167 Sonoma County Sonoma
## 5168 Napa Valley Napa
## 5169 Finger Lakes Finger Lakes
## 5170 Umpqua Valley Southern Oregon
## 5171 Rioja
## 5172 Mount Veeder Napa
## 5173 Brunello di Montalcino
## 5174 Columbia Valley (OR) Oregon Other
## 5175 Côtes de Provence
## 5176
## 5177
## 5178 Carneros Napa-Sonoma
## 5179 Sonoma Coast Sonoma
## 5180 Willamette Valley Willamette Valley
## 5181 Chianti Classico
## 5182 Napa Valley Napa
## 5183 Napa Valley Napa
## 5184 Chianti Classico
## 5185 Morellino di Scansano
## 5186 Mendoza
## 5187 Vouvray
## 5188 Côtes du Jura
## 5189 Côtes du Jura
## 5190 Russian River Valley Sonoma
## 5191 Chianti Classico
## 5192 Uco Valley
## 5193 Sancerre
## 5194
## 5195 Sonoma Coast Sonoma
## 5196 Santa Barbara County Central Coast
## 5197 Morellino di Scansano
## 5198 Chianti Classico
## 5199 Chianti Classico
## 5200
## 5201 Willamette Valley Willamette Valley
## 5202 Napa Valley Napa
## 5203
## 5204 Arbois
## 5205 Napa Valley Napa
## 5206
## 5207 Alsace
## 5208 Russian River Valley Sonoma
## 5209 Etna
## 5210 Russian River Valley Sonoma
## 5211 Russian River Valley Sonoma
## 5212
## 5213 Ribera del Duero
## 5214 Chehalem Mountains Willamette Valley
## 5215
## 5216 St. Helena Napa
## 5217 Rutherford Napa
## 5218 McMinnville Willamette Valley
## 5219 McMinnville Willamette Valley
## 5220 Alexander Valley Sonoma
## 5221 Sicilia
## 5222 Willamette Valley Willamette Valley
## 5223 Willamette Valley
## 5224 Willamette Valley Willamette Valley
## 5225 Eola-Amity Hills Willamette Valley
## 5226
## 5227
## 5228 Napa Valley Napa
## 5229 Paso Robles Central Coast
## 5230
## 5231 Corton Les Renardes
## 5232 Russian River Valley Sonoma
## 5233 Sonoma Coast Sonoma
## 5234 Alexander Valley Sonoma
## 5235 Chassagne-Montrachet
## 5236 Russian River Valley Sonoma
## 5237 Brunello di Montalcino
## 5238 Brunello di Montalcino
## 5239 Chalk Hill Sonoma
## 5240 Jerez
## 5241 Cornas
## 5242 Coteaux du Giennois
## 5243 Brunello di Montalcino
## 5244 Livermore Valley Central Coast
## 5245 Columbia Valley (WA) Columbia Valley
## 5246 Sancerre
## 5247 Menetou-Salon
## 5248 Chablis
## 5249 Chianti Classico
## 5250 Chianti Classico
## 5251 Penedès
## 5252 Vino Nobile di Montepulciano
## 5253 Sonoma Mountain Sonoma
## 5254 Okanagan Valley
## 5255 Napa Valley Napa
## 5256 Aloxe-Corton
## 5257 Rutherford Napa
## 5258 Menetou-Salon
## 5259 Wahluke Slope Columbia Valley
## 5260 Sonoma Coast Sonoma
## 5261 Columbia Valley (WA) Columbia Valley
## 5262 Alsace
## 5263 Carneros Napa-Sonoma
## 5264
## 5265 Rosso Conero
## 5266 Falerio
## 5267 Sonoma Valley Sonoma
## 5268 Verdicchio dei Castelli di Jesi
## 5269 El Dorado Sierra Foothills
## 5270 Alsace
## 5271 Alsace
## 5272 Bandol
## 5273 Columbia Valley (WA) Columbia Valley
## 5274 Dry Creek Valley Sonoma
## 5275 Conero
## 5276 Finger Lakes Finger Lakes
## 5277 Alsace
## 5278
## 5279
## 5280 Finger Lakes Finger Lakes
## 5281 Finger Lakes Finger Lakes
## 5282
## 5283 Finger Lakes Finger Lakes
## 5284 Finger Lakes Finger Lakes
## 5285
## 5286 Rosso Piceno
## 5287 Santa Barbara County Central Coast
## 5288 Columbia Valley (WA) Columbia Valley
## 5289 Horse Heaven Hills Columbia Valley
## 5290
## 5291 Hunter Valley
## 5292 Victoria
## 5293 Santa Maria Valley Central Coast
## 5294 Coonawarra
## 5295 Coonawarra
## 5296 Lodi Central Valley
## 5297 Mendoza
## 5298 Paso Robles Central Coast
## 5299 Maremma
## 5300 Rosso di Montalcino
## 5301 La Rioja
## 5302 Central Ranges
## 5303
## 5304 Columbia Valley (WA) Columbia Valley
## 5305 Mendoza
## 5306 South Eastern Australia
## 5307 Rosso di Montalcino
## 5308
## 5309 La Consulta
## 5310 Rosso di Montalcino
## 5311 Moscato d'Asti
## 5312 Rioja
## 5313 Chianti Classico
## 5314 Yakima Valley Columbia Valley
## 5315 Mendoza
## 5316 Mendoza
## 5317 Navarra
## 5318 Côtes du Rhône Villages
## 5319 Sonoma Coast Sonoma
## 5320
## 5321 Sta. Rita Hills Central Coast
## 5322 Santa Lucia Highlands Central Coast
## 5323 Rioja
## 5324 Napa Valley Napa
## 5325 Rioja
## 5326 Côtes de Provence
## 5327
## 5328 Columbia Valley (WA) Columbia Valley
## 5329 El Dorado Sierra Foothills
## 5330 Santa Lucia Highlands Central Coast
## 5331 Côtes de Provence
## 5332 Coteaux d'Aix-en-Provence
## 5333 Columbia Valley (WA) Columbia Valley
## 5334 Colli Orientali del Friuli
## 5335 Sonoma County Sonoma
## 5336 Calatayud
## 5337 Isola dei Nuraghi
## 5338 Napa Valley Napa
## 5339 Vermentino di Sardegna
## 5340 Anderson Valley
## 5341 Côtes de Provence
## 5342 Coteaux Varois
## 5343 Côtes de Provence
## 5344 Lodi Central Valley
## 5345 Colli Orientali del Friuli
## 5346 Colli Orientali del Friuli
## 5347 Happy Canyon of Santa Barbara Central Coast
## 5348
## 5349
## 5350 Toscana
## 5351 Livermore Valley Central Coast
## 5352 Santa Ynez Valley Central Coast
## 5353 Santa Ynez Valley Central Coast
## 5354
## 5355
## 5356
## 5357 Russian River Valley Sonoma
## 5358
## 5359 Napa Valley Napa
## 5360
## 5361 Columbia Gorge (WA) Washington Other
## 5362 Montepulciano d'Abruzzo
## 5363 Columbia Valley (WA) Columbia Valley
## 5364
## 5365 Finger Lakes Finger Lakes
## 5366 Mendoza
## 5367
## 5368
## 5369 Val di Cornia Suvereto
## 5370
## 5371 Vernaccia di San Gimignano
## 5372 Orvieto Classico Superiore
## 5373 Chianti Classico
## 5374 Columbia Valley (WA) Columbia Valley
## 5375 Morellino di Scansano
## 5376 Côtes de Provence
## 5377 Lodi Central Valley
## 5378 Paso Robles Central Coast
## 5379 Vin de Pays du Val de Loire
## 5380 Napa Valley Napa
## 5381
## 5382
## 5383 Alexander Valley Sonoma
## 5384 Alexander Valley Sonoma
## 5385 Alexander Valley Sonoma
## 5386 Mendoza
## 5387 Carneros Napa-Sonoma
## 5388 Mendocino
## 5389 Menetou-Salon
## 5390 Cochise County
## 5391 California California Other
## 5392 Santa Barbara County Central Coast
## 5393 Virginia
## 5394 Cava
## 5395
## 5396
## 5397
## 5398 Monterey Central Coast
## 5399 Virginia
## 5400 Russian River Valley Sonoma
## 5401 Chianti Classico
## 5402 Vino de la Tierra Altiplano de Sierra Nevada
## 5403
## 5404 Napa Valley Napa
## 5405 Dry Creek Valley Sonoma
## 5406 Rioja
## 5407
## 5408
## 5409 Eola-Amity Hills Willamette Valley
## 5410 Patagonia
## 5411 Mâcon-Villages
## 5412
## 5413 San Juan
## 5414
## 5415 Barolo
## 5416 Vin de France
## 5417
## 5418 Barolo
## 5419 Saint-Véran
## 5420 Chorey-lès-Beaune
## 5421 Australia
## 5422 Livermore Valley Central Coast
## 5423 Willamette Valley Willamette Valley
## 5424 Los Carneros Napa-Sonoma
## 5425 Barbaresco
## 5426 Mendoza
## 5427 Lodi Central Valley
## 5428 Mâcon-Villages
## 5429 Applegate Valley Southern Oregon
## 5430 Luján de Cuyo
## 5431 Willamette Valley Willamette Valley
## 5432
## 5433 North Coast North Coast
## 5434 Santa Ynez Valley Central Coast
## 5435 Valle de Uco
## 5436 Napa Valley Napa
## 5437 Mendoza
## 5438
## 5439 Anderson Valley
## 5440 Patagonia
## 5441 Chablis
## 5442 Conegliano Valdobbiadene Prosecco Superiore
## 5443 North Fork of Long Island Long Island
## 5444 Potter Valley
## 5445 Monterey Central Coast
## 5446 Bandol
## 5447 Franciacorta
## 5448 California California Other
## 5449 Recioto della Valpolicella Classico
## 5450 Friuli
## 5451
## 5452 Dry Creek Valley Sonoma
## 5453 Napa Valley Napa
## 5454
## 5455
## 5456 Conegliano Valdobbiadene Prosecco Superiore
## 5457 Franciacorta
## 5458 Franciacorta
## 5459 Franciacorta
## 5460 Virginia
## 5461 Champagne
## 5462 Montepulciano d'Abruzzo
## 5463 Paso Robles Central Coast
## 5464 Côtes de Provence
## 5465 Sta. Rita Hills Central Coast
## 5466 Santa Lucia Highlands Central Coast
## 5467 Rioja
## 5468
## 5469 Russian River Valley Sonoma
## 5470 Columbia Valley (WA) Columbia Valley
## 5471 Sonoma Coast Sonoma
## 5472 Napa Valley Napa
## 5473
## 5474 Rutherford Napa
## 5475 Rosso Piceno
## 5476 Montepulciano d'Abruzzo
## 5477 Lodi Central Valley
## 5478 Rosso Conero
## 5479
## 5480 Willamette Valley Willamette Valley
## 5481 Columbia Gorge (OR) Oregon Other
## 5482 Columbia Gorge (OR) Oregon Other
## 5483 Columbia Valley (WA) Columbia Valley
## 5484 Carneros Napa-Sonoma
## 5485
## 5486 Pine Mountain-Cloverdale Peak Sonoma
## 5487 Côtes de Provence
## 5488 Côtes de Provence
## 5489 Côtes de Provence
## 5490 Delle Venezie
## 5491 Saint-Émilion
## 5492 Brunello di Montalcino
## 5493
## 5494
## 5495 Walla Walla Valley (WA) Columbia Valley
## 5496 Napa Valley Napa
## 5497 Napa Valley Napa
## 5498
## 5499 Ribera del Duero
## 5500 Saint-Estèphe
## 5501 Napa Valley Napa
## 5502 Santa Maria Valley Central Coast
## 5503 Bolgheri Superiore
## 5504
## 5505
## 5506 Saint-Julien
## 5507 Howell Mountain Napa
## 5508
## 5509 Columbia Valley (WA) Columbia Valley
## 5510
## 5511
## 5512 Brunello di Montalcino
## 5513 Valle de Uco
## 5514
## 5515
## 5516
## 5517 Lodi Central Valley
## 5518
## 5519
## 5520
## 5521
## 5522
## 5523
## 5524 Valdeorras
## 5525 Toscana
## 5526 Ribera del Duero
## 5527 Costers del Segre
## 5528 Lodi Central Valley
## 5529 California California Other
## 5530 Rioja
## 5531
## 5532 Rueda
## 5533
## 5534
## 5535 Montsant
## 5536
## 5537 Willamette Valley Willamette Valley
## 5538 California California Other
## 5539
## 5540 Central Coast Central Coast
## 5541 Cariñena
## 5542 Rioja
## 5543
## 5544 Vino de la Tierra de Castilla
## 5545 Cariñena
## 5546
## 5547 Santa Lucia Highlands Central Coast
## 5548 Russian River Valley Sonoma
## 5549 Sonoma Mountain Sonoma
## 5550
## 5551 Alto Adige
## 5552 Cahors
## 5553 Jurançon
## 5554 Cahors
## 5555 Irpinia
## 5556 Mendoza
## 5557 Les Baux de Provence
## 5558 Willamette Valley Willamette Valley
## 5559
## 5560 Cahors
## 5561
## 5562 Venezia Giulia
## 5563 Umbria
## 5564 Agrelo
## 5565 Russian River Valley Sonoma
## 5566 Alto Adige
## 5567 Bennett Valley Sonoma
## 5568
## 5569 Toscana
## 5570 Uco Valley
## 5571 Alto Adige
## 5572 Russian River Valley Sonoma
## 5573 Cahors
## 5574
## 5575 Alto Adige
## 5576
## 5577 Cafayate
## 5578 Verdicchio dei Castelli di Jesi Classico Superiore
## 5579 Santa Lucia Highlands Central Coast
## 5580 Custoza Superiore
## 5581 Niagara Peninsula
## 5582 Yolo County Central Valley
## 5583 Finger Lakes Finger Lakes
## 5584 Mendoza
## 5585 Piave
## 5586 North Coast North Coast
## 5587 Mendoza
## 5588 Yakima Valley Columbia Valley
## 5589 Santa Cruz Mountains Central Coast
## 5590 Veronese
## 5591 Red Mountain Columbia Valley
## 5592 Alto Adige
## 5593 Alto Adige
## 5594
## 5595 Mendocino
## 5596
## 5597 Valpolicella Superiore Ripasso
## 5598
## 5599 North Fork of Long Island Long Island
## 5600
## 5601 Chehalem Mountains Willamette Valley
## 5602 Finger Lakes Finger Lakes
## 5603
## 5604 Lodi Central Valley
## 5605 Valpolicella Superiore
## 5606 Finger Lakes Finger Lakes
## 5607 North Fork of Long Island Long Island
## 5608 Edna Valley Central Coast
## 5609 Amarone della Valpolicella Classico
## 5610 Valpolicella Superiore Ripasso
## 5611 Napa Valley Napa
## 5612 Finger Lakes Finger Lakes
## 5613 Finger Lakes Finger Lakes
## 5614 Carmel Valley Central Coast
## 5615
## 5616
## 5617 Amarone della Valpolicella
## 5618 Valpolicella Classico Superiore Ripasso
## 5619 McLaren Vale
## 5620 Pouilly-Fuissé
## 5621 Jerez
## 5622 Amador County Sierra Foothills
## 5623
## 5624 Eden Valley
## 5625 Chassagne-Montrachet
## 5626 Irpinia
## 5627
## 5628 Jerez
## 5629 Fiano di Avellino
## 5630 Napa Valley Napa
## 5631 Red Hills Lake County
## 5632 Sonoma County Sonoma
## 5633 Campania
## 5634 Amador County Sierra Foothills
## 5635 Val di Neto
## 5636 Sta. Rita Hills Central Coast
## 5637 Puligny-Montrachet
## 5638 Willamette Valley Willamette Valley
## 5639 Central Coast Central Coast
## 5640 Dry Creek Valley Sonoma
## 5641 Rioja
## 5642 Greco di Tufo
## 5643 Russian River Valley Sonoma
## 5644 Taurasi
## 5645
## 5646 Cava
## 5647 Willamette Valley Willamette Valley
## 5648 Meursault
## 5649
## 5650 Toscana
## 5651 Toscana
## 5652
## 5653
## 5654 Livermore Valley Central Coast
## 5655 Yakima Valley Columbia Valley
## 5656 Sonoma Mountain Sonoma
## 5657 Paso Robles Central Coast
## 5658 Okanagan Valley
## 5659 Russian River Valley Sonoma
## 5660 Moulin-à-Vent
## 5661 Temecula Valley South Coast
## 5662 Bolgheri
## 5663 Wahluke Slope Columbia Valley
## 5664 St. Helena Napa
## 5665 Sta. Rita Hills Central Coast
## 5666 Moulin-à-Vent
## 5667
## 5668 Tavel
## 5669 North Coast North Coast
## 5670 Sierra Foothills Sierra Foothills
## 5671 Bolgheri Superiore
## 5672
## 5673 Carneros Napa-Sonoma
## 5674 Sta. Rita Hills Central Coast
## 5675
## 5676
## 5677 Sonoma Coast Sonoma
## 5678 Napa Valley Napa
## 5679 Wahluke Slope Columbia Valley
## 5680 Columbia Valley (WA) Columbia Valley
## 5681 Columbia Valley (WA) Columbia Valley
## 5682
## 5683
## 5684 California California Other
## 5685 Roero
## 5686 Barbera d'Asti
## 5687 Santa Lucia Highlands Central Coast
## 5688 Sonoma Valley Sonoma
## 5689 Champagne
## 5690 Champagne
## 5691 Barbaresco
## 5692 Nebbiolo d'Alba
## 5693 Santa Maria Valley Central Coast
## 5694 Lalande de Pomerol
## 5695 Médoc
## 5696 Brunello di Montalcino
## 5697 Columbia Valley (WA) Columbia Valley
## 5698 Columbia Valley (WA) Columbia Valley
## 5699 Columbia Valley (WA) Columbia Valley
## 5700 Walla Walla Valley (WA) Columbia Valley
## 5701 Brunello di Montalcino
## 5702 Carneros Napa-Sonoma
## 5703 Russian River Valley Sonoma
## 5704
## 5705 Barolo
## 5706 Walla Walla Valley (WA) Columbia Valley
## 5707 Walla Walla Valley (WA) Columbia Valley
## 5708 Columbia Valley (WA) Columbia Valley
## 5709
## 5710 Mendoza
## 5711
## 5712 Horse Heaven Hills Columbia Valley
## 5713 Oakville Napa
## 5714 Brunello di Montalcino
## 5715 Toscana
## 5716 Haut-Médoc
## 5717 Haut-Médoc
## 5718 Listrac-Médoc
## 5719 Pauillac
## 5720 Haut-Médoc
## 5721 Saint-Estèphe
## 5722 Alto Adige Valle Isarco
## 5723 Russian River Valley Sonoma
## 5724 Big Valley District-Lake County
## 5725 Santa Ynez Valley Central Coast
## 5726
## 5727 Barolo
## 5728 Paso Robles Central Coast
## 5729 Alexander Valley Sonoma
## 5730 Green Valley Sonoma
## 5731 Columbia Valley (WA) Columbia Valley
## 5732 Côtes de Provence
## 5733 Dry Creek Valley Sonoma
## 5734 Rockpile Sonoma
## 5735 Bandol
## 5736 Les Baux de Provence
## 5737 Côtes de Provence
## 5738 Langhe
## 5739 South Coast South Coast
## 5740 Paso Robles Central Coast
## 5741 Napa Valley Napa
## 5742 Alto Adige
## 5743 Alto Adige
## 5744 Lodi Central Valley
## 5745 Santa Lucia Highlands Central Coast
## 5746
## 5747 Coteaux d'Aix-en-Provence
## 5748 California California Other
## 5749 Washington Washington Other
## 5750
## 5751 Columbia Valley (WA) Columbia Valley
## 5752 Oak Knoll District Napa
## 5753 Sta. Rita Hills Central Coast
## 5754 Vosne-Romanée
## 5755 Sonoma Coast Sonoma
## 5756 Yakima Valley Columbia Valley
## 5757 El Dorado Sierra Foothills
## 5758 Paso Robles Central Coast
## 5759 Russian River Valley Sonoma
## 5760 Santa Maria Valley Central Coast
## 5761 Santa Ynez Valley Central Coast
## 5762
## 5763 Anderson Valley
## 5764 Fort Ross-Seaview Sonoma
## 5765 Alsace
## 5766 Alsace
## 5767 Alsace
## 5768 Côtes de Provence
## 5769
## 5770 Santa Ynez Valley Central Coast
## 5771 Santa Lucia Highlands Central Coast
## 5772 San Luis Obispo County Central Coast
## 5773 Paso Robles Central Coast
## 5774 Sonoma Coast Sonoma
## 5775 Amarone della Valpolicella Classico
## 5776 Amarone della Valpolicella Classico
## 5777 Amarone della Valpolicella
## 5778 San Antonio Valley Central Coast
## 5779 Amarone della Valpolicella Classico
## 5780 Santa Lucia Highlands Central Coast
## 5781 Diamond Mountain District Napa
## 5782 Vin de France
## 5783 Vin de France
## 5784 Vin de France
## 5785 Côtes de Provence
## 5786 Vin de France
## 5787 Mendoza
## 5788 Mendoza
## 5789 Vin de France
## 5790 Vin de France
## 5791 Anderson Valley
## 5792 Rioja
## 5793 Los Carneros Napa-Sonoma
## 5794 Vin de France
## 5795 Vin de France
## 5796 Vin de France
## 5797 Calistoga Napa
## 5798 Vin de France
## 5799 Ribera del Duero
## 5800 Calatayud
## 5801 Mendoza
## 5802 Vin de France
## 5803 Côtes de Provence
## 5804 Napa Valley Napa
## 5805 Vin de France
## 5806 Sierra Foothills Sierra Foothills
## 5807 Vin de France
## 5808 Vin de France
## 5809 Napa Valley Napa
## 5810
## 5811
## 5812 Bourgogne
## 5813
## 5814 Spain
## 5815
## 5816 Petit Chablis
## 5817 Vino de la Tierra de Castilla
## 5818 Mendoza
## 5819
## 5820 La Mancha
## 5821 Mendoza
## 5822 Mendoza
## 5823
## 5824 Bierzo
## 5825 Mendoza
## 5826 Bourgogne
## 5827
## 5828 Crémant d'Alsace
## 5829
## 5830 Tupungato
## 5831 Jumilla
## 5832 South Australia
## 5833
## 5834
## 5835
## 5836 Amador County Sierra Foothills
## 5837 Barolo
## 5838 Sierra Pelona Valley South Coast
## 5839 Alexander Valley Sonoma
## 5840 Santa Cruz Mountains Central Coast
## 5841 Paso Robles Central Coast
## 5842 Santa Ynez Valley Central Coast
## 5843 Valpolicella
## 5844 North Coast North Coast
## 5845 Walla Walla Valley (WA) Columbia Valley
## 5846 Columbia Valley (WA) Columbia Valley
## 5847 Columbia Valley (WA) Columbia Valley
## 5848 California California Other
## 5849 Yolo County Central Valley
## 5850
## 5851
## 5852
## 5853
## 5854 Blaye Côtes de Bordeaux
## 5855 Côtes de Bordeaux
## 5856 Cadillac Côtes de Bordeaux
## 5857 Bordeaux Supérieur
## 5858 Vin de Liqueur
## 5859 Francs Côtes de Bordeaux
## 5860 Côtes de Bordeaux
## 5861 Bordeaux Supérieur
## 5862 Irpinia
## 5863 Vernaccia di San Gimignano
## 5864 Russian River Valley Sonoma
## 5865 Sonoma Coast Sonoma
## 5866 Mediterranée
## 5867 Pouilly-Fuissé
## 5868 Clare Valley
## 5869 Dundee Hills Willamette Valley
## 5870 Sonoma County Sonoma
## 5871 Napa Valley Napa
## 5872 Dry Creek Valley Sonoma
## 5873 Sonoma County Sonoma
## 5874 Russian River Valley Sonoma
## 5875 Savigny-lès-Beaune
## 5876
## 5877 Russian River Valley Sonoma
## 5878 Alexander Valley Sonoma
## 5879 Central Coast Central Coast
## 5880
## 5881 Napa Valley Napa
## 5882 Walla Walla Valley (WA) Columbia Valley
## 5883 Russian River Valley Sonoma
## 5884 Pouilly-Fuissé
## 5885 Sonoma County-Napa County Napa-Sonoma
## 5886 San Luis Obispo Central Coast
## 5887 Rías Baixas
## 5888 Sonoma County Sonoma
## 5889 Monterey County Central Coast
## 5890 Russian River Valley Sonoma
## 5891
## 5892 Mendoza
## 5893 Mendoza
## 5894 Willamette Valley Willamette Valley
## 5895 Anderson Valley
## 5896 Mendoza
## 5897 Mendoza
## 5898 Rutherford Napa
## 5899 California California Other
## 5900 Willamette Valley Willamette Valley
## 5901 Famatina Valley
## 5902 Mendoza
## 5903 Mendoza
## 5904 Mendoza
## 5905
## 5906 Mendoza
## 5907 Mendoza
## 5908 Mendoza
## 5909 Mendoza
## 5910 Mendoza
## 5911 Bâtard-Montrachet
## 5912 Chevalier-Montrachet
## 5913 Anderson Valley
## 5914 Anderson Valley
## 5915
## 5916 Columbia Valley (WA) Columbia Valley
## 5917 Russian River Valley Sonoma
## 5918 Vittoria
## 5919 Finger Lakes Finger Lakes
## 5920 Paso Robles Central Coast
## 5921 Atlas Peak Napa
## 5922 Yakima Valley Columbia Valley
## 5923 Columbia Valley (WA) Columbia Valley
## 5924 Aglianico del Vulture
## 5925 Alexander Valley Sonoma
## 5926 Columbia Valley (WA) Columbia Valley
## 5927 Walla Walla Valley (WA) Columbia Valley
## 5928 Columbia Valley (WA) Columbia Valley
## 5929 Sonoma County Sonoma
## 5930 Columbia Valley (WA) Columbia Valley
## 5931 Margaux
## 5932 Pessac-Léognan
## 5933 Saint-Émilion
## 5934 Listrac-Médoc
## 5935 Finger Lakes Finger Lakes
## 5936 Finger Lakes Finger Lakes
## 5937 Margaux
## 5938 Côtes de Bourg
## 5939 Puisseguin Saint-Émilion
## 5940 Graves
## 5941 Pessac-Léognan
## 5942 Bordeaux Supérieur
## 5943 Margaux
## 5944 Saint-Estèphe
## 5945 Spring Mountain District Napa
## 5946 Willamette Valley Willamette Valley
## 5947 Bordeaux
## 5948 Santa Barbara County Central Coast
## 5949 Vin de Pays des Côtes de Gascogne
## 5950
## 5951
## 5952
## 5953 Taburno
## 5954 Los Carneros Napa-Sonoma
## 5955 Napa Valley Napa
## 5956 Mâcon-Villages
## 5957 Sauternes
## 5958 Bordeaux
## 5959 Bordeaux
## 5960
## 5961 California California Other
## 5962 Asprinio di Aversa
## 5963 Napa Valley Napa
## 5964 Napa Valley Napa
## 5965 Napa Valley Napa
## 5966 Irpinia
## 5967 Orvieto Classico
## 5968 Alsace
## 5969 Bourgogne
## 5970 Etna
## 5971 Sicilia
## 5972 Sicilia
## 5973 Sicilia
## 5974 Lodi Central Valley
## 5975 Terre Siciliane
## 5976 Lodi Central Valley
## 5977 Napa Valley Napa
## 5978 Alsace
## 5979 South Eastern Australia
## 5980
## 5981 Sonoma Coast Sonoma
## 5982 Terre Siciliane
## 5983
## 5984 Alsace
## 5985 California California Other
## 5986 Sicilia
## 5987 Sicilia
## 5988 Russian River Valley Sonoma
## 5989 Puglia
## 5990 Santa Barbara County Central Coast
## 5991
## 5992 Terre Siciliane
## 5993 Etna
## 5994 Terra Alta
## 5995 Chablis
## 5996 Mâcon-Villages
## 5997
## 5998 Green Valley Sonoma
## 5999 Sierra Foothills Sierra Foothills
## 6000 Bardolino
## 6001 Russian River Valley Sonoma
## 6002 California California Other
## 6003 Veronese
## 6004 Lodi Central Valley
## 6005 Napa Valley Napa
## 6006
## 6007 Spring Mountain District Napa
## 6008
## 6009
## 6010 Orcia
## 6011 Santa Maria Valley Central Coast
## 6012 Dry Creek Valley Sonoma
## 6013 Santa Cruz Mountains Central Coast
## 6014
## 6015
## 6016 Valpolicella Classico Superiore
## 6017 Mendocino Ridge
## 6018 Ballard Canyon Central Coast
## 6019 Sonoma Coast Sonoma
## 6020 Santa Lucia Highlands Central Coast
## 6021 Montefalco Rosso
## 6022
## 6023 Carneros Napa-Sonoma
## 6024 Knights Valley Sonoma
## 6025
## 6026 California California Other
## 6027
## 6028 Champagne
## 6029 Willamette Valley Willamette Valley
## 6030 Champagne
## 6031 Willamette Valley Willamette Valley
## 6032 Willamette Valley Willamette Valley
## 6033 Champagne
## 6034 Sonoma County Sonoma
## 6035 Rogue Valley Southern Oregon
## 6036 Limestone Coast
## 6037 Sonoma Valley Sonoma
## 6038 Sonoma Valley Sonoma
## 6039 Anderson Valley
## 6040 Champagne
## 6041 Willamette Valley Willamette Valley
## 6042 Willamette Valley Willamette Valley
## 6043 Willamette Valley Willamette Valley
## 6044 Anderson Valley
## 6045 Bordeaux Blanc
## 6046 Willamette Valley Willamette Valley
## 6047 Willamette Valley Willamette Valley
## 6048 Umpqua Valley Southern Oregon
## 6049 Anderson Valley
## 6050 South Australia
## 6051 Carneros Napa-Sonoma
## 6052 Willamette Valley Willamette Valley
## 6053 Mendocino County
## 6054 Willamette Valley Willamette Valley
## 6055 Willamette Valley Willamette Valley
## 6056 Champagne
## 6057 Sonoma Valley Sonoma
## 6058 Chianti Classico
## 6059 Bordeaux Rosé
## 6060 North Fork of Long Island Long Island
## 6061
## 6062 Walla Walla Valley (WA) Columbia Valley
## 6063 Columbia Gorge (WA) Washington Other
## 6064 North Fork of Long Island Long Island
## 6065 Chianti Classico
## 6066 Ribera del Duero
## 6067 Chianti Classico
## 6068 Chianti Classico
## 6069 Chianti Classico
## 6070 Chianti Classico
## 6071 Fair Play Sierra Foothills
## 6072 Champagne
## 6073 Napa Valley Napa
## 6074 Paso Robles Central Coast
## 6075 Red Mountain Columbia Valley
## 6076 Chianti Classico
## 6077 Rías Baixas
## 6078 Chianti Classico
## 6079 Paso Robles Central Coast
## 6080
## 6081 Rioja
## 6082 Chianti Rufina
## 6083 Chianti
## 6084 Columbia Valley (WA) Columbia Valley
## 6085 Columbia Valley (WA) Columbia Valley
## 6086
## 6087
## 6088 Livermore Valley Central Coast
## 6089 Uco Valley
## 6090 Sonoma County Sonoma
## 6091 Spring Mountain District Napa
## 6092 Mendoza
## 6093 Salta
## 6094 Walla Walla Valley (OR) Oregon Other
## 6095 Napa Valley Napa
## 6096 Barbaresco
## 6097 Mendoza
## 6098 Vista Flores
## 6099 Barolo
## 6100
## 6101 Pouilly-Fuissé
## 6102 Carignano del Sulcis
## 6103
## 6104
## 6105
## 6106 Saint-Véran
## 6107
## 6108 Chablis
## 6109 Mâcon-Azé
## 6110
## 6111
## 6112 Chiles Valley Napa
## 6113 Cannonau di Sardegna
## 6114 Napa Valley Napa
## 6115
## 6116 Viré-Clessé
## 6117 Sonoma Coast Sonoma
## 6118 Sta. Rita Hills Central Coast
## 6119 Dundee Hills Willamette Valley
## 6120 Ribera del Duero
## 6121 Ribera del Duero
## 6122 Barolo
## 6123
## 6124 Walla Walla Valley (OR) Oregon Other
## 6125 Willamette Valley
## 6126 Dundee Hills Willamette Valley
## 6127 Dundee Hills Willamette Valley
## 6128 Russian River Valley Sonoma
## 6129 Paso Robles Central Coast
## 6130 Champagne
## 6131 Champagne
## 6132 Willamette Valley Willamette Valley
## 6133 Santa Ynez Valley Central Coast
## 6134
## 6135 Barolo
## 6136 Napa Valley Napa
## 6137 Chablis
## 6138 Quarts de Chaume
## 6139 Barolo
## 6140 Russian River Valley Sonoma
## 6141 Barolo
## 6142 Paso Robles Central Coast
## 6143 Sta. Rita Hills Central Coast
## 6144 Willamette Valley
## 6145 Barolo
## 6146 Central Coast Central Coast
## 6147 Rutherford Napa
## 6148 Mendocino County
## 6149 Côtes de Provence
## 6150 Bordeaux Blanc
## 6151
## 6152 Willamette Valley Willamette Valley
## 6153 Champagne
## 6154
## 6155 Pyrenees
## 6156
## 6157 Costières de Nîmes
## 6158 Napa Valley Napa
## 6159 Alexander Valley Sonoma
## 6160 Prosecco Superiore di Cartizze
## 6161 High Valley
## 6162 Graves
## 6163 Bordeaux Blanc
## 6164 Santa Cruz Mountains Central Coast
## 6165 Willamette Valley Willamette Valley
## 6166 Pessac-Léognan
## 6167 Dundee Hills Willamette Valley
## 6168 Côtes de Provence
## 6169 Champagne
## 6170 Champagne
## 6171 Russian River Valley Sonoma
## 6172 Horse Heaven Hills Columbia Valley
## 6173 North Fork of Long Island Long Island
## 6174 Rioja
## 6175 Lambrusco Grasparossa di Castelvetro
## 6176 Lambrusco Grasparossa di Castelvetro
## 6177 Ribera del Duero
## 6178 Long Island Long Island
## 6179 California California Other
## 6180 Saint-Amour
## 6181 Pays d'Oc
## 6182 Pays d'Oc
## 6183 Temecula Valley South Coast
## 6184 Rías Baixas
## 6185 Rioja
## 6186 Arroyo Seco Central Coast
## 6187 Rueda
## 6188
## 6189 North Coast
## 6190 Hudson River Region New York Other
## 6191 California California Other
## 6192 Barbaresco
## 6193 Red Mountain Columbia Valley
## 6194 Saint-Véran
## 6195 Pouilly-Fuissé
## 6196 Barbera d'Asti
## 6197 Saint-Véran
## 6198 Columbia Valley (WA) Columbia Valley
## 6199 Seneca Lake Finger Lakes
## 6200 Finger Lakes Finger Lakes
## 6201 Uco Valley
## 6202 Grand Valley
## 6203
## 6204 Petit Chablis
## 6205 California California Other
## 6206 Mendoza
## 6207 Mendoza
## 6208
## 6209 Grand Valley
## 6210
## 6211 Columbia Valley (OR) Oregon Other
## 6212 Howell Mountain Napa
## 6213 Virginia
## 6214 Potter Valley
## 6215 Chablis
## 6216 Petit Chablis
## 6217 Alexander Valley Sonoma
## 6218 Mâcon-Villages
## 6219 Rogue Valley Southern Oregon
## 6220
## 6221 Grand Valley
## 6222 Willamette Valley Willamette Valley
## 6223 Rutherford Napa
## 6224
## 6225 Sonoma Valley Sonoma
## 6226
## 6227
## 6228
## 6229
## 6230 Mâcon-Villages
## 6231 Alto Adige
## 6232 Soave Classico
## 6233 Alto Adige
## 6234
## 6235 Stags Leap District Napa
## 6236 Willamette Valley Willamette Valley
## 6237 Santa Barbara County Central Coast
## 6238 Paso Robles Central Coast
## 6239 Muscadet Sèvre et Maine
## 6240 Roussette de Savoie
## 6241 Muscadet Côtes de Grandlieu
## 6242
## 6243 El Dorado Sierra Foothills
## 6244 Alto Adige
## 6245
## 6246
## 6247
## 6248 Russian River Valley Sonoma
## 6249 Rogue Valley Southern Oregon
## 6250
## 6251 Lugana
## 6252
## 6253 Lugana
## 6254
## 6255
## 6256
## 6257 Napa Valley Napa
## 6258 Mount Veeder Napa
## 6259 Sonoma County Sonoma
## 6260 Alto Adige
## 6261 Walla Walla Valley (WA) Columbia Valley
## 6262 Oakville Napa
## 6263 Walla Walla Valley (WA) Columbia Valley
## 6264 Russian River Valley Sonoma
## 6265 Diamond Mountain District Napa
## 6266 Diamond Mountain District Napa
## 6267 Mendocino County
## 6268 Yakima Valley Columbia Valley
## 6269 Willamette Valley Willamette Valley
## 6270 Santa Maria Valley Central Coast
## 6271 Napa Valley Napa
## 6272 Pine Mountain-Cloverdale Peak Sonoma
## 6273
## 6274 Walla Walla Valley (WA) Columbia Valley
## 6275 Oregon Oregon Other
## 6276 Russian River Valley Sonoma
## 6277 Napa Valley Napa
## 6278 Mt. Harlan Central Coast
## 6279 Dundee Hills Willamette Valley
## 6280 Diamond Mountain District Napa
## 6281 Russian River Valley Sonoma
## 6282 Yakima Valley Columbia Valley
## 6283 Sonoma Coast Sonoma
## 6284 Russian River Valley Sonoma
## 6285 Pine Mountain-Cloverdale Peak Sonoma
## 6286 Russian River Valley Sonoma
## 6287 Spring Mountain District Napa
## 6288 Mendoza
## 6289 Alexander Valley Sonoma
## 6290 Côtes du Jura
## 6291
## 6292 Sancerre
## 6293 Virginia
## 6294 Virginia
## 6295 California California Other
## 6296 Mendoza
## 6297 Paso Robles Central Coast
## 6298
## 6299 Paso Robles Central Coast
## 6300 Paso Robles Central Coast
## 6301 California California Other
## 6302 Chianti Classico
## 6303 Vin Mousseux
## 6304
## 6305 Vouvray
## 6306 California California Other
## 6307 California California Other
## 6308 Grand Valley
## 6309 Chianti Classico
## 6310 Morellino di Scansano
## 6311 Mendoza
## 6312 Central Coast Central Coast
## 6313 Livermore Valley Central Coast
## 6314 Calaveras County Sierra Foothills
## 6315 Chianti Classico
## 6316 Valdobbiadene Prosecco Superiore
## 6317 Saumur
## 6318 Muscadet Sèvre et Maine
## 6319 Russian River Valley Sonoma
## 6320 Columbia Valley (WA) Columbia Valley
## 6321 Muscadet Sèvre et Maine
## 6322 Valdobbiadene Prosecco Superiore
## 6323 Walla Walla Valley (WA) Columbia Valley
## 6324
## 6325 Crémant d'Alsace
## 6326 Crémant d'Alsace
## 6327 Columbia Valley (OR) Oregon Other
## 6328 Southern Oregon Southern Oregon
## 6329
## 6330
## 6331 Sta. Rita Hills Central Coast
## 6332 Alsace
## 6333
## 6334
## 6335 Champagne
## 6336 Champagne
## 6337 Alsace
## 6338 Valdobbiadene Prosecco Superiore
## 6339 Champagne
## 6340 San Bernabe Central Coast
## 6341 Adelaida District Central Coast
## 6342 Lodi Central Valley
## 6343 Diamond Mountain District Napa
## 6344 Rioja
## 6345 Santa Ynez Valley Central Coast
## 6346 Fiddletown Sierra Foothills
## 6347 Paso Robles Central Coast
## 6348
## 6349
## 6350 Walla Walla Valley (OR) Oregon Other
## 6351 Oakville Napa
## 6352 Barolo
## 6353 Willamette Valley Willamette Valley
## 6354 Chablis
## 6355 Alexander Valley Sonoma
## 6356 Vermentino di Gallura
## 6357 Barbaresco
## 6358 Chablis
## 6359 Santa Maria Valley Central Coast
## 6360 South Australia
## 6361 Barbaresco
## 6362 Dry Creek Valley Sonoma
## 6363 Chablis
## 6364 Chablis
## 6365 Barbaresco
## 6366 Anderson Valley
## 6367 Ben Lomond Mountain Central Coast
## 6368 Mendoza
## 6369 Barbaresco
## 6370 Barolo
## 6371 Walla Walla Valley (OR) Oregon Other
## 6372 Chablis
## 6373 Chablis
## 6374 Barossa
## 6375
## 6376 Veneto
## 6377
## 6378 Cahors
## 6379 South Coast South Coast
## 6380 Mendoza
## 6381
## 6382 California California Other
## 6383 California California Other
## 6384 Napa Valley Napa
## 6385
## 6386 Columbia Valley (WA) Columbia Valley
## 6387
## 6388 Prosecco
## 6389 Bergerac Sec
## 6390
## 6391
## 6392 Buzet
## 6393 Lodi Central Valley
## 6394 North Fork of Long Island Long Island
## 6395 Mendoza
## 6396
## 6397 Argentina
## 6398 Valdobbiadene Superiore di Cartizze
## 6399 Tupungato
## 6400
## 6401
## 6402 Mendocino County
## 6403 Mendocino Ridge
## 6404
## 6405 Maremma
## 6406 Vin de Pays d'Oc
## 6407 Veneto
## 6408
## 6409
## 6410 Lugana
## 6411 Russian River Valley Sonoma
## 6412 Alexander Valley Sonoma
## 6413
## 6414
## 6415
## 6416 Oakville Napa
## 6417 Sicilia
## 6418 Vin de Pays d'Oc
## 6419
## 6420
## 6421 Vin de Pays d'Oc
## 6422 Dry Creek Valley Sonoma
## 6423 Rattlesnake Hills Columbia Valley
## 6424 Pomerol
## 6425 Brunello di Montalcino
## 6426 Saint-Estèphe
## 6427 Champagne
## 6428 Saint-Julien
## 6429 Pessac-Léognan
## 6430 Saint-Émilion
## 6431 Pessac-Léognan
## 6432 St. Helena Napa
## 6433 Oakville Napa
## 6434 Pessac-Léognan
## 6435 Saint-Estèphe
## 6436 Saint-Julien
## 6437 Brunello di Montalcino
## 6438 Toro
## 6439 Champagne
## 6440 Brunello di Montalcino
## 6441 Saint-Émilion
## 6442 Pessac-Léognan
## 6443 Pomerol
## 6444 Pessac-Léognan
## 6445 Saint-Émilion
## 6446 Brunello di Montalcino
## 6447 Saint-Émilion
## 6448 Saint-Émilion
## 6449 Napa Valley Napa
## 6450 Champagne
## 6451 Brunello di Montalcino
## 6452 Columbia Valley (WA) Columbia Valley
## 6453 Amarone della Valpolicella Classico
## 6454 Chablis
## 6455 California California Other
## 6456 Columbia Valley (WA) Columbia Valley
## 6457 Yakima Valley Columbia Valley
## 6458 Walla Walla Valley (WA) Columbia Valley
## 6459 Sonoma Coast Sonoma
## 6460 Morey-Saint-Denis
## 6461 Volnay
## 6462 Columbia Valley (WA) Columbia Valley
## 6463 Columbia Valley (WA) Columbia Valley
## 6464 Amarone della Valpolicella Classico
## 6465 Spain
## 6466 Niagara Peninsula
## 6467 Valpolicella Classico Superiore Ripasso
## 6468 Red Mountain Columbia Valley
## 6469 Chassagne-Montrachet
## 6470 Amarone della Valpolicella
## 6471 Meursault
## 6472 Rockpile Sonoma
## 6473 Amarone della Valpolicella Classico
## 6474 Columbia Valley (WA) Columbia Valley
## 6475 Columbia Valley (WA) Columbia Valley
## 6476 Napa Valley Napa
## 6477 Yakima Valley Columbia Valley
## 6478 Crémant de Bourgogne
## 6479 Amarone della Valpolicella Classico
## 6480 Rutherford Napa
## 6481
## 6482
## 6483 La Consulta
## 6484 Willamette Valley Willamette Valley
## 6485 Montepulciano d'Abruzzo
## 6486 Willamette Valley Willamette Valley
## 6487
## 6488 Sonoma County Sonoma
## 6489 Montsant
## 6490 Willamette Valley Willamette Valley
## 6491 Dry Creek Valley Sonoma
## 6492 Rías Baixas
## 6493 Jumilla
## 6494 San Juan
## 6495 Rogue Valley Southern Oregon
## 6496 Columbia Valley (WA) Columbia Valley
## 6497 Spain
## 6498 Ghemme
## 6499 Ribera del Duero
## 6500 Montepulciano d'Abruzzo
## 6501 Cafayate
## 6502
## 6503 Rogue Valley Southern Oregon
## 6504
## 6505 Argentina
## 6506 Cava
## 6507 Vino de la Tierra de Castilla
## 6508 Montsant
## 6509 Mendoza
## 6510 Rías Baixas
## 6511 Bourgogne
## 6512 La Mancha
## 6513 California California Other
## 6514 Bourgogne
## 6515 Old Mission Peninsula
## 6516 Old Mission Peninsula
## 6517 Finger Lakes Finger Lakes
## 6518 Missouri
## 6519 Chablis
## 6520 Bourgogne
## 6521 Bourgogne
## 6522 Bourgogne
## 6523 New Mexico
## 6524 La Mancha
## 6525 Missouri
## 6526
## 6527 Virginia
## 6528 Southeastern New England
## 6529 Almansa
## 6530 Valdepeñas
## 6531 New Mexico
## 6532 Napa Valley Napa
## 6533 Cava
## 6534 California California Other
## 6535 Lodi Central Valley
## 6536 Lodi Central Valley
## 6537 Bourgogne
## 6538 Chablis
## 6539 Mâcon-Villages
## 6540 Grand River Valley
## 6541 California California Other
## 6542
## 6543 Horse Heaven Hills Columbia Valley
## 6544
## 6545 Santa Clara Valley Central Coast
## 6546 Sonoma County Sonoma
## 6547 Finger Lakes Finger Lakes
## 6548 Sonoita
## 6549
## 6550 Paso Robles Central Coast
## 6551 Seneca Lake Finger Lakes
## 6552 Sierra Foothills Sierra Foothills
## 6553
## 6554
## 6555
## 6556
## 6557
## 6558 Lodi Central Valley
## 6559
## 6560 New York New York Other
## 6561 North Fork of Long Island Long Island
## 6562 Old Mission Peninsula
## 6563
## 6564 Texas
## 6565
## 6566
## 6567
## 6568 Texas
## 6569
## 6570 Chablis
## 6571 Sonoma Mountain Sonoma
## 6572 Corton-Charlemagne
## 6573 Meursault
## 6574 Puligny-Montrachet
## 6575 Wahluke Slope Columbia Valley
## 6576
## 6577 Chablis
## 6578 Puligny-Montrachet
## 6579 Yakima Valley Columbia Valley
## 6580 Napa Valley Napa
## 6581 Columbia Valley (WA) Columbia Valley
## 6582 Sonoma Coast Sonoma
## 6583 Puligny-Montrachet
## 6584 Russian River Valley Sonoma
## 6585 Russian River Valley Sonoma
## 6586 Columbia Valley (WA) Columbia Valley
## 6587 Puligny-Montrachet
## 6588 Howell Mountain Napa
## 6589 Carneros Napa-Sonoma
## 6590
## 6591 Chianti Classico
## 6592 Sonoma Coast Sonoma
## 6593 Chianti Classico
## 6594 Muscadet Sèvre et Maine
## 6595 Russian River Valley Sonoma
## 6596 Vernaccia di San Gimignano
## 6597 Chianti Classico
## 6598 Russian River Valley Sonoma
## 6599 Juliénas
## 6600 Anjou
## 6601 Beaujolais-Villages
## 6602 Vernaccia di San Gimignano
## 6603
## 6604 Chianti Colli Senesi
## 6605 Central Coast Central Coast
## 6606
## 6607 Vernaccia di San Gimignano
## 6608
## 6609 Muscadet Sèvre et Maine
## 6610 Sancerre
## 6611
## 6612 Dry Creek Valley Sonoma
## 6613 Howell Mountain Napa
## 6614
## 6615
## 6616 Alto Adige
## 6617 Napa Valley Napa
## 6618 Maranges
## 6619 Sonoma County Sonoma
## 6620
## 6621 Conegliano Valdobbiadene Prosecco Superiore
## 6622 San Benito County Central Coast
## 6623
## 6624 Emilia
## 6625 Sonoma Coast Sonoma
## 6626 Toscana
## 6627 Chianti Classico
## 6628 Southern Oregon Southern Oregon
## 6629 Alexander Valley Sonoma
## 6630 Alexander Valley Sonoma
## 6631 Sonoma County Sonoma
## 6632 Soave Classico
## 6633 Sonoma Valley Sonoma
## 6634 Carneros Napa-Sonoma
## 6635 Mendoza
## 6636 Terra Alta
## 6637 Piedmont
## 6638 Anderson Valley
## 6639 Conegliano Valdobbiadene Prosecco Superiore
## 6640
## 6641 St. Helena Napa
## 6642 Piedmont
## 6643 Russian River Valley Sonoma
## 6644 Santa Ynez Valley Central Coast
## 6645 Russian River Valley Sonoma
## 6646 Sicilia
## 6647 Toscana
## 6648
## 6649 King Valley
## 6650
## 6651 Toscana
## 6652 Sonoma Coast Sonoma
## 6653 Crémant de Bourgogne
## 6654 Sicilia
## 6655 Sicilia
## 6656 Sonoma Valley Sonoma
## 6657
## 6658 Napa Valley Napa
## 6659 Tavel
## 6660 Pommard
## 6661 San Juan
## 6662 Mendoza
## 6663 Yarra Valley
## 6664
## 6665 Clos de Vougeot
## 6666 Napa Valley Napa
## 6667 Santa Ynez Valley Central Coast
## 6668 Chassagne-Montrachet
## 6669 Red Mountain Columbia Valley
## 6670 Santa Barbara County Central Coast
## 6671 Sta. Rita Hills Central Coast
## 6672 Central Coast Central Coast
## 6673 Yakima Valley Columbia Valley
## 6674
## 6675 Columbia Valley (WA) Columbia Valley
## 6676 Red Mountain Columbia Valley
## 6677 Horse Heaven Hills Columbia Valley
## 6678
## 6679 Alsace
## 6680 Langhe
## 6681 Rutherford Napa
## 6682 Paso Robles Central Coast
## 6683 Paso Robles Central Coast
## 6684 Barolo
## 6685 Santa Maria Valley Central Coast
## 6686 Alsace
## 6687 Russian River Valley Sonoma
## 6688 Red Mountain Columbia Valley
## 6689 Napa Valley Napa
## 6690 Barbaresco
## 6691 Fort Ross-Seaview Sonoma
## 6692 Alsace
## 6693 Barbaresco
## 6694 Napa Valley Napa
## 6695 Barbaresco
## 6696 Alsace
## 6697 Cortona
## 6698 Sonoma Coast Sonoma
## 6699 Yecla
## 6700 Russian River Valley Sonoma
## 6701
## 6702 Mount Veeder Napa
## 6703 Columbia Valley (WA) Columbia Valley
## 6704 Lodi Central Valley
## 6705 Santa Barbara County Central Coast
## 6706 Alicante
## 6707 Walla Walla Valley (WA) Columbia Valley
## 6708 Barbera d'Alba
## 6709 Russian River Valley Sonoma
## 6710
## 6711 Costières de Nîmes
## 6712 Saint-Estèphe
## 6713 Columbia Valley (WA) Columbia Valley
## 6714 Barolo
## 6715 Costières de Nîmes
## 6716 Muscadet Côtes de Grandlieu
## 6717 Costa Toscana
## 6718 Columbia Valley (WA) Columbia Valley
## 6719 Seneca Lake Finger Lakes
## 6720 Napa Valley Napa
## 6721 Columbia Valley (WA) Columbia Valley
## 6722 Napa Valley Napa
## 6723 Russian River Valley Sonoma
## 6724 Wahluke Slope Columbia Valley
## 6725 Santa Lucia Highlands Central Coast
## 6726 Jumilla
## 6727 Albana di Romagna
## 6728 Pernand-Vergelesses
## 6729 Red Mountain Columbia Valley
## 6730 Green Valley Sonoma
## 6731 Grands-Echezeaux
## 6732 Chambolle-Musigny
## 6733 Happy Canyon of Santa Barbara Central Coast
## 6734 Volnay
## 6735 Nuits-St.-Georges
## 6736 Pommard
## 6737
## 6738 Washington Washington Other
## 6739 Napa Valley Napa
## 6740 Alexander Valley Sonoma
## 6741 Santa Lucia Highlands Central Coast
## 6742 Moscadello di Montalcino
## 6743 Howell Mountain Napa
## 6744 Pommard
## 6745 Mazis-Chambertin
## 6746 Saint-Julien
## 6747 Columbia Valley (WA) Columbia Valley
## 6748 Marin County North Coast
## 6749 Clarksburg Central Valley
## 6750 Russian River Valley Sonoma
## 6751 Brunello di Montalcino
## 6752
## 6753 Mendoza
## 6754 Bolgheri
## 6755 California California Other
## 6756 Sta. Rita Hills Central Coast
## 6757
## 6758 Brunello di Montalcino
## 6759 Columbia Valley (WA) Columbia Valley
## 6760 Brunello di Montalcino
## 6761
## 6762
## 6763
## 6764
## 6765
## 6766 The Hamptons, Long Island Long Island
## 6767 Mendoza
## 6768 Mendoza
## 6769 Rías Baixas
## 6770 Brunello di Montalcino
## 6771 Brunello di Montalcino
## 6772 Saint-Estèphe
## 6773 Haut-Médoc
## 6774 Médoc
## 6775 Pomerol
## 6776 Haut-Médoc
## 6777 Muscadet Sèvre et Maine
## 6778 Willamette Valley Willamette Valley
## 6779
## 6780
## 6781 Clarksburg Central Valley
## 6782 Cahors
## 6783
## 6784
## 6785 Venezia Giulia
## 6786 Vin de Pays du Comté Tolosan
## 6787 California California Other
## 6788 Ribera del Duero
## 6789 Columbia Gorge (OR) Oregon Other
## 6790 Madiran
## 6791
## 6792
## 6793
## 6794
## 6795 Rueda
## 6796 Brunello di Montalcino
## 6797 Rioja
## 6798 Livermore Valley Central Coast
## 6799 Brunello di Montalcino
## 6800 Saint-Émilion
## 6801 Livermore Valley Central Coast
## 6802 Brunello di Montalcino
## 6803 Napa Valley Napa
## 6804 Russian River Valley Sonoma
## 6805
## 6806 Brunello di Montalcino
## 6807 Central Coast Central Coast
## 6808 Champagne
## 6809 Brunello di Montalcino
## 6810 Mendoza
## 6811
## 6812 Rioja
## 6813 Somontano
## 6814 Cadillac Côtes de Bordeaux
## 6815 Cadillac Côtes de Bordeaux
## 6816 Castillon Côtes de Bordeaux
## 6817 Blaye Côtes de Bordeaux
## 6818 Cadillac Côtes de Bordeaux
## 6819 Paso Robles Central Coast
## 6820 Carneros Napa-Sonoma
## 6821 Brunello di Montalcino
## 6822
## 6823 Sta. Rita Hills Central Coast
## 6824 Brunello di Montalcino
## 6825 Anderson Valley
## 6826 Ribera del Duero
## 6827 Champagne
## 6828 Tupungato
## 6829 Valdeorras
## 6830 Brunello di Montalcino
## 6831 Brunello di Montalcino
## 6832 Brunello di Montalcino
## 6833 Brunello di Montalcino
## 6834 Tierra del Viños de Zamora
## 6835 Champagne
## 6836
## 6837 Pessac-Léognan
## 6838 Saint-Julien
## 6839 Médoc
## 6840 Cadillac Côtes de Bordeaux
## 6841 Carneros Napa-Sonoma
## 6842 Brunello di Montalcino
## 6843 Brunello di Montalcino
## 6844 Brunello di Montalcino
## 6845 Brunello di Montalcino
## 6846 Finger Lakes Finger Lakes
## 6847 Mendoza
## 6848 Brunello di Montalcino
## 6849 Brunello di Montalcino
## 6850 Pessac-Léognan
## 6851 Blaye Côtes de Bordeaux
## 6852 Brunello di Montalcino
## 6853 Sonoma Coast Sonoma
## 6854 Champagne
## 6855 Valdobbiadene Prosecco Superiore
## 6856 Valdobbiadene Prosecco Superiore
## 6857 Mendoza
## 6858 Santa Ynez Valley Central Coast
## 6859 Vino de la Tierra de Castilla y León
## 6860 Valdobbiadene Prosecco Superiore
## 6861 Champagne
## 6862 Crémant d'Alsace
## 6863 Crémant d'Alsace
## 6864 Niagara Escarpment
## 6865 Contra Costa County Central Coast
## 6866 Salta
## 6867
## 6868 Champagne
## 6869 Mendoza
## 6870
## 6871
## 6872 Soave Classico
## 6873 Champagne
## 6874 Navarra
## 6875 Valdobbiadene Prosecco Superiore
## 6876 Champagne
## 6877
## 6878
## 6879 Willamette Valley Willamette Valley
## 6880 Paso Robles Central Coast
## 6881
## 6882 Santa Barbara County Central Coast
## 6883 Valdobbiadene Superiore di Cartizze
## 6884 Alto Adige
## 6885 Collio
## 6886 Collio
## 6887 Friuli Colli Orientali
## 6888 Friuli Colli Orientali
## 6889 Uco Valley
## 6890
## 6891 Rogue Valley Southern Oregon
## 6892 Rogue Valley Southern Oregon
## 6893 Friuli Colli Orientali
## 6894 Alto Adige
## 6895 Collio
## 6896 Collio
## 6897 Willamette Valley Willamette Valley
## 6898 Friuli Colli Orientali
## 6899 Oregon Oregon Other
## 6900 Mendoza
## 6901 Alto Adige
## 6902 Trentino
## 6903 Trentino
## 6904 Lodi Central Valley
## 6905 Mendoza
## 6906 Lake Michigan Shore
## 6907 Friuli Colli Orientali
## 6908
## 6909
## 6910 Valle de Uco
## 6911 Delle Venezie
## 6912
## 6913
## 6914 Chehalem Mountains Willamette Valley
## 6915 Muscadet Sèvre et Maine
## 6916 Sonoma Coast Sonoma
## 6917 Priorat
## 6918 Soave Classico
## 6919 Willamette Valley Willamette Valley
## 6920 Santa Maria Valley Central Coast
## 6921
## 6922 Muscadet Sèvre et Maine
## 6923 Sta. Rita Hills Central Coast
## 6924 Edna Valley Central Coast
## 6925 Russian River Valley Sonoma
## 6926 Monterey Central Coast
## 6927 Russian River Valley Sonoma
## 6928 St. Helena Napa
## 6929
## 6930
## 6931 Dundee Hills Willamette Valley
## 6932
## 6933
## 6934
## 6935 Yountville Napa
## 6936 Sta. Rita Hills Central Coast
## 6937 Collio
## 6938 Sonoma Coast Sonoma
## 6939
## 6940 Santa Lucia Highlands Central Coast
## 6941
## 6942 Eden Valley
## 6943
## 6944 Lalande de Pomerol
## 6945 Central Victoria
## 6946
## 6947
## 6948
## 6949
## 6950 Horse Heaven Hills Columbia Valley
## 6951 Brunello di Montalcino
## 6952 Brunello di Montalcino
## 6953
## 6954 Jerez
## 6955 Yakima Valley Columbia Valley
## 6956
## 6957
## 6958
## 6959 Bordeaux Côtes de Francs
## 6960 Haut-Médoc
## 6961 Chianti Classico
## 6962
## 6963 California California Other
## 6964 Valpolicella Superiore
## 6965 Lodi Central Valley
## 6966 Russian River Valley Sonoma
## 6967 Valpolicella
## 6968 Amador County Sierra Foothills
## 6969 Shenandoah Valley
## 6970
## 6971
## 6972 California California Other
## 6973
## 6974
## 6975 Dry Creek Valley Sonoma
## 6976
## 6977 California California Other
## 6978 California California Other
## 6979 Blaye Côtes de Bordeaux
## 6980 Entre-Deux-Mers
## 6981 Haut-Médoc
## 6982
## 6983 Margaret River
## 6984 Bardolino Classico
## 6985
## 6986 California California Other
## 6987 South Eastern Australia
## 6988
## 6989 Sonoma Coast Sonoma
## 6990 Savoie
## 6991 Savoie
## 6992 Santa Ynez Valley Central Coast
## 6993 Paso Robles Central Coast
## 6994 Napa Valley Napa
## 6995 Langhe
## 6996
## 6997 Sierra Foothills Sierra Foothills
## 6998
## 6999
## 7000 Barolo
## 7001 Langhe
## 7002 Alsace
## 7003 Palette
## 7004 Coteaux d'Aix-en-Provence
## 7005 Saint-Émilion
## 7006 Haut-Médoc
## 7007 Alsace
## 7008 Barbaresco
## 7009 Sierra Foothills Sierra Foothills
## 7010 Paso Robles Central Coast
## 7011 Castillon Côtes de Bordeaux
## 7012 Lambrusco Grasparossa di Castelvetro
## 7013
## 7014
## 7015 Var
## 7016 Blaye Côtes de Bordeaux
## 7017 Horse Heaven Hills Columbia Valley
## 7018 Central Coast Central Coast
## 7019 Santa Cruz Mountains Central Coast
## 7020 Columbia Valley (WA) Columbia Valley
## 7021 Alsace
## 7022 Alsace
## 7023 Dry Creek Valley Sonoma
## 7024 Franciacorta
## 7025 Franciacorta
## 7026
## 7027 Rutherford Napa
## 7028 Napa Valley Napa
## 7029
## 7030 Rutherford Napa
## 7031 Rutherford Napa
## 7032 Spring Mountain District Napa
## 7033 Franciacorta
## 7034 Willamette Valley Willamette Valley
## 7035 Saint-Émilion
## 7036 Toro
## 7037
## 7038 Knights Valley Sonoma
## 7039 Russian River Valley Sonoma
## 7040 California California Other
## 7041 Rockpile Sonoma
## 7042 Willamette Valley
## 7043
## 7044 Val de Loire
## 7045
## 7046
## 7047 Mendoza
## 7048 Mendoza
## 7049 Russian River Valley Sonoma
## 7050
## 7051 Cariñena
## 7052 Russian River Valley Sonoma
## 7053 Umpqua Valley Southern Oregon
## 7054 Mendoza
## 7055 Carneros Napa-Sonoma
## 7056 Vino de la Tierra de Castilla
## 7057 Rioja
## 7058 Carneros Napa-Sonoma
## 7059 Cahors
## 7060 Côtes de Gascogne
## 7061
## 7062 Rías Baixas
## 7063 Rías Baixas
## 7064
## 7065 California California Other
## 7066 Vino de la Tierra de Castilla
## 7067
## 7068 Bergerac Sec
## 7069 Rueda
## 7070 Barbera d'Alba
## 7071 Willamette Valley Willamette Valley
## 7072
## 7073 Victoria
## 7074 Livermore Valley Central Coast
## 7075 Napa Valley Napa
## 7076 La Rioja
## 7077 Mendoza
## 7078 California California Other
## 7079 Livermore Valley Central Coast
## 7080 Bourgogne
## 7081 Paso Robles Central Coast
## 7082 Yarra Valley
## 7083 Yarra Valley
## 7084 Mendocino
## 7085 Columbia Valley (WA) Columbia Valley
## 7086 Sonoma Coast Sonoma
## 7087 North Coast North Coast
## 7088
## 7089 Napa Valley Napa
## 7090 Lake County
## 7091 Mendoza
## 7092
## 7093
## 7094 Maipú
## 7095 Uco Valley
## 7096 Maipú
## 7097
## 7098 Napa Valley Napa
## 7099
## 7100 Rueda
## 7101 Valdobbiadene Prosecco Superiore
## 7102 Crémant d'Alsace
## 7103 Crémant d'Alsace
## 7104 Vino Spumante
## 7105 Ribbon Ridge Willamette Valley
## 7106 Champagne
## 7107
## 7108 Champagne
## 7109
## 7110 Sonoma County Sonoma
## 7111 Oregon Oregon Other
## 7112 Central Coast Central Coast
## 7113 Santa Barbara County Central Coast
## 7114 Sonoma County Sonoma
## 7115
## 7116 Russian River Valley Sonoma
## 7117 Valdobbiadene Prosecco Superiore
## 7118 Champagne
## 7119 Valdobbiadene Prosecco Superiore
## 7120 Valdobbiadene Prosecco Superiore
## 7121 Rioja
## 7122 Moulin-à-Vent
## 7123 Valdobbiadene Prosecco Superiore
## 7124 Santa Ynez Valley Central Coast
## 7125 Rioja
## 7126 Okanagan Valley
## 7127 Valle de Uco
## 7128 Carmel Valley Central Coast
## 7129 Chehalem Mountains Willamette Valley
## 7130 Napa Valley Napa
## 7131 Oregon Oregon Other
## 7132
## 7133
## 7134 Montepulciano d'Abruzzo
## 7135 Coteaux du Languedoc Pic Saint Loup
## 7136
## 7137 Primitivo del Salento
## 7138 Carmel Valley Central Coast
## 7139 Oregon Oregon Other
## 7140
## 7141 Willamette Valley Willamette Valley
## 7142 Okanagan Valley
## 7143 Barbera d'Alba Superiore
## 7144 Napa Valley Napa
## 7145 Napa Valley Napa
## 7146 Vin de France
## 7147
## 7148 Napa Valley Napa
## 7149 Santa Ynez Valley Central Coast
## 7150
## 7151 California California Other
## 7152 Napa County Napa
## 7153
## 7154 Moscato d'Asti
## 7155 Navarra
## 7156 Alsace
## 7157 Barbera d'Asti
## 7158 Barbera d'Asti
## 7159 Barolo
## 7160 Italy
## 7161 Barolo
## 7162 Barbera d'Asti Superiore
## 7163
## 7164 Côtes de Provence Sainte-Victoire
## 7165 Mendoza
## 7166 Sannio
## 7167 Greco di Tufo
## 7168
## 7169
## 7170
## 7171 Rueda
## 7172 Santa Lucia Highlands Central Coast
## 7173 North Fork of Long Island Long Island
## 7174 Sicilia
## 7175 Oakville Napa
## 7176 Finger Lakes Finger Lakes
## 7177
## 7178
## 7179
## 7180 Tarragona
## 7181 Côtes de Provence Sainte-Victoire
## 7182 Côtes de Provence
## 7183 Oak Knoll District Napa
## 7184 Russian River Valley Sonoma
## 7185 Crémant d'Alsace
## 7186 Red Mountain Columbia Valley
## 7187 Red Mountain Columbia Valley
## 7188 Finger Lakes Finger Lakes
## 7189 Napa Valley Napa
## 7190 Priorat
## 7191 Carneros Napa-Sonoma
## 7192
## 7193 Columbia Valley (WA) Columbia Valley
## 7194 Willamette Valley Willamette Valley
## 7195
## 7196
## 7197 Sancerre
## 7198
## 7199 Sancerre
## 7200
## 7201 Sancerre
## 7202 Willamette Valley Willamette Valley
## 7203 Willamette Valley
## 7204 Mendoza
## 7205
## 7206
## 7207 Willamette Valley Willamette Valley
## 7208 Willamette Valley
## 7209 Muscadet Sèvre et Maine
## 7210 Vin de France
## 7211 Mendocino County
## 7212
## 7213 Sicilia
## 7214 Barbaresco
## 7215 Barbaresco
## 7216
## 7217 Temecula Valley South Coast
## 7218 Willamette Valley
## 7219 Barbaresco
## 7220 Oregon Oregon Other
## 7221 Corse
## 7222 McMinnville Willamette Valley
## 7223 Dry Creek Valley Sonoma
## 7224 Valpolicella Classico Superiore
## 7225 Valpolicella Ripasso
## 7226 Napa Valley Napa
## 7227 Paso Robles Central Coast
## 7228 Napa Valley Napa
## 7229 Carneros Napa-Sonoma
## 7230 Chablis
## 7231 Rattlesnake Hills Columbia Valley
## 7232 La Mancha
## 7233 Rueda
## 7234 Valpolicella Classico
## 7235
## 7236 Vino de la Tierra de Castilla
## 7237 Finger Lakes Finger Lakes
## 7238 Mercurey
## 7239 Finger Lakes Finger Lakes
## 7240
## 7241 Valpolicella Superiore Ripasso
## 7242
## 7243 Mâcon-Fuissé
## 7244 Bourgogne
## 7245 Chablis
## 7246 Alexander Valley Sonoma
## 7247 Bourgogne
## 7248 Veneto
## 7249 Ribeira Sacra
## 7250 Toro
## 7251 Hautes Côtes de Nuits
## 7252 Finger Lakes Finger Lakes
## 7253 Napa Valley Napa
## 7254 Santa Barbara County Central Coast
## 7255 Napa Valley Napa
## 7256
## 7257 La Clape
## 7258 Yakima Valley Columbia Valley
## 7259 Columbia Valley (WA) Columbia Valley
## 7260 Santa Lucia Highlands Central Coast
## 7261
## 7262
## 7263
## 7264 Columbia Valley (WA) Columbia Valley
## 7265 Walla Walla Valley (WA) Columbia Valley
## 7266 Columbia Valley (WA) Columbia Valley
## 7267
## 7268 Sierra Foothills Sierra Foothills
## 7269 Los Carneros Napa-Sonoma
## 7270 Alsace
## 7271
## 7272 Paso Robles Central Coast
## 7273
## 7274 North Fork of Long Island Long Island
## 7275 Paso Robles Central Coast
## 7276 Amador County Sierra Foothills
## 7277 Anderson Valley
## 7278
## 7279 Alsace
## 7280 Santa Barbara County Central Coast
## 7281 Vigneti delle Dolomiti
## 7282 Trentino
## 7283 North Fork of Long Island Long Island
## 7284 Walla Walla Valley (WA) Columbia Valley
## 7285 Lake County
## 7286 Carneros Napa-Sonoma
## 7287 Napa Valley Napa
## 7288 Carneros Napa-Sonoma
## 7289 Amador County Sierra Foothills
## 7290 Russian River Valley Sonoma
## 7291 Fiano di Avellino
## 7292
## 7293
## 7294 Alsace
## 7295 Paso Robles Willow Creek District Central Coast
## 7296 Red Mountain Columbia Valley
## 7297 Oak Knoll District Napa
## 7298 McLaren Vale
## 7299 Sonoma Coast Sonoma
## 7300 Temecula Valley South Coast
## 7301 Ballard Canyon Central Coast
## 7302
## 7303 Alsace
## 7304 Saumur-Champigny
## 7305 Horse Heaven Hills Columbia Valley
## 7306 Columbia Valley (WA) Columbia Valley
## 7307 Bordeaux Blanc
## 7308 Bordeaux Blanc
## 7309 Willamette Valley Willamette Valley
## 7310 Alsace
## 7311 Crémant de Loire
## 7312 Alsace
## 7313 Alsace
## 7314 Paso Robles Central Coast
## 7315 Amador County Sierra Foothills
## 7316 California California Other
## 7317
## 7318 Navarra
## 7319 Finger Lakes Finger Lakes
## 7320 Lodi Central Valley
## 7321 Finger Lakes Finger Lakes
## 7322 Toscana
## 7323
## 7324
## 7325 Vin de Pays d'Oc
## 7326
## 7327 Ribera del Duero
## 7328 Sonoma County Sonoma
## 7329 New York New York Other
## 7330 Finger Lakes Finger Lakes
## 7331 Paso Robles Central Coast
## 7332 California California Other
## 7333 Rías Baixas
## 7334 California California Other
## 7335 Paso Robles Central Coast
## 7336 Vin Santo di Montepulciano
## 7337 Arroyo Grande Valley Central Coast
## 7338 Livermore Valley Central Coast
## 7339 Paso Robles Central Coast
## 7340 Lake County
## 7341
## 7342 Rías Baixas
## 7343 Columbia Valley (WA) Columbia Valley
## 7344 Brunello di Montalcino
## 7345 Columbia Valley (WA) Columbia Valley
## 7346 Brunello di Montalcino
## 7347 La Mancha
## 7348 Columbia Valley (WA) Columbia Valley
## 7349 Brunello di Montalcino
## 7350 Brunello di Montalcino
## 7351 Carneros Napa-Sonoma
## 7352 Washington Washington Other
## 7353 Brunello di Montalcino
## 7354 Columbia Gorge (WA) Washington Other
## 7355 Mendoza
## 7356 Oak Knoll District Napa
## 7357 Haut-Médoc
## 7358 Listrac-Médoc
## 7359 Haut-Médoc
## 7360 Columbia Valley (WA) Columbia Valley
## 7361 Finger Lakes Finger Lakes
## 7362 Brunello di Montalcino
## 7363 Brunello di Montalcino
## 7364 Rías Baixas
## 7365 Fort Ross-Seaview Sonoma
## 7366 Washington Washington Other
## 7367 Columbia Valley (WA) Columbia Valley
## 7368 Hermitage
## 7369 Navarra
## 7370 Red Mountain Columbia Valley
## 7371
## 7372 Sonoma County Sonoma
## 7373 Santa Lucia Highlands Central Coast
## 7374 Santa Barbara-Monterey North Coast
## 7375
## 7376 Russian River Valley Sonoma
## 7377 Anderson Valley
## 7378 Napa-Sonoma Napa-Sonoma
## 7379
## 7380
## 7381 Toro
## 7382 Yakima Valley Columbia Valley
## 7383 Sta. Rita Hills Central Coast
## 7384 Carmel Valley Central Coast
## 7385 Anderson Valley
## 7386 Bandol
## 7387 Napa Valley Napa
## 7388 Clarendon
## 7389 Gigondas
## 7390 Columbia Valley (WA) Columbia Valley
## 7391 Isola dei Nuraghi
## 7392 Montsant
## 7393 Napa Valley Napa
## 7394 Russian River Valley Sonoma
## 7395 Russian River Valley Sonoma
## 7396 Alto Adige
## 7397 Amador County Sierra Foothills
## 7398
## 7399 Central Coast Central Coast
## 7400 Rockpile Sonoma
## 7401 Russian River Valley Sonoma
## 7402 Knights Valley Sonoma
## 7403 Dry Creek Valley Sonoma
## 7404 Sonoma County Sonoma
## 7405 Sonoma County Sonoma
## 7406 Alsace
## 7407 Southern Oregon Southern Oregon
## 7408 Southern Oregon Southern Oregon
## 7409
## 7410 Carneros Napa-Sonoma
## 7411 Monterey County Central Coast
## 7412 Oregon Oregon Other
## 7413
## 7414 Alexander Valley Sonoma
## 7415 Finger Lakes Finger Lakes
## 7416 North Fork of Long Island Long Island
## 7417 Rioja
## 7418 Alsace
## 7419 Alexander Valley Sonoma
## 7420 Priorat
## 7421
## 7422 Sonoma County Sonoma
## 7423 Alsace
## 7424
## 7425 Willamette Valley Willamette Valley
## 7426 Central Coast Central Coast
## 7427
## 7428 Monterey Central Coast
## 7429
## 7430
## 7431 Mendocino County
## 7432 Adelaide Hills
## 7433 Oregon Oregon Other
## 7434 Oregon Oregon Other
## 7435
## 7436
## 7437 El Dorado County Sierra Foothills
## 7438 Finger Lakes Finger Lakes
## 7439 Paso Robles Central Coast
## 7440 Penedès
## 7441 Central Coast Central Coast
## 7442
## 7443 Alsace
## 7444 Sonoma Valley Sonoma
## 7445 California California Other
## 7446
## 7447 California California Other
## 7448 Yarra Valley
## 7449 Conca de Barberà
## 7450
## 7451 Pays d'Oc
## 7452 Pays d'Oc
## 7453 Barbaresco
## 7454 Barbera d'Asti
## 7455 Barbera d'Asti Superiore
## 7456 Barbaresco
## 7457 Costers del Segre
## 7458
## 7459
## 7460 Barbaresco
## 7461 Bourgogne
## 7462 Mâcon-Villages
## 7463 Cayuga Lake Finger Lakes
## 7464
## 7465 Mâcon-Villages
## 7466
## 7467 Yakima Valley Columbia Valley
## 7468 Yakima Valley Columbia Valley
## 7469 Yakima Valley Columbia Valley
## 7470 Barbaresco
## 7471 Pays d'Oc
## 7472 Mâcon-Villages
## 7473 Walla Walla Valley (WA) Columbia Valley
## 7474 Columbia Valley (WA) Columbia Valley
## 7475 California California Other
## 7476 Napa Valley Napa
## 7477 Barbaresco
## 7478 Barbaresco
## 7479 Barbera d'Asti Superiore
## 7480 Sierra Foothills Sierra Foothills
## 7481 Napa Valley Napa
## 7482 Southern Oregon Southern Oregon
## 7483 Paso Robles Central Coast
## 7484 Alexander Valley Sonoma
## 7485 South Eastern Australia
## 7486 Jerez
## 7487 Mendoza
## 7488 Oregon Oregon Other
## 7489 Southern Oregon Southern Oregon
## 7490 Idaho
## 7491 New Mexico
## 7492 Oregon Oregon Other
## 7493 California California Other
## 7494 Terra Alta
## 7495 Pennsylvania
## 7496 Santa Barbara County Central Coast
## 7497 Lake County
## 7498 Paso Robles Central Coast
## 7499 Mendoza
## 7500 Calchaquí Valley
## 7501 Southern Oregon Southern Oregon
## 7502 Sta. Rita Hills Central Coast
## 7503 Anderson Valley
## 7504 Santa Ynez Valley Central Coast
## 7505 Okanagan Valley
## 7506 Temecula South Coast
## 7507 Russian River Valley Sonoma
## 7508 Morgon
## 7509 Tupungato
## 7510 Franciacorta
## 7511 Champagne
## 7512 Mendoza
## 7513 Valdobbiadene Prosecco Superiore
## 7514 Beamsville Bench
## 7515 El Dorado Sierra Foothills
## 7516 Rutherford Napa
## 7517 St. Helena Napa
## 7518 Yarra Valley
## 7519 Champagne
## 7520 Champagne
## 7521 Champagne
## 7522
## 7523 Champagne
## 7524 Willamette Valley
## 7525 Lessini Durello
## 7526 Marin County North Coast
## 7527 Dry Creek Valley Sonoma
## 7528 Santa Barbara County Central Coast
## 7529 Arroyo Seco Central Coast
## 7530 St. Helena Napa
## 7531 Monterey Central Coast
## 7532
## 7533 Sonoma Valley Sonoma
## 7534 Sonoma Coast Sonoma
## 7535 Toscana
## 7536 Santa Lucia Highlands Central Coast
## 7537 Chianti Classico
## 7538 Sonoma County Sonoma
## 7539 Napa Valley Napa
## 7540 Chianti Colli Senesi
## 7541 Napa Valley Napa
## 7542 Chianti Classico
## 7543 Chianti Rufina
## 7544 Alexander Valley Sonoma
## 7545 Jumilla
## 7546 Jumilla
## 7547
## 7548 Finger Lakes Finger Lakes
## 7549 Napa Valley Napa
## 7550 Toscana
## 7551 Sonoma Valley Sonoma
## 7552
## 7553 Jumilla
## 7554 Mt. Harlan Central Coast
## 7555 Bolgheri Superiore
## 7556 Bolgheri
## 7557
## 7558 Vi de la Terra Illes Balears
## 7559
## 7560 Edna Valley Central Coast
## 7561 Bourgueil
## 7562 Montagne-Saint-Émilion
## 7563 Saint-Croix-du-Mont
## 7564 Oregon Oregon Other
## 7565 Russian River Valley Sonoma
## 7566 Sancerre
## 7567 Carmel Valley Central Coast
## 7568
## 7569
## 7570
## 7571 Etna
## 7572 Lodi Central Valley
## 7573
## 7574 Bordeaux Blanc
## 7575 California California Other
## 7576 Russian River Valley Sonoma
## 7577 Mendoza
## 7578
## 7579 Piave
## 7580 Bordeaux Blanc
## 7581 Amarone della Valpolicella Classico
## 7582
## 7583 Sonoma Coast Sonoma
## 7584
## 7585 Neuquén
## 7586
## 7587 Monterey County Central Coast
## 7588 Bordeaux
## 7589 Champagne
## 7590
## 7591 Santa Barbara County Central Coast
## 7592
## 7593 Veneto
## 7594 Paso Robles Central Coast
## 7595
## 7596
## 7597
## 7598 Alto Adige
## 7599 Trentino
## 7600 California California Other
## 7601 Chianti
## 7602
## 7603
## 7604
## 7605
## 7606
## 7607 Sonoma Coast Sonoma
## 7608
## 7609
## 7610 Veneto
## 7611
## 7612
## 7613
## 7614 Champagne
## 7615 Crémant d'Alsace
## 7616 Crémant d'Alsace
## 7617 California California Other
## 7618 Chehalem Mountains Willamette Valley
## 7619 Prosecco
## 7620 Collio
## 7621 Clarksburg Central Valley
## 7622
## 7623 Lake Erie North Shore
## 7624 Carneros Napa-Sonoma
## 7625
## 7626 Lake County
## 7627 Okanagan Valley
## 7628 Champagne
## 7629 Napa Valley Napa
## 7630 Prosecco Treviso
## 7631 Sonoma Valley Sonoma
## 7632 Champagne
## 7633 Champagne
## 7634 Shenandoah Valley (CA) Sierra Foothills
## 7635 McMinnville Willamette Valley
## 7636 Willamette Valley Willamette Valley
## 7637 Conegliano Valdobbiadene Prosecco Superiore
## 7638 Valdobbiadene Prosecco Superiore
## 7639 Patagonia
## 7640
## 7641 Valdobbiadene Prosecco Superiore
## 7642 Valdobbiadene Prosecco Superiore
## 7643 Conegliano Valdobbiadene Prosecco Superiore
## 7644
## 7645 Sicilia
## 7646 Napa Valley Napa
## 7647 Beaujolais
## 7648 Yountville Napa
## 7649 Sicilia
## 7650 Rioja
## 7651 Sicilia
## 7652 Rías Baixas
## 7653 Côte de Brouilly
## 7654 Alexander Valley Sonoma
## 7655 Sonoma Valley Sonoma
## 7656 Columbia Valley (WA) Columbia Valley
## 7657 Sicilia
## 7658 Finger Lakes Finger Lakes
## 7659 Barossa
## 7660
## 7661 Sicilia
## 7662 Sicilia
## 7663 Sicilia
## 7664 Mâcon-Pierreclos
## 7665 Sicilia
## 7666 Arroyo Seco Central Coast
## 7667 Cayuga Lake Finger Lakes
## 7668 New York New York Other
## 7669 La Mancha
## 7670 Cayuga Lake Finger Lakes
## 7671 Napa Valley Napa
## 7672
## 7673 California California Other
## 7674 Monterey Central Coast
## 7675 Columbia Valley (WA) Columbia Valley
## 7676 Columbia Valley (WA) Columbia Valley
## 7677
## 7678 Cava
## 7679 Santa Maria Valley Central Coast
## 7680
## 7681 Columbia Valley (WA) Columbia Valley
## 7682 Pouilly-Fuissé
## 7683 Chassagne-Montrachet
## 7684 Vino de la Tierra de Castilla
## 7685 Russian River Valley Sonoma
## 7686
## 7687 Sicilia
## 7688 Sonoma County Sonoma
## 7689 Carneros Napa-Sonoma
## 7690 Pouilly-Fuissé
## 7691 Ribera del Duero
## 7692 Salina
## 7693
## 7694 Shenandoah Valley (CA) Sierra Foothills
## 7695 Bolgheri
## 7696 Graves
## 7697 Napa Valley Napa
## 7698
## 7699 Napa Valley Napa
## 7700 Rueda
## 7701 Napa Valley Napa
## 7702 Napa Valley Napa
## 7703
## 7704 Edna Valley Central Coast
## 7705 Navarra
## 7706 Ribera del Duero
## 7707
## 7708 Valdepeñas
## 7709 Napa Valley Napa
## 7710 Bordeaux
## 7711 Paso Robles Central Coast
## 7712
## 7713 South Eastern Australia
## 7714
## 7715
## 7716
## 7717 Rioja
## 7718 Rioja
## 7719 Médoc
## 7720 Red Hills Lake County
## 7721
## 7722 Columbia Gorge (WA) Washington Other
## 7723 Washington Washington Other
## 7724 Saint-Émilion
## 7725 Sainte-Foy Bordeaux
## 7726 Blaye Côtes de Bordeaux
## 7727 Saint-Émilion
## 7728 Margaux
## 7729 Lalande de Pomerol
## 7730 Haut-Médoc
## 7731 Bordeaux Blanc
## 7732 Paso Robles Central Coast
## 7733 Morgon
## 7734
## 7735
## 7736 Santa Lucia Highlands Central Coast
## 7737 Oregon Oregon Other
## 7738 Yakima Valley Columbia Valley
## 7739
## 7740 Sonoma Coast Sonoma
## 7741 Mornington Peninsula
## 7742 Chiroubles
## 7743 Willamette Valley Willamette Valley
## 7744 Côtes de Bourg
## 7745 Valtellina Superiore
## 7746
## 7747 Yakima Valley Columbia Valley
## 7748 Paicines Central Coast
## 7749 Green Valley Sonoma
## 7750
## 7751 Napa Valley Napa
## 7752 Sta. Rita Hills Central Coast
## 7753 Napa Valley Napa
## 7754
## 7755
## 7756 Columbia Valley (WA) Columbia Valley
## 7757 Napa Valley Napa
## 7758 Columbia Valley (WA) Columbia Valley
## 7759 Barolo
## 7760 Russian River Valley Sonoma
## 7761 Walla Walla Valley (WA) Columbia Valley
## 7762 Horse Heaven Hills Columbia Valley
## 7763 Green Valley Sonoma
## 7764 Carneros Napa-Sonoma
## 7765 Mendocino County
## 7766 Columbia Valley (WA) Columbia Valley
## 7767
## 7768 Yakima Valley Columbia Valley
## 7769
## 7770 Santa Barbara County Central Coast
## 7771
## 7772
## 7773
## 7774 Hermitage
## 7775 Saint-Chinian
## 7776 Rioja
## 7777 Crozes-Hermitage
## 7778 Columbia Valley (WA) Columbia Valley
## 7779 Paso Robles Central Coast
## 7780 Okanagan Valley
## 7781
## 7782 Barolo
## 7783
## 7784 Paso Robles Central Coast
## 7785 Barolo
## 7786 McLaren Vale
## 7787 Napa Valley Napa
## 7788
## 7789 Cahors
## 7790 Columbia Valley (WA) Columbia Valley
## 7791 Barbaresco
## 7792
## 7793 Barolo
## 7794
## 7795
## 7796
## 7797 Santa Barbara County Central Coast
## 7798 Walla Walla Valley (WA) Columbia Valley
## 7799
## 7800
## 7801 Margaret River
## 7802 Okanagan Valley
## 7803 Walla Walla Valley (WA) Columbia Valley
## 7804 Columbia Valley (WA) Columbia Valley
## 7805 Rosso di Montalcino
## 7806
## 7807 Columbia Valley (WA) Columbia Valley
## 7808 Sonoma County Sonoma
## 7809 Southern Flinders Ranges
## 7810 Bennett Valley Sonoma
## 7811 Columbia Valley (WA) Columbia Valley
## 7812 Napa Valley Napa
## 7813 Columbia Valley (WA) Columbia Valley
## 7814 Vino de la Tierra de Castilla
## 7815 California California Other
## 7816 Paso Robles Central Coast
## 7817 Valdepeñas
## 7818 Central Coast Central Coast
## 7819 Langhorne Creek
## 7820 Napa-Carneros Napa
## 7821 Menetou-Salon
## 7822 Columbia Valley (WA) Columbia Valley
## 7823 Barossa Valley
## 7824 Columbia Valley (WA) Columbia Valley
## 7825 Rioja
## 7826 Yakima Valley Columbia Valley
## 7827 Lodi Central Valley
## 7828 Idaho
## 7829 Tasmania
## 7830 McLaren Vale
## 7831 Rosso di Montalcino
## 7832 Coonawarra
## 7833 Limestone Coast
## 7834 Catalonia
## 7835 Red Mountain Columbia Valley
## 7836 Russian River Valley Sonoma
## 7837 Russian River Valley Sonoma
## 7838 Jumilla
## 7839 Barossa Valley
## 7840 Columbia Valley (WA) Columbia Valley
## 7841 Columbia Valley (WA) Columbia Valley
## 7842 Columbia Valley (WA) Columbia Valley
## 7843 Yorkville Highlands North Coast
## 7844 Columbia Valley (WA) Columbia Valley
## 7845 Columbia Valley (WA) Columbia Valley
## 7846 Columbia Valley (WA) Columbia Valley
## 7847 Rías Baixas
## 7848 Dry Creek Valley Sonoma
## 7849 Oakville Napa
## 7850 McLaren Vale
## 7851 Paso Robles Central Coast
## 7852 Luján de Cuyo
## 7853 Luján de Cuyo
## 7854 San Luis Obispo County Central Coast
## 7855 Russian River Valley Sonoma
## 7856 Champagne
## 7857 Franciacorta
## 7858 Stags Leap District Napa
## 7859 Champagne
## 7860 Champagne
## 7861 Dundee Hills Willamette Valley
## 7862 Trento
## 7863 Santa Cruz Mountains Central Coast
## 7864 Napa Valley Napa
## 7865
## 7866 Champagne
## 7867 Luján de Cuyo
## 7868 Luján de Cuyo
## 7869 Diamond Mountain District Napa
## 7870
## 7871 Diamond Mountain District Napa
## 7872
## 7873 Russian River Valley Sonoma
## 7874 Mendocino County
## 7875 Santa Cruz Mountains Central Coast
## 7876 Champagne
## 7877 Napa Valley Napa
## 7878 Franciacorta
## 7879 Niagara Peninsula
## 7880 Sta. Rita Hills Central Coast
## 7881 Russian River Valley Sonoma
## 7882 Bordeaux
## 7883 Dry Creek Valley Sonoma
## 7884
## 7885
## 7886
## 7887
## 7888 Carneros Napa-Sonoma
## 7889 Bourgogne
## 7890 Sta. Rita Hills Central Coast
## 7891 Oregon Oregon Other
## 7892 Lugana
## 7893 Monterey County Central Coast
## 7894
## 7895 Côtes de Gascogne
## 7896 Paso Robles Central Coast
## 7897
## 7898 Lugana
## 7899 Blaye Côtes de Bordeaux
## 7900 Montravel
## 7901
## 7902 Sta. Rita Hills Central Coast
## 7903 Spring Mountain District Napa
## 7904 Bordeaux
## 7905 Eola-Amity Hills Willamette Valley
## 7906 Paso Robles Central Coast
## 7907
## 7908 Sonoma County Sonoma
## 7909 Lodi Central Valley
## 7910 Napa Valley Napa
## 7911 Lodi Central Valley
## 7912 Napa Valley Napa
## 7913 Barbaresco
## 7914 Boca
## 7915 Vermentino di Gallura
## 7916 Barbaresco
## 7917 McLaren Vale
## 7918 Saint-Véran
## 7919 McLaren Vale
## 7920 Oregon Oregon Other
## 7921
## 7922 Monica di Sardegna
## 7923 Carneros Napa-Sonoma
## 7924 Calistoga Napa
## 7925
## 7926
## 7927 Barbaresco
## 7928 Vista Flores
## 7929 Salta
## 7930 Livermore Valley Central Coast
## 7931 Santa Barbara County Central Coast
## 7932
## 7933 Barossa
## 7934
## 7935 Grand Valley
## 7936 Barbaresco
## 7937 Barbaresco
## 7938 Pouilly-Vinzelles
## 7939
## 7940 Pouilly-Fuissé
## 7941 Yakima Valley Columbia Valley
## 7942 South Australia
## 7943 Columbia Valley (WA) Columbia Valley
## 7944 Lago di Corbara
## 7945 Pouilly-Fumé
## 7946 Paso Robles Central Coast
## 7947 Columbia Valley (WA) Columbia Valley
## 7948 Horse Heaven Hills Columbia Valley
## 7949 Sonoma Coast Sonoma
## 7950 Alexander Valley Sonoma
## 7951 Russian River Valley Sonoma
## 7952 McLaren Vale
## 7953 Toscana
## 7954
## 7955 Marche
## 7956
## 7957
## 7958 Finger Lakes Finger Lakes
## 7959 Paso Robles Central Coast
## 7960 Monticello
## 7961
## 7962 Vernaccia di San Gimignano
## 7963 Vernaccia di San Gimignano
## 7964 Red Mountain Columbia Valley
## 7965 California California Other
## 7966
## 7967
## 7968 Virginia
## 7969 Paso Robles Central Coast
## 7970 Orvieto Classico Superiore
## 7971 Côtes de Provence
## 7972 Virginia
## 7973 Coteaux d'Aix-en-Provence
## 7974 California California Other
## 7975 Bourgogne Hautes Côtes de Beaune
## 7976 Macon-Bussières
## 7977 Dry Creek Valley Sonoma
## 7978 Finger Lakes Finger Lakes
## 7979
## 7980 Russian River Valley Sonoma
## 7981 Livermore Valley Central Coast
## 7982 Virginia
## 7983 Napa Valley Napa
## 7984 Columbia Valley (WA) Columbia Valley
## 7985 Vino Nobile di Montepulciano
## 7986
## 7987 Vernaccia di San Gimignano
## 7988 Soave Classico
## 7989 Soave
## 7990
## 7991 Coteaux Varois
## 7992 Napa Valley Napa
## 7993
## 7994 Côtes de Provence
## 7995
## 7996 Napa Valley Napa
## 7997 Carneros Napa-Sonoma
## 7998 Paso Robles Central Coast
## 7999 Monterey Central Coast
## 8000 Mendoza
## 8001 Russian River Valley Sonoma
## 8002 Châteauneuf-du-Pape
## 8003 Châteauneuf-du-Pape
## 8004 Côtes du Rhône
## 8005
## 8006 Soave Classico
## 8007 Lodi Central Valley
## 8008 Conegliano Valdobbiadene Prosecco Superiore
## 8009 Russian River Valley Sonoma
## 8010 Napa Valley Napa
## 8011 Côtes du Rhône
## 8012 Champagne
## 8013 Bordeaux
## 8014 Lalande de Pomerol
## 8015 Franciacorta
## 8016 Russian River Valley Sonoma
## 8017 Carmel Valley Central Coast
## 8018 Mendocino County
## 8019
## 8020 Bourgogne
## 8021
## 8022
## 8023 Russian River Valley Sonoma
## 8024 Arroyo Seco Central Coast
## 8025 Monterey County Central Coast
## 8026 Yorkville Highlands North Coast
## 8027 Napa Valley Napa
## 8028
## 8029
## 8030 Franciacorta
## 8031 Willamette Valley Willamette Valley
## 8032 Russian River Valley Sonoma
## 8033 California California Other
## 8034 Santa Barbara County Central Coast
## 8035 California California Other
## 8036 Columbia Valley (WA) Columbia Valley
## 8037 Rosso di Montalcino
## 8038 Santa Ynez Valley Central Coast
## 8039 Rioja
## 8040 Rosso di Montalcino
## 8041
## 8042
## 8043 Columbia Valley (WA) Columbia Valley
## 8044 Mendocino
## 8045 Walla Walla Valley (WA) Columbia Valley
## 8046 Côte de Brouilly
## 8047
## 8048 Brouilly
## 8049 Cava
## 8050 Nebbiolo d'Alba
## 8051 Costières de Nîmes
## 8052 Rosso di Montalcino
## 8053 California California Other
## 8054 Sonoma County Sonoma
## 8055 Côtes de Gascogne
## 8056 Beaujolais-Villages
## 8057 Beaujolais
## 8058 Beaujolais-Villages
## 8059 Santa Barbara County Central Coast
## 8060 Rosso di Montepulciano
## 8061 Rosso di Montalcino
## 8062 New York New York Other
## 8063 Washington Washington Other
## 8064 Finger Lakes Finger Lakes
## 8065 Alsace
## 8066 Columbia Valley (WA) Columbia Valley
## 8067 North Coast North Coast
## 8068 Santa Ynez Valley Central Coast
## 8069
## 8070 North Fork of Long Island Long Island
## 8071 Barbaresco
## 8072 Napa Valley Napa
## 8073
## 8074 Walla Walla Valley (WA) Columbia Valley
## 8075
## 8076 Blaye Côtes de Bordeaux
## 8077
## 8078
## 8079 Castillon Côtes de Bordeaux
## 8080 Blaye Côtes de Bordeaux
## 8081 Stags Leap District Napa
## 8082 Red Mountain Columbia Valley
## 8083 Dry Creek Valley Sonoma
## 8084 Santa Barbara County Central Coast
## 8085
## 8086
## 8087 Dry Creek Valley Sonoma
## 8088 Russian River Valley Sonoma
## 8089
## 8090
## 8091 Sonoma Coast Sonoma
## 8092 Sierra Foothills Sierra Foothills
## 8093
## 8094 Russian River Valley Sonoma
## 8095 Napa Valley Napa
## 8096 Columbia Valley (WA) Columbia Valley
## 8097 Paso Robles Central Coast
## 8098
## 8099 Nuits-St.-Georges
## 8100 Puligny-Montrachet
## 8101
## 8102 Russian River Valley Sonoma
## 8103 Meursault
## 8104 Meursault
## 8105 Saint-Aubin
## 8106 Sta. Rita Hills Central Coast
## 8107 Santa Lucia Highlands Central Coast
## 8108 Amarone della Valpolicella Classico
## 8109 Santa Maria Valley Central Coast
## 8110 Amarone della Valpolicella Classico
## 8111 Mendoza
## 8112 Napa County Napa
## 8113 Yountville Napa
## 8114 Amarone della Valpolicella Classico
## 8115
## 8116 Sonoma Mountain Sonoma
## 8117 Walla Walla Valley (WA) Columbia Valley
## 8118 Adelaida District Central Coast
## 8119 Santa Cruz Mountains Central Coast
## 8120
## 8121 Savigny-lès-Beaune
## 8122 Volnay
## 8123
## 8124 Columbia Valley (WA) Columbia Valley
## 8125 Santa Maria Valley Central Coast
## 8126 Temecula Valley South Coast
## 8127 Soave Classico
## 8128
## 8129 Champagne
## 8130 Red Mountain Columbia Valley
## 8131 Muscadet Côtes de Grandlieu
## 8132 Walla Walla Valley (WA) Columbia Valley
## 8133 Oregon Oregon Other
## 8134 Champagne
## 8135 Delle Venezie
## 8136 Champagne
## 8137 Luján de Cuyo
## 8138 Prosecco Treviso
## 8139 Dry Creek Valley Sonoma
## 8140 Cava
## 8141 Mendoza
## 8142 Carneros Napa-Sonoma
## 8143
## 8144 Oregon Oregon Other
## 8145 Colli Euganei
## 8146 Yountville Napa
## 8147 Argentina
## 8148 Okanagan Valley
## 8149
## 8150
## 8151 Carneros Napa-Sonoma
## 8152 Crémant d'Alsace
## 8153 Champagne
## 8154 Russian River Valley Sonoma
## 8155 Bordeaux Blanc
## 8156 Bordeaux Blanc
## 8157 Bordeaux Rosé
## 8158
## 8159 Central Coast
## 8160 Willamette Valley Willamette Valley
## 8161 Terre Siciliane
## 8162
## 8163
## 8164 Basilicata
## 8165
## 8166
## 8167 Sonoma County Sonoma
## 8168 Basilicata
## 8169 Clarksburg Central Valley
## 8170 Columbia Valley (WA) Columbia Valley
## 8171
## 8172
## 8173 Barossa Valley
## 8174 Sierra Foothills Sierra Foothills
## 8175
## 8176 La Mancha
## 8177 Australia
## 8178
## 8179
## 8180 Napa Valley Napa
## 8181 Columbia Valley (WA) Columbia Valley
## 8182 Red Mountain Columbia Valley
## 8183 Willamette Valley Willamette Valley
## 8184 Columbia Valley (WA) Columbia Valley
## 8185
## 8186
## 8187
## 8188
## 8189 Bordeaux Blanc
## 8190 Champagne
## 8191 Santa Barbara-Monterey North Coast
## 8192 Yorkville Highlands North Coast
## 8193 Santa Ynez Valley Central Coast
## 8194 Trento
## 8195 Champagne
## 8196 Santa Lucia Highlands Central Coast
## 8197
## 8198 Pessac-Léognan
## 8199 Bordeaux Blanc
## 8200 Sonoma County Sonoma
## 8201 Sonoma Coast Sonoma
## 8202 Sierra Foothills Sierra Foothills
## 8203
## 8204
## 8205 Pessac-Léognan
## 8206 Bordeaux Blanc
## 8207 Graves
## 8208 Vouvray
## 8209 Santa Maria Valley Central Coast
## 8210
## 8211 Napa Valley Napa
## 8212 Dry Creek Valley Sonoma
## 8213 Dundee Hills Willamette Valley
## 8214
## 8215
## 8216 Chablis
## 8217 Aloxe-Corton
## 8218 Meursault
## 8219 Toscana
## 8220 Napa Valley Napa
## 8221 Willamette Valley
## 8222 Chablis
## 8223 Santa Ynez Valley Central Coast
## 8224
## 8225 Sonoma-Napa Napa-Sonoma
## 8226 Santa Maria Valley Central Coast
## 8227 Franciacorta
## 8228 Champagne
## 8229 Napa Valley Napa
## 8230 Santa Ynez Valley Central Coast
## 8231 Niagara Peninsula
## 8232 Champagne
## 8233 Willamette Valley Willamette Valley
## 8234
## 8235 Niagara Peninsula
## 8236 Napa Valley Napa
## 8237 Champagne
## 8238 Amarone della Valpolicella Classico
## 8239
## 8240 Finger Lakes Finger Lakes
## 8241
## 8242
## 8243 Finger Lakes Finger Lakes
## 8244
## 8245
## 8246 Calaveras County Sierra Foothills
## 8247 Columbia Valley (WA) Columbia Valley
## 8248 Alsace
## 8249 Bandol
## 8250 Verdicchio dei Castelli di Jesi
## 8251 Alexander Valley Sonoma
## 8252 Yakima Valley Columbia Valley
## 8253 Russian River Valley Sonoma
## 8254 North Coast North Coast
## 8255 Walla Walla Valley (WA) Columbia Valley
## 8256 Verdicchio dei Castelli di Jesi Classico Superiore
## 8257 Verdicchio dei Castelli di Jesi Classico Superiore
## 8258
## 8259
## 8260 Napa Valley Napa
## 8261 Finger Lakes Finger Lakes
## 8262 Finger Lakes Finger Lakes
## 8263
## 8264 Finger Lakes Finger Lakes
## 8265 Alsace
## 8266 Coteaux d'Aix-en-Provence
## 8267 Offida Pecorino
## 8268 Sonoma Coast Sonoma
## 8269 Russian River Valley Sonoma
## 8270 Nebbiolo d'Alba
## 8271 Saint-Véran
## 8272 Morey-Saint-Denis
## 8273 Russian River Valley Sonoma
## 8274
## 8275 Pommard
## 8276
## 8277
## 8278 Russian River Valley Sonoma
## 8279 Meursault
## 8280
## 8281 Roero
## 8282 Rockpile Sonoma
## 8283 Mendocino County
## 8284 Barbaresco
## 8285 Napa Valley Napa
## 8286 Napa County Napa
## 8287 Barbaresco
## 8288 Santa Clara Valley Central Coast
## 8289 Carneros Napa-Sonoma
## 8290 Paso Robles Central Coast
## 8291 Châteauneuf-du-Pape
## 8292
## 8293
## 8294
## 8295 Santa Cruz Mountains Central Coast
## 8296 Napa Valley Napa
## 8297
## 8298 Napa Valley Napa
## 8299 Mendocino County
## 8300 Napa Valley Napa
## 8301
## 8302
## 8303 Green Valley Sonoma
## 8304
## 8305
## 8306 Tavel
## 8307 Brunello di Montalcino
## 8308 Dry Creek Valley Sonoma
## 8309 Yakima Valley Columbia Valley
## 8310
## 8311 Contra Costa County Central Coast
## 8312
## 8313 Stags Leap District Napa
## 8314
## 8315 Toscana
## 8316 Sonoma Coast Sonoma
## 8317 Rockpile Sonoma
## 8318 Napa Valley Napa
## 8319
## 8320 Santa Maria Valley Central Coast
## 8321 Columbia Valley (WA) Columbia Valley
## 8322 Columbia Valley (WA) Columbia Valley
## 8323 Paso Robles Central Coast
## 8324 Columbia Valley (WA) Columbia Valley
## 8325 Columbia Valley (WA) Columbia Valley
## 8326 Washington Washington Other
## 8327 Washington Washington Other
## 8328 Alsace
## 8329
## 8330 Sonoma Coast Sonoma
## 8331 Spring Mountain District Napa
## 8332 Yakima Valley Columbia Valley
## 8333 Verdicchio dei Castelli di Jesi Classico
## taster_name
## 1 Kerin O’Keefe
## 2 Roger Voss
## 3 Paul Gregutt
## 4 Alexander Peartree
## 5 Paul Gregutt
## 6 Michael Schachner
## 7 Kerin O’Keefe
## 8 Roger Voss
## 9 Anna Lee C. Iijima
## 10 Roger Voss
## 11 Virginie Boone
## 12 Roger Voss
## 13 Virginie Boone
## 14 Kerin O’Keefe
## 15 Matt Kettmann
## 16 Anna Lee C. Iijima
## 17 Michael Schachner
## 18 Michael Schachner
## 19 Michael Schachner
## 20 Alexander Peartree
## 21 Alexander Peartree
## 22 Paul Gregutt
## 23 Kerin O’Keefe
## 24 Matt Kettmann
## 25 Kerin O’Keefe
## 26 Virginie Boone
## 27 Kerin O’Keefe
## 28 Kerin O’Keefe
## 29 Kerin O’Keefe
## 30 Virginie Boone
## 31 Roger Voss
## 32
## 33
## 34
## 35
## 36 Paul Gregutt
## 37 Michael Schachner
## 38
## 39
## 40
## 41
## 42 Paul Gregutt
## 43 Roger Voss
## 44
## 45 Michael Schachner
## 46
## 47
## 48
## 49
## 50 Roger Voss
## 51
## 52 Michael Schachner
## 53
## 54 Roger Voss
## 55
## 56
## 57 Virginie Boone
## 58
## 59 Michael Schachner
## 60 Sean P. Sullivan
## 61 Virginie Boone
## 62 Kerin O’Keefe
## 63 Sean P. Sullivan
## 64 Roger Voss
## 65 Matt Kettmann
## 66 Roger Voss
## 67 Roger Voss
## 68 Sean P. Sullivan
## 69 Jim Gordon
## 70 Roger Voss
## 71 Sean P. Sullivan
## 72 Virginie Boone
## 73 Kerin O’Keefe
## 74 Virginie Boone
## 75 Virginie Boone
## 76 Virginie Boone
## 77 Anna Lee C. Iijima
## 78 Joe Czerwinski
## 79 Paul Gregutt
## 80 Roger Voss
## 81 Michael Schachner
## 82 Michael Schachner
## 83 Roger Voss
## 84 Joe Czerwinski
## 85 Virginie Boone
## 86 Anna Lee C. Iijima
## 87 Sean P. Sullivan
## 88 Virginie Boone
## 89 Kerin O’Keefe
## 90 Kerin O’Keefe
## 91 Virginie Boone
## 92 Virginie Boone
## 93 Virginie Boone
## 94 Anne Krebiehl MW
## 95 Sean P. Sullivan
## 96 Roger Voss
## 97 Roger Voss
## 98 Anna Lee C. Iijima
## 99 Kerin O’Keefe
## 100 Virginie Boone
## 101 Anna Lee C. Iijima
## 102 Anna Lee C. Iijima
## 103 Anna Lee C. Iijima
## 104 Michael Schachner
## 105 Kerin O’Keefe
## 106 Kerin O’Keefe
## 107 Kerin O’Keefe
## 108 Kerin O’Keefe
## 109 Matt Kettmann
## 110 Kerin O’Keefe
## 111 Roger Voss
## 112 Virginie Boone
## 113 Kerin O’Keefe
## 114 Kerin O’Keefe
## 115 Matt Kettmann
## 116 Matt Kettmann
## 117 Matt Kettmann
## 118 Matt Kettmann
## 119 Kerin O’Keefe
## 120
## 121
## 122
## 123
## 124 Joe Czerwinski
## 125
## 126 Roger Voss
## 127
## 128
## 129
## 130
## 131
## 132
## 133 Roger Voss
## 134
## 135
## 136
## 137 Joe Czerwinski
## 138 Roger Voss
## 139
## 140
## 141
## 142
## 143
## 144
## 145 Virginie Boone
## 146 Matt Kettmann
## 147 Matt Kettmann
## 148 Matt Kettmann
## 149 Anna Lee C. Iijima
## 150 Matt Kettmann
## 151 Virginie Boone
## 152 Roger Voss
## 153 Matt Kettmann
## 154 Matt Kettmann
## 155 Michael Schachner
## 156 Matt Kettmann
## 157 Anna Lee C. Iijima
## 158 Roger Voss
## 159 Kerin O’Keefe
## 160 Kerin O’Keefe
## 161 Roger Voss
## 162 Matt Kettmann
## 163 Matt Kettmann
## 164 Roger Voss
## 165 Michael Schachner
## 166 Michael Schachner
## 167 Roger Voss
## 168 Matt Kettmann
## 169 Virginie Boone
## 170 Virginie Boone
## 171 Anna Lee C. Iijima
## 172 Anna Lee C. Iijima
## 173 Michael Schachner
## 174 Paul Gregutt
## 175 Joe Czerwinski
## 176
## 177 Michael Schachner
## 178
## 179
## 180 Roger Voss
## 181
## 182
## 183
## 184 Michael Schachner
## 185
## 186 Michael Schachner
## 187
## 188
## 189 Michael Schachner
## 190 Michael Schachner
## 191
## 192 Joe Czerwinski
## 193
## 194 Roger Voss
## 195
## 196
## 197
## 198 Lauren Buzzeo
## 199 Virginie Boone
## 200 Jim Gordon
## 201 Kerin O’Keefe
## 202 Kerin O’Keefe
## 203 Mike DeSimone
## 204 Roger Voss
## 205 Matt Kettmann
## 206 Matt Kettmann
## 207 Virginie Boone
## 208 Virginie Boone
## 209 Lauren Buzzeo
## 210 Joe Czerwinski
## 211 Lauren Buzzeo
## 212 Joe Czerwinski
## 213 Michael Schachner
## 214 Matt Kettmann
## 215 Virginie Boone
## 216 Mike DeSimone
## 217 Kerin O’Keefe
## 218 Roger Voss
## 219 Virginie Boone
## 220 Jeff Jenssen
## 221 Virginie Boone
## 222 Kerin O’Keefe
## 223 Kerin O’Keefe
## 224 Kerin O’Keefe
## 225 Michael Schachner
## 226 Lauren Buzzeo
## 227 Lauren Buzzeo
## 228
## 229
## 230
## 231 Susan Kostrzewa
## 232 Michael Schachner
## 233
## 234 Paul Gregutt
## 235
## 236
## 237
## 238
## 239 Joe Czerwinski
## 240
## 241 Roger Voss
## 242
## 243
## 244
## 245 Michael Schachner
## 246 Michael Schachner
## 247
## 248
## 249 Paul Gregutt
## 250
## 251
## 252 Paul Gregutt
## 253
## 254 Michael Schachner
## 255
## 256 Virginie Boone
## 257 Lauren Buzzeo
## 258 Lauren Buzzeo
## 259 Lauren Buzzeo
## 260 Roger Voss
## 261 Paul Gregutt
## 262 Michael Schachner
## 263 Virginie Boone
## 264
## 265 Lauren Buzzeo
## 266 Lauren Buzzeo
## 267 Michael Schachner
## 268
## 269
## 270 Roger Voss
## 271
## 272 Susan Kostrzewa
## 273
## 274 Michael Schachner
## 275
## 276 Michael Schachner
## 277
## 278
## 279 Paul Gregutt
## 280
## 281 Roger Voss
## 282
## 283 Kerin O’Keefe
## 284 Paul Gregutt
## 285 Michael Schachner
## 286 Roger Voss
## 287
## 288 Michael Schachner
## 289 Roger Voss
## 290
## 291 Roger Voss
## 292 Kerin O’Keefe
## 293 Roger Voss
## 294 Joe Czerwinski
## 295 Michael Schachner
## 296
## 297 Michael Schachner
## 298
## 299 Michael Schachner
## 300
## 301
## 302 Paul Gregutt
## 303
## 304
## 305
## 306 Virginie Boone
## 307 Anna Lee C. Iijima
## 308 Roger Voss
## 309 Susan Kostrzewa
## 310
## 311
## 312 Joe Czerwinski
## 313
## 314
## 315
## 316
## 317 Roger Voss
## 318 Roger Voss
## 319 Michael Schachner
## 320
## 321
## 322
## 323
## 324 Michael Schachner
## 325
## 326 Susan Kostrzewa
## 327
## 328 Michael Schachner
## 329
## 330
## 331
## 332 Michael Schachner
## 333
## 334
## 335 Roger Voss
## 336
## 337 Michael Schachner
## 338 Lauren Buzzeo
## 339 Roger Voss
## 340 Michael Schachner
## 341 Anne Krebiehl MW
## 342 Virginie Boone
## 343 Michael Schachner
## 344 Michael Schachner
## 345 Michael Schachner
## 346 Joe Czerwinski
## 347 Joe Czerwinski
## 348 Anna Lee C. Iijima
## 349 Joe Czerwinski
## 350 Joe Czerwinski
## 351 Kerin O’Keefe
## 352 Jeff Jenssen
## 353 Virginie Boone
## 354 Roger Voss
## 355 Anna Lee C. Iijima
## 356 Virginie Boone
## 357 Joe Czerwinski
## 358 Roger Voss
## 359 Anna Lee C. Iijima
## 360 Roger Voss
## 361 Joe Czerwinski
## 362 Kerin O’Keefe
## 363 Virginie Boone
## 364 Roger Voss
## 365 Paul Gregutt
## 366 Joe Czerwinski
## 367 Joe Czerwinski
## 368 Michael Schachner
## 369 Joe Czerwinski
## 370 Joe Czerwinski
## 371
## 372 Roger Voss
## 373 Roger Voss
## 374 Roger Voss
## 375
## 376
## 377 Roger Voss
## 378 Roger Voss
## 379
## 380 Joe Czerwinski
## 381 Michael Schachner
## 382 Joe Czerwinski
## 383 Michael Schachner
## 384 Joe Czerwinski
## 385 Roger Voss
## 386
## 387
## 388
## 389 Roger Voss
## 390 Joe Czerwinski
## 391 Michael Schachner
## 392 Michael Schachner
## 393
## 394 Michael Schachner
## 395 Michael Schachner
## 396 Roger Voss
## 397
## 398 Michael Schachner
## 399 Michael Schachner
## 400
## 401
## 402
## 403 Michael Schachner
## 404
## 405
## 406
## 407 Roger Voss
## 408 Michael Schachner
## 409
## 410 Susan Kostrzewa
## 411 Susan Kostrzewa
## 412
## 413
## 414
## 415
## 416 Susan Kostrzewa
## 417
## 418
## 419 Roger Voss
## 420 Roger Voss
## 421 Roger Voss
## 422 Sean P. Sullivan
## 423 Sean P. Sullivan
## 424 Anne Krebiehl MW
## 425 Jim Gordon
## 426 Anna Lee C. Iijima
## 427 Michael Schachner
## 428 Anna Lee C. Iijima
## 429 Anne Krebiehl MW
## 430 Sean P. Sullivan
## 431 Matt Kettmann
## 432 Matt Kettmann
## 433 Sean P. Sullivan
## 434 Jim Gordon
## 435 Kerin O’Keefe
## 436 Anne Krebiehl MW
## 437 Kerin O’Keefe
## 438 Virginie Boone
## 439 Michael Schachner
## 440 Michael Schachner
## 441 Sean P. Sullivan
## 442 Anne Krebiehl MW
## 443 Anna Lee C. Iijima
## 444 Virginie Boone
## 445 Anne Krebiehl MW
## 446 Kerin O’Keefe
## 447 Matt Kettmann
## 448 Roger Voss
## 449 Joe Czerwinski
## 450 Kerin O’Keefe
## 451 Roger Voss
## 452 Kerin O’Keefe
## 453 Roger Voss
## 454 Roger Voss
## 455 Sean P. Sullivan
## 456
## 457 Virginie Boone
## 458
## 459 Kerin O’Keefe
## 460 Roger Voss
## 461 Paul Gregutt
## 462 Paul Gregutt
## 463 Roger Voss
## 464 Roger Voss
## 465 Anna Lee C. Iijima
## 466 Kerin O’Keefe
## 467 Roger Voss
## 468 Paul Gregutt
## 469 Anna Lee C. Iijima
## 470 Anna Lee C. Iijima
## 471 Roger Voss
## 472 Roger Voss
## 473 Roger Voss
## 474 Roger Voss
## 475 Roger Voss
## 476
## 477
## 478 Roger Voss
## 479 Roger Voss
## 480
## 481 Paul Gregutt
## 482
## 483
## 484 Lauren Buzzeo
## 485 Lauren Buzzeo
## 486 Joe Czerwinski
## 487
## 488
## 489
## 490
## 491 Michael Schachner
## 492 Roger Voss
## 493 Paul Gregutt
## 494 Paul Gregutt
## 495 Anna Lee C. Iijima
## 496 Virginie Boone
## 497 Michael Schachner
## 498 Virginie Boone
## 499
## 500 Roger Voss
## 501 Michael Schachner
## 502 Virginie Boone
## 503 Roger Voss
## 504
## 505 Joe Czerwinski
## 506 Michael Schachner
## 507
## 508 Paul Gregutt
## 509 Paul Gregutt
## 510 Virginie Boone
## 511 Matt Kettmann
## 512 Roger Voss
## 513 Roger Voss
## 514 Virginie Boone
## 515 Michael Schachner
## 516 Virginie Boone
## 517 Virginie Boone
## 518 Virginie Boone
## 519 Roger Voss
## 520 Jim Gordon
## 521 Matt Kettmann
## 522 Matt Kettmann
## 523 Paul Gregutt
## 524 Paul Gregutt
## 525 Sean P. Sullivan
## 526 Matt Kettmann
## 527 Paul Gregutt
## 528 Anna Lee C. Iijima
## 529 Roger Voss
## 530 Virginie Boone
## 531 Michael Schachner
## 532 Paul Gregutt
## 533 Paul Gregutt
## 534 Paul Gregutt
## 535 Matt Kettmann
## 536 Anna Lee C. Iijima
## 537 Sean P. Sullivan
## 538 Virginie Boone
## 539 Paul Gregutt
## 540 Matt Kettmann
## 541 Matt Kettmann
## 542 Matt Kettmann
## 543 Kerin O’Keefe
## 544 Virginie Boone
## 545 Matt Kettmann
## 546 Virginie Boone
## 547 Virginie Boone
## 548 Matt Kettmann
## 549 Virginie Boone
## 550 Kerin O’Keefe
## 551 Virginie Boone
## 552 Virginie Boone
## 553 Roger Voss
## 554 Michael Schachner
## 555 Roger Voss
## 556 Sean P. Sullivan
## 557 Michael Schachner
## 558 Matt Kettmann
## 559 Jim Gordon
## 560 Virginie Boone
## 561 Virginie Boone
## 562 Jim Gordon
## 563 Virginie Boone
## 564 Matt Kettmann
## 565 Matt Kettmann
## 566 Matt Kettmann
## 567 Virginie Boone
## 568 Michael Schachner
## 569 Virginie Boone
## 570 Sean P. Sullivan
## 571 Sean P. Sullivan
## 572 Jim Gordon
## 573 Kerin O’Keefe
## 574 Roger Voss
## 575 Joe Czerwinski
## 576 Roger Voss
## 577 Roger Voss
## 578 Anna Lee C. Iijima
## 579 Roger Voss
## 580 Jim Gordon
## 581 Sean P. Sullivan
## 582 Sean P. Sullivan
## 583 Sean P. Sullivan
## 584 Matt Kettmann
## 585 Anne Krebiehl MW
## 586 Sean P. Sullivan
## 587 Anne Krebiehl MW
## 588 Anne Krebiehl MW
## 589 Jim Gordon
## 590 Anne Krebiehl MW
## 591 Matt Kettmann
## 592 Anne Krebiehl MW
## 593 Sean P. Sullivan
## 594 Anne Krebiehl MW
## 595 Joe Czerwinski
## 596 Sean P. Sullivan
## 597 Susan Kostrzewa
## 598 Anne Krebiehl MW
## 599 Matt Kettmann
## 600
## 601
## 602 Michael Schachner
## 603
## 604 Anna Lee C. Iijima
## 605 Michael Schachner
## 606 Michael Schachner
## 607 Sean P. Sullivan
## 608 Sean P. Sullivan
## 609 Roger Voss
## 610 Paul Gregutt
## 611
## 612
## 613
## 614 Roger Voss
## 615
## 616 Michael Schachner
## 617
## 618
## 619
## 620
## 621
## 622
## 623 Sean P. Sullivan
## 624 Sean P. Sullivan
## 625 Sean P. Sullivan
## 626
## 627
## 628
## 629 Joe Czerwinski
## 630 Virginie Boone
## 631 Paul Gregutt
## 632 Anne Krebiehl MW
## 633 Anne Krebiehl MW
## 634 Joe Czerwinski
## 635 Virginie Boone
## 636 Michael Schachner
## 637 Joe Czerwinski
## 638 Anne Krebiehl MW
## 639 Anne Krebiehl MW
## 640 Anne Krebiehl MW
## 641 Matt Kettmann
## 642 Virginie Boone
## 643 Roger Voss
## 644 Virginie Boone
## 645 Matt Kettmann
## 646 Paul Gregutt
## 647 Roger Voss
## 648 Roger Voss
## 649 Anna Lee C. Iijima
## 650 Virginie Boone
## 651 Kerin O’Keefe
## 652 Anne Krebiehl MW
## 653 Joe Czerwinski
## 654 Matt Kettmann
## 655 Anne Krebiehl MW
## 656 Jim Gordon
## 657 Paul Gregutt
## 658 Lauren Buzzeo
## 659 Virginie Boone
## 660 Sean P. Sullivan
## 661 Virginie Boone
## 662 Jim Gordon
## 663 Kerin O’Keefe
## 664 Virginie Boone
## 665 Kerin O’Keefe
## 666 Kerin O’Keefe
## 667 Sean P. Sullivan
## 668 Michael Schachner
## 669 Anna Lee C. Iijima
## 670 Sean P. Sullivan
## 671 Sean P. Sullivan
## 672 Virginie Boone
## 673 Anna Lee C. Iijima
## 674 Jim Gordon
## 675 Virginie Boone
## 676 Virginie Boone
## 677 Sean P. Sullivan
## 678 Kerin O’Keefe
## 679 Kerin O’Keefe
## 680 Sean P. Sullivan
## 681 Michael Schachner
## 682 Sean P. Sullivan
## 683 Kerin O’Keefe
## 684 Kerin O’Keefe
## 685 Sean P. Sullivan
## 686 Virginie Boone
## 687 Kerin O’Keefe
## 688 Matt Kettmann
## 689 Sean P. Sullivan
## 690 Matt Kettmann
## 691 Anne Krebiehl MW
## 692 Jim Gordon
## 693 Kerin O’Keefe
## 694 Virginie Boone
## 695 Lauren Buzzeo
## 696 Kerin O’Keefe
## 697 Joe Czerwinski
## 698 Anne Krebiehl MW
## 699 Sean P. Sullivan
## 700 Lauren Buzzeo
## 701 Michael Schachner
## 702 Roger Voss
## 703 Roger Voss
## 704 Roger Voss
## 705 Roger Voss
## 706 Joe Czerwinski
## 707 Roger Voss
## 708 Roger Voss
## 709 Roger Voss
## 710 Virginie Boone
## 711 Joe Czerwinski
## 712 Virginie Boone
## 713 Virginie Boone
## 714 Virginie Boone
## 715 Joe Czerwinski
## 716 Michael Schachner
## 717 Joe Czerwinski
## 718 Roger Voss
## 719 Roger Voss
## 720 Roger Voss
## 721 Roger Voss
## 722 Michael Schachner
## 723 Michael Schachner
## 724 Roger Voss
## 725 Alexander Peartree
## 726 Kerin O’Keefe
## 727 Roger Voss
## 728 Paul Gregutt
## 729 Michael Schachner
## 730 Roger Voss
## 731 Jim Gordon
## 732 Lauren Buzzeo
## 733 Roger Voss
## 734 Roger Voss
## 735 Michael Schachner
## 736 Michael Schachner
## 737 Matt Kettmann
## 738 Roger Voss
## 739 Michael Schachner
## 740 Kerin O’Keefe
## 741 Alexander Peartree
## 742 Roger Voss
## 743 Roger Voss
## 744 Virginie Boone
## 745 Kerin O’Keefe
## 746 Roger Voss
## 747 Joe Czerwinski
## 748
## 749 Anna Lee C. Iijima
## 750 Roger Voss
## 751
## 752 Michael Schachner
## 753 Roger Voss
## 754
## 755 Michael Schachner
## 756
## 757
## 758
## 759
## 760 Virginie Boone
## 761
## 762 Michael Schachner
## 763 Michael Schachner
## 764 Michael Schachner
## 765
## 766
## 767 Joe Czerwinski
## 768 Michael Schachner
## 769 Joe Czerwinski
## 770
## 771 Roger Voss
## 772
## 773 Roger Voss
## 774 Roger Voss
## 775 Paul Gregutt
## 776 Paul Gregutt
## 777 Roger Voss
## 778
## 779 Paul Gregutt
## 780 Roger Voss
## 781
## 782
## 783
## 784
## 785 Roger Voss
## 786 Michael Schachner
## 787 Roger Voss
## 788 Virginie Boone
## 789 Michael Schachner
## 790 Anna Lee C. Iijima
## 791 Sean P. Sullivan
## 792 Paul Gregutt
## 793 Roger Voss
## 794 Sean P. Sullivan
## 795 Matt Kettmann
## 796 Roger Voss
## 797 Roger Voss
## 798 Roger Voss
## 799 Roger Voss
## 800 Roger Voss
## 801 Matt Kettmann
## 802 Virginie Boone
## 803 Roger Voss
## 804 Sean P. Sullivan
## 805 Sean P. Sullivan
## 806 Paul Gregutt
## 807 Jim Gordon
## 808 Joe Czerwinski
## 809 Kerin O’Keefe
## 810 Michael Schachner
## 811 Virginie Boone
## 812 Anna Lee C. Iijima
## 813 Jim Gordon
## 814 Joe Czerwinski
## 815 Kerin O’Keefe
## 816 Sean P. Sullivan
## 817 Anna Lee C. Iijima
## 818 Michael Schachner
## 819 Roger Voss
## 820 Roger Voss
## 821 Michael Schachner
## 822 Michael Schachner
## 823 Kerin O’Keefe
## 824 Matt Kettmann
## 825 Jim Gordon
## 826 Kerin O’Keefe
## 827 Kerin O’Keefe
## 828 Michael Schachner
## 829 Roger Voss
## 830 Paul Gregutt
## 831 Roger Voss
## 832 Roger Voss
## 833 Roger Voss
## 834 Kerin O’Keefe
## 835 Michael Schachner
## 836 Roger Voss
## 837 Michael Schachner
## 838 Michael Schachner
## 839 Paul Gregutt
## 840 Anna Lee C. Iijima
## 841 Roger Voss
## 842 Jim Gordon
## 843 Roger Voss
## 844 Paul Gregutt
## 845 Kerin O’Keefe
## 846 Kerin O’Keefe
## 847 Anne Krebiehl MW
## 848 Anne Krebiehl MW
## 849 Roger Voss
## 850 Roger Voss
## 851 Roger Voss
## 852 Roger Voss
## 853 Anne Krebiehl MW
## 854 Anna Lee C. Iijima
## 855 Jim Gordon
## 856 Matt Kettmann
## 857 Kerin O’Keefe
## 858 Matt Kettmann
## 859 Paul Gregutt
## 860 Virginie Boone
## 861 Matt Kettmann
## 862 Kerin O’Keefe
## 863 Kerin O’Keefe
## 864 Matt Kettmann
## 865 Anna Lee C. Iijima
## 866 Kerin O’Keefe
## 867 Joe Czerwinski
## 868 Paul Gregutt
## 869 Michael Schachner
## 870 Matt Kettmann
## 871 Jim Gordon
## 872 Virginie Boone
## 873 Paul Gregutt
## 874 Jeff Jenssen
## 875 Roger Voss
## 876 Roger Voss
## 877 Michael Schachner
## 878
## 879 Roger Voss
## 880 Roger Voss
## 881
## 882 Michael Schachner
## 883
## 884
## 885
## 886
## 887 Lauren Buzzeo
## 888 Roger Voss
## 889 Paul Gregutt
## 890
## 891
## 892
## 893 Paul Gregutt
## 894 Joe Czerwinski
## 895
## 896
## 897 Virginie Boone
## 898 Paul Gregutt
## 899
## 900
## 901 Michael Schachner
## 902 Roger Voss
## 903 Alexander Peartree
## 904 Anna Lee C. Iijima
## 905 Kerin O’Keefe
## 906 Alexander Peartree
## 907 Alexander Peartree
## 908 Roger Voss
## 909 Kerin O’Keefe
## 910 Kerin O’Keefe
## 911 Michael Schachner
## 912 Lauren Buzzeo
## 913 Paul Gregutt
## 914 Mike DeSimone
## 915 Michael Schachner
## 916 Paul Gregutt
## 917 Paul Gregutt
## 918 Kerin O’Keefe
## 919 Kerin O’Keefe
## 920 Michael Schachner
## 921 Joe Czerwinski
## 922 Roger Voss
## 923 Michael Schachner
## 924 Roger Voss
## 925 Joe Czerwinski
## 926 Jim Gordon
## 927 Michael Schachner
## 928 Roger Voss
## 929 Kerin O’Keefe
## 930 Jim Gordon
## 931 Michael Schachner
## 932 Kerin O’Keefe
## 933 Roger Voss
## 934 Roger Voss
## 935 Roger Voss
## 936 Roger Voss
## 937 Paul Gregutt
## 938 Paul Gregutt
## 939 Michael Schachner
## 940 Jim Gordon
## 941 Roger Voss
## 942 Michael Schachner
## 943 Virginie Boone
## 944 Michael Schachner
## 945 Paul Gregutt
## 946 Virginie Boone
## 947 Virginie Boone
## 948 Roger Voss
## 949 Roger Voss
## 950 Kerin O’Keefe
## 951 Virginie Boone
## 952 Jim Gordon
## 953 Michael Schachner
## 954 Paul Gregutt
## 955 Jim Gordon
## 956 Kerin O’Keefe
## 957 Kerin O’Keefe
## 958 Virginie Boone
## 959 Michael Schachner
## 960 Roger Voss
## 961 Roger Voss
## 962 Roger Voss
## 963 Roger Voss
## 964 Roger Voss
## 965
## 966
## 967 Joe Czerwinski
## 968 Michael Schachner
## 969
## 970 Michael Schachner
## 971
## 972 Roger Voss
## 973
## 974
## 975 Paul Gregutt
## 976
## 977
## 978
## 979
## 980 Roger Voss
## 981
## 982 Roger Voss
## 983
## 984
## 985 Susan Kostrzewa
## 986 Michael Schachner
## 987 Roger Voss
## 988
## 989 Paul Gregutt
## 990 Michael Schachner
## 991
## 992 Roger Voss
## 993 Roger Voss
## 994 Roger Voss
## 995 Roger Voss
## 996
## 997
## 998 Joe Czerwinski
## 999 Paul Gregutt
## 1000 Paul Gregutt
## 1001 Paul Gregutt
## 1002
## 1003 Paul Gregutt
## 1004 Roger Voss
## 1005 Roger Voss
## 1006 Roger Voss
## 1007 Paul Gregutt
## 1008 Roger Voss
## 1009
## 1010
## 1011 Paul Gregutt
## 1012
## 1013 Kerin O’Keefe
## 1014 Kerin O’Keefe
## 1015 Matt Kettmann
## 1016 Matt Kettmann
## 1017 Kerin O’Keefe
## 1018 Kerin O’Keefe
## 1019 Roger Voss
## 1020 Virginie Boone
## 1021 Paul Gregutt
## 1022 Michael Schachner
## 1023 Kerin O’Keefe
## 1024 Mike DeSimone
## 1025 Roger Voss
## 1026 Matt Kettmann
## 1027 Paul Gregutt
## 1028 Paul Gregutt
## 1029 Michael Schachner
## 1030 Michael Schachner
## 1031 Virginie Boone
## 1032 Michael Schachner
## 1033 Joe Czerwinski
## 1034 Matt Kettmann
## 1035 Roger Voss
## 1036 Kerin O’Keefe
## 1037 Kerin O’Keefe
## 1038 Sean P. Sullivan
## 1039 Joe Czerwinski
## 1040 Michael Schachner
## 1041 Michael Schachner
## 1042 Joe Czerwinski
## 1043 Michael Schachner
## 1044 Roger Voss
## 1045
## 1046 Paul Gregutt
## 1047
## 1048
## 1049 Roger Voss
## 1050 Roger Voss
## 1051
## 1052 Michael Schachner
## 1053
## 1054 Michael Schachner
## 1055
## 1056 Roger Voss
## 1057 Roger Voss
## 1058 Michael Schachner
## 1059
## 1060
## 1061 Roger Voss
## 1062 Roger Voss
## 1063
## 1064 Susan Kostrzewa
## 1065
## 1066 Roger Voss
## 1067 Jim Gordon
## 1068 Virginie Boone
## 1069 Paul Gregutt
## 1070 Paul Gregutt
## 1071 Paul Gregutt
## 1072 Kerin O’Keefe
## 1073 Roger Voss
## 1074 Roger Voss
## 1075 Joe Czerwinski
## 1076 Virginie Boone
## 1077 Roger Voss
## 1078 Kerin O’Keefe
## 1079 Paul Gregutt
## 1080 Paul Gregutt
## 1081 Paul Gregutt
## 1082 Paul Gregutt
## 1083 Sean P. Sullivan
## 1084 Virginie Boone
## 1085 Roger Voss
## 1086 Virginie Boone
## 1087 Paul Gregutt
## 1088 Virginie Boone
## 1089 Sean P. Sullivan
## 1090 Virginie Boone
## 1091 Roger Voss
## 1092 Virginie Boone
## 1093 Paul Gregutt
## 1094 Roger Voss
## 1095 Paul Gregutt
## 1096 Virginie Boone
## 1097 Michael Schachner
## 1098 Paul Gregutt
## 1099 Virginie Boone
## 1100 Matt Kettmann
## 1101 Michael Schachner
## 1102 Anne Krebiehl MW
## 1103 Virginie Boone
## 1104 Paul Gregutt
## 1105 Joe Czerwinski
## 1106 Kerin O’Keefe
## 1107 Paul Gregutt
## 1108 Jim Gordon
## 1109 Matt Kettmann
## 1110 Kerin O’Keefe
## 1111 Michael Schachner
## 1112 Michael Schachner
## 1113 Joe Czerwinski
## 1114 Sean P. Sullivan
## 1115 Kerin O’Keefe
## 1116 Michael Schachner
## 1117 Jim Gordon
## 1118 Matt Kettmann
## 1119 Kerin O’Keefe
## 1120 Roger Voss
## 1121 Roger Voss
## 1122 Roger Voss
## 1123 Anna Lee C. Iijima
## 1124 Sean P. Sullivan
## 1125 Sean P. Sullivan
## 1126 Virginie Boone
## 1127 Roger Voss
## 1128 Roger Voss
## 1129 Roger Voss
## 1130 Michael Schachner
## 1131 Virginie Boone
## 1132 Joe Czerwinski
## 1133 Roger Voss
## 1134 Roger Voss
## 1135 Roger Voss
## 1136 Michael Schachner
## 1137 Virginie Boone
## 1138 Kerin O’Keefe
## 1139 Kerin O’Keefe
## 1140 Virginie Boone
## 1141 Anna Lee C. Iijima
## 1142 Michael Schachner
## 1143 Jim Gordon
## 1144 Jim Gordon
## 1145 Virginie Boone
## 1146 Roger Voss
## 1147 Kerin O’Keefe
## 1148 Sean P. Sullivan
## 1149 Kerin O’Keefe
## 1150 Roger Voss
## 1151 Michael Schachner
## 1152 Anna Lee C. Iijima
## 1153 Paul Gregutt
## 1154 Roger Voss
## 1155 Joe Czerwinski
## 1156 Susan Kostrzewa
## 1157 Roger Voss
## 1158
## 1159 Roger Voss
## 1160 Roger Voss
## 1161 Susan Kostrzewa
## 1162
## 1163
## 1164
## 1165
## 1166
## 1167
## 1168
## 1169 Paul Gregutt
## 1170
## 1171 Michael Schachner
## 1172 Joe Czerwinski
## 1173
## 1174
## 1175 Michael Schachner
## 1176 Roger Voss
## 1177
## 1178 Roger Voss
## 1179 Michael Schachner
## 1180 Roger Voss
## 1181 Jim Gordon
## 1182 Kerin O’Keefe
## 1183 Joe Czerwinski
## 1184 Kerin O’Keefe
## 1185 Kerin O’Keefe
## 1186 Roger Voss
## 1187 Roger Voss
## 1188 Mike DeSimone
## 1189 Roger Voss
## 1190 Roger Voss
## 1191 Jim Gordon
## 1192 Roger Voss
## 1193 Roger Voss
## 1194 Michael Schachner
## 1195 Michael Schachner
## 1196 Michael Schachner
## 1197 Paul Gregutt
## 1198 Kerin O’Keefe
## 1199 Joe Czerwinski
## 1200 Joe Czerwinski
## 1201 Anna Lee C. Iijima
## 1202 Roger Voss
## 1203 Alexander Peartree
## 1204 Jim Gordon
## 1205 Roger Voss
## 1206 Kerin O’Keefe
## 1207 Paul Gregutt
## 1208 Kerin O’Keefe
## 1209 Roger Voss
## 1210 Jim Gordon
## 1211 Virginie Boone
## 1212 Virginie Boone
## 1213 Matt Kettmann
## 1214 Matt Kettmann
## 1215 Virginie Boone
## 1216 Roger Voss
## 1217 Matt Kettmann
## 1218 Kerin O’Keefe
## 1219 Kerin O’Keefe
## 1220 Matt Kettmann
## 1221 Roger Voss
## 1222 Matt Kettmann
## 1223 Matt Kettmann
## 1224 Virginie Boone
## 1225 Roger Voss
## 1226 Jim Gordon
## 1227 Virginie Boone
## 1228 Matt Kettmann
## 1229 Matt Kettmann
## 1230 Roger Voss
## 1231 Matt Kettmann
## 1232 Jim Gordon
## 1233 Virginie Boone
## 1234 Virginie Boone
## 1235 Matt Kettmann
## 1236 Matt Kettmann
## 1237 Matt Kettmann
## 1238
## 1239 Roger Voss
## 1240
## 1241 Roger Voss
## 1242 Paul Gregutt
## 1243 Susan Kostrzewa
## 1244 Joe Czerwinski
## 1245
## 1246 Susan Kostrzewa
## 1247
## 1248 Susan Kostrzewa
## 1249 Paul Gregutt
## 1250 Paul Gregutt
## 1251
## 1252 Joe Czerwinski
## 1253 Joe Czerwinski
## 1254 Paul Gregutt
## 1255 Paul Gregutt
## 1256 Susan Kostrzewa
## 1257
## 1258 Michael Schachner
## 1259
## 1260 Michael Schachner
## 1261
## 1262
## 1263 Virginie Boone
## 1264 Anna Lee C. Iijima
## 1265
## 1266 Lauren Buzzeo
## 1267 Anna Lee C. Iijima
## 1268
## 1269
## 1270 Michael Schachner
## 1271
## 1272 Virginie Boone
## 1273
## 1274
## 1275
## 1276
## 1277
## 1278
## 1279
## 1280 Roger Voss
## 1281 Michael Schachner
## 1282 Michael Schachner
## 1283 Anna Lee C. Iijima
## 1284
## 1285 Roger Voss
## 1286 Joe Czerwinski
## 1287 Kerin O’Keefe
## 1288 Virginie Boone
## 1289 Kerin O’Keefe
## 1290 Anna Lee C. Iijima
## 1291 Kerin O’Keefe
## 1292 Kerin O’Keefe
## 1293 Kerin O’Keefe
## 1294 Virginie Boone
## 1295 Michael Schachner
## 1296 Matt Kettmann
## 1297 Roger Voss
## 1298 Kerin O’Keefe
## 1299 Jim Gordon
## 1300 Kerin O’Keefe
## 1301 Matt Kettmann
## 1302 Roger Voss
## 1303 Roger Voss
## 1304 Anna Lee C. Iijima
## 1305 Anna Lee C. Iijima
## 1306 Michael Schachner
## 1307 Michael Schachner
## 1308 Paul Gregutt
## 1309 Roger Voss
## 1310 Virginie Boone
## 1311 Matt Kettmann
## 1312 Virginie Boone
## 1313 Kerin O’Keefe
## 1314 Virginie Boone
## 1315 Kerin O’Keefe
## 1316 Kerin O’Keefe
## 1317 Kerin O’Keefe
## 1318 Virginie Boone
## 1319 Virginie Boone
## 1320 Joe Czerwinski
## 1321 Anne Krebiehl MW
## 1322 Michael Schachner
## 1323 Anne Krebiehl MW
## 1324 Michael Schachner
## 1325 Virginie Boone
## 1326 Matt Kettmann
## 1327 Michael Schachner
## 1328 Joe Czerwinski
## 1329 Matt Kettmann
## 1330 Roger Voss
## 1331 Roger Voss
## 1332 Roger Voss
## 1333 Roger Voss
## 1334 Virginie Boone
## 1335 Anna Lee C. Iijima
## 1336 Anna Lee C. Iijima
## 1337 Virginie Boone
## 1338 Kerin O’Keefe
## 1339 Roger Voss
## 1340 Roger Voss
## 1341 Roger Voss
## 1342 Anne Krebiehl MW
## 1343 Virginie Boone
## 1344 Matt Kettmann
## 1345 Kerin O’Keefe
## 1346 Paul Gregutt
## 1347 Michael Schachner
## 1348
## 1349 Paul Gregutt
## 1350
## 1351
## 1352 Roger Voss
## 1353 Roger Voss
## 1354 Roger Voss
## 1355
## 1356 Paul Gregutt
## 1357 Roger Voss
## 1358 Michael Schachner
## 1359 Michael Schachner
## 1360
## 1361 Virginie Boone
## 1362
## 1363
## 1364
## 1365 Roger Voss
## 1366 Joe Czerwinski
## 1367 Michael Schachner
## 1368 Roger Voss
## 1369
## 1370
## 1371
## 1372 Susan Kostrzewa
## 1373
## 1374
## 1375
## 1376 Joe Czerwinski
## 1377
## 1378 Roger Voss
## 1379 Paul Gregutt
## 1380 Joe Czerwinski
## 1381
## 1382
## 1383 Michael Schachner
## 1384
## 1385 Kerin O’Keefe
## 1386 Anna Lee C. Iijima
## 1387 Paul Gregutt
## 1388 Kerin O’Keefe
## 1389 Virginie Boone
## 1390 Lauren Buzzeo
## 1391 Lauren Buzzeo
## 1392 Kerin O’Keefe
## 1393 Matt Kettmann
## 1394 Matt Kettmann
## 1395 Michael Schachner
## 1396 Virginie Boone
## 1397 Alexander Peartree
## 1398 Roger Voss
## 1399 Anna Lee C. Iijima
## 1400 Kerin O’Keefe
## 1401 Roger Voss
## 1402 Alexander Peartree
## 1403 Kerin O’Keefe
## 1404 Kerin O’Keefe
## 1405 Kerin O’Keefe
## 1406 Virginie Boone
## 1407 Jim Gordon
## 1408 Kerin O’Keefe
## 1409 Kerin O’Keefe
## 1410 Virginie Boone
## 1411 Anna Lee C. Iijima
## 1412 Roger Voss
## 1413 Roger Voss
## 1414 Jim Gordon
## 1415 Roger Voss
## 1416 Roger Voss
## 1417 Roger Voss
## 1418
## 1419 Paul Gregutt
## 1420 Paul Gregutt
## 1421 Paul Gregutt
## 1422 Roger Voss
## 1423 Anne Krebiehl MW
## 1424
## 1425 Paul Gregutt
## 1426 Anne Krebiehl MW
## 1427 Roger Voss
## 1428 Roger Voss
## 1429
## 1430 Sean P. Sullivan
## 1431
## 1432 Paul Gregutt
## 1433 Roger Voss
## 1434 Roger Voss
## 1435 Lauren Buzzeo
## 1436 Paul Gregutt
## 1437 Paul Gregutt
## 1438 Roger Voss
## 1439 Anne Krebiehl MW
## 1440 Paul Gregutt
## 1441
## 1442 Anne Krebiehl MW
## 1443 Anne Krebiehl MW
## 1444 Matt Kettmann
## 1445 Virginie Boone
## 1446 Roger Voss
## 1447 Roger Voss
## 1448 Roger Voss
## 1449 Virginie Boone
## 1450 Joe Czerwinski
## 1451 Roger Voss
## 1452 Roger Voss
## 1453 Kerin O’Keefe
## 1454 Roger Voss
## 1455 Kerin O’Keefe
## 1456 Matt Kettmann
## 1457 Virginie Boone
## 1458 Anna Lee C. Iijima
## 1459 Roger Voss
## 1460 Matt Kettmann
## 1461 Kerin O’Keefe
## 1462 Virginie Boone
## 1463 Kerin O’Keefe
## 1464 Roger Voss
## 1465 Matt Kettmann
## 1466 Roger Voss
## 1467 Virginie Boone
## 1468 Matt Kettmann
## 1469 Virginie Boone
## 1470 Virginie Boone
## 1471 Matt Kettmann
## 1472 Kerin O’Keefe
## 1473 Virginie Boone
## 1474 Michael Schachner
## 1475
## 1476
## 1477 Paul Gregutt
## 1478 Michael Schachner
## 1479 Joe Czerwinski
## 1480 Michael Schachner
## 1481 Michael Schachner
## 1482
## 1483 Michael Schachner
## 1484 Roger Voss
## 1485 Joe Czerwinski
## 1486
## 1487 Susan Kostrzewa
## 1488
## 1489
## 1490
## 1491 Joe Czerwinski
## 1492
## 1493 Joe Czerwinski
## 1494 Michael Schachner
## 1495
## 1496
## 1497 Michael Schachner
## 1498 Michael Schachner
## 1499
## 1500 Michael Schachner
## 1501
## 1502
## 1503
## 1504
## 1505 Paul Gregutt
## 1506 Roger Voss
## 1507 Roger Voss
## 1508 Roger Voss
## 1509 Roger Voss
## 1510 Michael Schachner
## 1511
## 1512
## 1513 Roger Voss
## 1514
## 1515 Paul Gregutt
## 1516
## 1517 Roger Voss
## 1518 Roger Voss
## 1519 Roger Voss
## 1520 Michael Schachner
## 1521 Roger Voss
## 1522 Michael Schachner
## 1523
## 1524 Paul Gregutt
## 1525 Michael Schachner
## 1526 Virginie Boone
## 1527 Kerin O’Keefe
## 1528 Roger Voss
## 1529 Roger Voss
## 1530 Jim Gordon
## 1531 Michael Schachner
## 1532 Michael Schachner
## 1533 Michael Schachner
## 1534 Jim Gordon
## 1535 Roger Voss
## 1536 Roger Voss
## 1537 Roger Voss
## 1538 Roger Voss
## 1539 Roger Voss
## 1540 Virginie Boone
## 1541 Michael Schachner
## 1542 Roger Voss
## 1543 Roger Voss
## 1544 Jeff Jenssen
## 1545 Kerin O’Keefe
## 1546 Michael Schachner
## 1547 Michael Schachner
## 1548 Roger Voss
## 1549 Michael Schachner
## 1550 Michael Schachner
## 1551 Kerin O’Keefe
## 1552 Roger Voss
## 1553 Roger Voss
## 1554 Kerin O’Keefe
## 1555 Virginie Boone
## 1556 Roger Voss
## 1557 Paul Gregutt
## 1558
## 1559 Roger Voss
## 1560 Roger Voss
## 1561 Paul Gregutt
## 1562
## 1563 Roger Voss
## 1564
## 1565
## 1566
## 1567 Roger Voss
## 1568
## 1569 Roger Voss
## 1570 Roger Voss
## 1571
## 1572 Roger Voss
## 1573 Roger Voss
## 1574 Roger Voss
## 1575
## 1576 Roger Voss
## 1577 Roger Voss
## 1578
## 1579 Roger Voss
## 1580
## 1581 Roger Voss
## 1582 Roger Voss
## 1583 Roger Voss
## 1584 Paul Gregutt
## 1585
## 1586 Virginie Boone
## 1587 Anna Lee C. Iijima
## 1588 Virginie Boone
## 1589 Kerin O’Keefe
## 1590 Roger Voss
## 1591 Roger Voss
## 1592 Anna Lee C. Iijima
## 1593 Roger Voss
## 1594 Roger Voss
## 1595 Roger Voss
## 1596 Roger Voss
## 1597 Roger Voss
## 1598 Roger Voss
## 1599 Sean P. Sullivan
## 1600 Roger Voss
## 1601 Jim Gordon
## 1602 Jim Gordon
## 1603 Sean P. Sullivan
## 1604 Kerin O’Keefe
## 1605 Sean P. Sullivan
## 1606 Joe Czerwinski
## 1607 Anna Lee C. Iijima
## 1608 Virginie Boone
## 1609 Sean P. Sullivan
## 1610 Kerin O’Keefe
## 1611 Sean P. Sullivan
## 1612 Roger Voss
## 1613 Roger Voss
## 1614 Roger Voss
## 1615 Roger Voss
## 1616 Roger Voss
## 1617 Roger Voss
## 1618 Roger Voss
## 1619 Michael Schachner
## 1620 Roger Voss
## 1621 Roger Voss
## 1622 Michael Schachner
## 1623 Michael Schachner
## 1624 Roger Voss
## 1625 Roger Voss
## 1626 Carrie Dykes
## 1627 Michael Schachner
## 1628 Fiona Adams
## 1629 Roger Voss
## 1630 Roger Voss
## 1631 Roger Voss
## 1632 Carrie Dykes
## 1633 Roger Voss
## 1634 Roger Voss
## 1635 Michael Schachner
## 1636 Jim Gordon
## 1637 Joe Czerwinski
## 1638 Virginie Boone
## 1639 Roger Voss
## 1640 Roger Voss
## 1641 Roger Voss
## 1642 Jim Gordon
## 1643 Kerin O’Keefe
## 1644 Jim Gordon
## 1645 Jim Gordon
## 1646 Michael Schachner
## 1647 Michael Schachner
## 1648 Virginie Boone
## 1649 Michael Schachner
## 1650 Joe Czerwinski
## 1651 Roger Voss
## 1652 Michael Schachner
## 1653 Paul Gregutt
## 1654 Roger Voss
## 1655 Roger Voss
## 1656 Roger Voss
## 1657 Roger Voss
## 1658 Roger Voss
## 1659 Roger Voss
## 1660 Paul Gregutt
## 1661 Paul Gregutt
## 1662 Paul Gregutt
## 1663 Kerin O’Keefe
## 1664 Roger Voss
## 1665 Jim Gordon
## 1666 Michael Schachner
## 1667 Joe Czerwinski
## 1668 Jim Gordon
## 1669 Kerin O’Keefe
## 1670 Roger Voss
## 1671 Roger Voss
## 1672 Paul Gregutt
## 1673 Paul Gregutt
## 1674
## 1675 Joe Czerwinski
## 1676 Joe Czerwinski
## 1677
## 1678
## 1679
## 1680 Virginie Boone
## 1681 Michael Schachner
## 1682 Roger Voss
## 1683
## 1684 Paul Gregutt
## 1685 Roger Voss
## 1686
## 1687 Paul Gregutt
## 1688
## 1689
## 1690
## 1691
## 1692 Joe Czerwinski
## 1693
## 1694 Roger Voss
## 1695
## 1696 Michael Schachner
## 1697
## 1698 Lauren Buzzeo
## 1699
## 1700
## 1701 Roger Voss
## 1702 Michael Schachner
## 1703
## 1704 Susan Kostrzewa
## 1705 Lauren Buzzeo
## 1706
## 1707 Joe Czerwinski
## 1708 Joe Czerwinski
## 1709 Michael Schachner
## 1710
## 1711
## 1712 Michael Schachner
## 1713 Joe Czerwinski
## 1714
## 1715 Roger Voss
## 1716 Lauren Buzzeo
## 1717
## 1718 Roger Voss
## 1719 Michael Schachner
## 1720
## 1721 Michael Schachner
## 1722 Michael Schachner
## 1723 Michael Schachner
## 1724 Joe Czerwinski
## 1725 Susan Kostrzewa
## 1726 Susan Kostrzewa
## 1727 Michael Schachner
## 1728 Roger Voss
## 1729 Matt Kettmann
## 1730 Matt Kettmann
## 1731 Sean P. Sullivan
## 1732 Sean P. Sullivan
## 1733 Kerin O’Keefe
## 1734 Roger Voss
## 1735 Sean P. Sullivan
## 1736 Sean P. Sullivan
## 1737 Kerin O’Keefe
## 1738 Matt Kettmann
## 1739 Kerin O’Keefe
## 1740 Matt Kettmann
## 1741 Kerin O’Keefe
## 1742 Sean P. Sullivan
## 1743 Jim Gordon
## 1744 Kerin O’Keefe
## 1745 Roger Voss
## 1746 Roger Voss
## 1747 Roger Voss
## 1748 Roger Voss
## 1749 Roger Voss
## 1750 Jim Gordon
## 1751 Roger Voss
## 1752 Michael Schachner
## 1753 Sean P. Sullivan
## 1754 Michael Schachner
## 1755 Roger Voss
## 1756 Michael Schachner
## 1757 Sean P. Sullivan
## 1758 Roger Voss
## 1759 Roger Voss
## 1760 Michael Schachner
## 1761 Roger Voss
## 1762 Anna Lee C. Iijima
## 1763 Virginie Boone
## 1764 Anna Lee C. Iijima
## 1765 Michael Schachner
## 1766 Roger Voss
## 1767 Sean P. Sullivan
## 1768 Roger Voss
## 1769 Roger Voss
## 1770 Michael Schachner
## 1771 Roger Voss
## 1772 Jim Gordon
## 1773 Roger Voss
## 1774 Michael Schachner
## 1775 Virginie Boone
## 1776 Roger Voss
## 1777 Roger Voss
## 1778 Roger Voss
## 1779 Roger Voss
## 1780 Roger Voss
## 1781 Paul Gregutt
## 1782 Kerin O’Keefe
## 1783 Michael Schachner
## 1784 Roger Voss
## 1785 Roger Voss
## 1786 Roger Voss
## 1787 Sean P. Sullivan
## 1788
## 1789
## 1790
## 1791 Michael Schachner
## 1792
## 1793 Paul Gregutt
## 1794 Kerin O’Keefe
## 1795
## 1796
## 1797 Paul Gregutt
## 1798 Kerin O’Keefe
## 1799 Kerin O’Keefe
## 1800 Roger Voss
## 1801 Roger Voss
## 1802 Roger Voss
## 1803 Roger Voss
## 1804 Roger Voss
## 1805 Roger Voss
## 1806 Matt Kettmann
## 1807 Michael Schachner
## 1808 Roger Voss
## 1809 Matt Kettmann
## 1810 Michael Schachner
## 1811 Michael Schachner
## 1812 Jim Gordon
## 1813 Roger Voss
## 1814 Roger Voss
## 1815 Michael Schachner
## 1816 Michael Schachner
## 1817 Michael Schachner
## 1818 Virginie Boone
## 1819 Roger Voss
## 1820 Roger Voss
## 1821 Roger Voss
## 1822 Roger Voss
## 1823 Michael Schachner
## 1824 Roger Voss
## 1825 Roger Voss
## 1826 Matt Kettmann
## 1827 Roger Voss
## 1828 Michael Schachner
## 1829 Michael Schachner
## 1830 Virginie Boone
## 1831 Paul Gregutt
## 1832 Virginie Boone
## 1833 Jim Gordon
## 1834 Michael Schachner
## 1835 Jim Gordon
## 1836 Michael Schachner
## 1837 Alexander Peartree
## 1838 Roger Voss
## 1839 Virginie Boone
## 1840 Virginie Boone
## 1841 Virginie Boone
## 1842 Jim Gordon
## 1843 Virginie Boone
## 1844 Michael Schachner
## 1845 Michael Schachner
## 1846 Michael Schachner
## 1847 Michael Schachner
## 1848 Michael Schachner
## 1849 Michael Schachner
## 1850 Jim Gordon
## 1851 Alexander Peartree
## 1852 Michael Schachner
## 1853 Roger Voss
## 1854 Paul Gregutt
## 1855 Michael Schachner
## 1856 Michael Schachner
## 1857 Virginie Boone
## 1858 Virginie Boone
## 1859 Paul Gregutt
## 1860 Kerin O’Keefe
## 1861 Roger Voss
## 1862 Roger Voss
## 1863 Roger Voss
## 1864
## 1865
## 1866
## 1867 Paul Gregutt
## 1868 Virginie Boone
## 1869 Paul Gregutt
## 1870
## 1871 Roger Voss
## 1872 Roger Voss
## 1873 Roger Voss
## 1874 Paul Gregutt
## 1875 Lauren Buzzeo
## 1876
## 1877
## 1878
## 1879
## 1880 Roger Voss
## 1881 Roger Voss
## 1882 Paul Gregutt
## 1883 Paul Gregutt
## 1884
## 1885 Roger Voss
## 1886
## 1887 Joe Czerwinski
## 1888
## 1889 Paul Gregutt
## 1890 Roger Voss
## 1891 Joe Czerwinski
## 1892 Joe Czerwinski
## 1893
## 1894
## 1895 Joe Czerwinski
## 1896
## 1897 Paul Gregutt
## 1898 Joe Czerwinski
## 1899 Michael Schachner
## 1900 Michael Schachner
## 1901 Paul Gregutt
## 1902 Roger Voss
## 1903 Michael Schachner
## 1904 Joe Czerwinski
## 1905
## 1906
## 1907 Michael Schachner
## 1908
## 1909 Joe Czerwinski
## 1910 Joe Czerwinski
## 1911
## 1912
## 1913 Roger Voss
## 1914 Paul Gregutt
## 1915
## 1916 Michael Schachner
## 1917 Michael Schachner
## 1918 Michael Schachner
## 1919 Roger Voss
## 1920 Roger Voss
## 1921 Roger Voss
## 1922 Sean P. Sullivan
## 1923 Roger Voss
## 1924
## 1925 Michael Schachner
## 1926 Kerin O’Keefe
## 1927 Paul Gregutt
## 1928 Roger Voss
## 1929 Kerin O’Keefe
## 1930
## 1931 Joe Czerwinski
## 1932 Lauren Buzzeo
## 1933 Kerin O’Keefe
## 1934 Roger Voss
## 1935 Joe Czerwinski
## 1936 Michael Schachner
## 1937
## 1938 Michael Schachner
## 1939 Michael Schachner
## 1940 Sean P. Sullivan
## 1941 Roger Voss
## 1942 Roger Voss
## 1943 Paul Gregutt
## 1944
## 1945 Roger Voss
## 1946
## 1947
## 1948 Paul Gregutt
## 1949
## 1950 Michael Schachner
## 1951 Paul Gregutt
## 1952 Roger Voss
## 1953
## 1954 Paul Gregutt
## 1955 Michael Schachner
## 1956 Lauren Buzzeo
## 1957
## 1958 Roger Voss
## 1959
## 1960
## 1961
## 1962
## 1963
## 1964
## 1965 Roger Voss
## 1966 Michael Schachner
## 1967 Paul Gregutt
## 1968
## 1969 Roger Voss
## 1970 Roger Voss
## 1971 Roger Voss
## 1972 Roger Voss
## 1973
## 1974 Paul Gregutt
## 1975 Paul Gregutt
## 1976
## 1977 Roger Voss
## 1978
## 1979
## 1980
## 1981
## 1982
## 1983
## 1984
## 1985
## 1986
## 1987 Roger Voss
## 1988 Michael Schachner
## 1989 Michael Schachner
## 1990 Paul Gregutt
## 1991 Roger Voss
## 1992 Michael Schachner
## 1993 Michael Schachner
## 1994 Michael Schachner
## 1995 Alexander Peartree
## 1996 Virginie Boone
## 1997 Paul Gregutt
## 1998 Kerin O’Keefe
## 1999 Roger Voss
## 2000 Roger Voss
## 2001 Kerin O’Keefe
## 2002 Michael Schachner
## 2003 Michael Schachner
## 2004 Roger Voss
## 2005 Paul Gregutt
## 2006 Roger Voss
## 2007 Roger Voss
## 2008 Roger Voss
## 2009 Jim Gordon
## 2010 Roger Voss
## 2011 Roger Voss
## 2012 Matt Kettmann
## 2013 Michael Schachner
## 2014 Roger Voss
## 2015 Michael Schachner
## 2016 Roger Voss
## 2017 Roger Voss
## 2018 Roger Voss
## 2019
## 2020
## 2021
## 2022 Sean P. Sullivan
## 2023 Kerin O’Keefe
## 2024 Kerin O’Keefe
## 2025 Paul Gregutt
## 2026 Michael Schachner
## 2027 Roger Voss
## 2028 Michael Schachner
## 2029 Kerin O’Keefe
## 2030 Kerin O’Keefe
## 2031 Kerin O’Keefe
## 2032
## 2033 Roger Voss
## 2034 Roger Voss
## 2035
## 2036
## 2037 Kerin O’Keefe
## 2038 Kerin O’Keefe
## 2039 Roger Voss
## 2040
## 2041 Roger Voss
## 2042 Roger Voss
## 2043
## 2044
## 2045
## 2046
## 2047
## 2048
## 2049 Roger Voss
## 2050 Roger Voss
## 2051 Roger Voss
## 2052 Roger Voss
## 2053
## 2054
## 2055
## 2056
## 2057
## 2058
## 2059
## 2060
## 2061
## 2062
## 2063
## 2064 Roger Voss
## 2065
## 2066
## 2067
## 2068
## 2069 Paul Gregutt
## 2070
## 2071
## 2072 Roger Voss
## 2073
## 2074 Paul Gregutt
## 2075
## 2076
## 2077 Roger Voss
## 2078 Paul Gregutt
## 2079 Michael Schachner
## 2080 Roger Voss
## 2081
## 2082
## 2083
## 2084 Michael Schachner
## 2085 Michael Schachner
## 2086
## 2087
## 2088
## 2089
## 2090 Roger Voss
## 2091 Paul Gregutt
## 2092 Roger Voss
## 2093
## 2094
## 2095 Roger Voss
## 2096
## 2097
## 2098
## 2099
## 2100
## 2101
## 2102
## 2103
## 2104
## 2105 Roger Voss
## 2106 Michael Schachner
## 2107
## 2108
## 2109
## 2110 Paul Gregutt
## 2111
## 2112 Joe Czerwinski
## 2113 Joe Czerwinski
## 2114 Roger Voss
## 2115 Roger Voss
## 2116 Susan Kostrzewa
## 2117
## 2118 Paul Gregutt
## 2119 Paul Gregutt
## 2120 Virginie Boone
## 2121 Anna Lee C. Iijima
## 2122 Roger Voss
## 2123 Roger Voss
## 2124 Roger Voss
## 2125 Roger Voss
## 2126
## 2127
## 2128
## 2129 Paul Gregutt
## 2130
## 2131 Roger Voss
## 2132
## 2133 Roger Voss
## 2134
## 2135 Kerin O’Keefe
## 2136 Michael Schachner
## 2137 Jim Gordon
## 2138 Joe Czerwinski
## 2139 Michael Schachner
## 2140 Kerin O’Keefe
## 2141 Michael Schachner
## 2142 Michael Schachner
## 2143 Roger Voss
## 2144 Roger Voss
## 2145 Sean P. Sullivan
## 2146 Michael Schachner
## 2147 Paul Gregutt
## 2148 Kerin O’Keefe
## 2149 Kerin O’Keefe
## 2150 Roger Voss
## 2151 Jim Gordon
## 2152 Michael Schachner
## 2153 Jim Gordon
## 2154 Michael Schachner
## 2155 Michael Schachner
## 2156 Michael Schachner
## 2157 Sean P. Sullivan
## 2158 Roger Voss
## 2159 Roger Voss
## 2160 Kerin O’Keefe
## 2161 Kerin O’Keefe
## 2162 Jim Gordon
## 2163 Michael Schachner
## 2164 Paul Gregutt
## 2165 Anna Lee C. Iijima
## 2166 Anna Lee C. Iijima
## 2167 Susan Kostrzewa
## 2168 Virginie Boone
## 2169 Virginie Boone
## 2170 Jim Gordon
## 2171 Anne Krebiehl MW
## 2172 Kerin O’Keefe
## 2173 Sean P. Sullivan
## 2174 Kerin O’Keefe
## 2175 Jim Gordon
## 2176 Michael Schachner
## 2177 Virginie Boone
## 2178 Virginie Boone
## 2179 Anne Krebiehl MW
## 2180 Michael Schachner
## 2181 Joe Czerwinski
## 2182 Michael Schachner
## 2183 Jim Gordon
## 2184 Susan Kostrzewa
## 2185 Sean P. Sullivan
## 2186 Susan Kostrzewa
## 2187 Kerin O’Keefe
## 2188 Jim Gordon
## 2189 Anna Lee C. Iijima
## 2190 Jim Gordon
## 2191 Matt Kettmann
## 2192 Matt Kettmann
## 2193 Matt Kettmann
## 2194 Sean P. Sullivan
## 2195 Michael Schachner
## 2196 Virginie Boone
## 2197 Jim Gordon
## 2198 Matt Kettmann
## 2199 Kerin O’Keefe
## 2200 Anne Krebiehl MW
## 2201 Virginie Boone
## 2202 Matt Kettmann
## 2203 Matt Kettmann
## 2204 Sean P. Sullivan
## 2205 Sean P. Sullivan
## 2206 Michael Schachner
## 2207 Matt Kettmann
## 2208 Anne Krebiehl MW
## 2209 Virginie Boone
## 2210 Matt Kettmann
## 2211 Virginie Boone
## 2212 Matt Kettmann
## 2213 Anne Krebiehl MW
## 2214 Kerin O’Keefe
## 2215 Roger Voss
## 2216 Matt Kettmann
## 2217 Joe Czerwinski
## 2218 Anne Krebiehl MW
## 2219 Michael Schachner
## 2220 Michael Schachner
## 2221 Matt Kettmann
## 2222 Matt Kettmann
## 2223 Sean P. Sullivan
## 2224 Anna Lee C. Iijima
## 2225
## 2226
## 2227
## 2228 Roger Voss
## 2229
## 2230
## 2231
## 2232
## 2233
## 2234
## 2235
## 2236
## 2237
## 2238
## 2239
## 2240
## 2241
## 2242
## 2243
## 2244
## 2245 Roger Voss
## 2246 Roger Voss
## 2247
## 2248
## 2249
## 2250
## 2251
## 2252
## 2253
## 2254
## 2255 Michael Schachner
## 2256
## 2257
## 2258
## 2259 Roger Voss
## 2260 Roger Voss
## 2261
## 2262 Roger Voss
## 2263
## 2264
## 2265 Roger Voss
## 2266 Roger Voss
## 2267
## 2268
## 2269
## 2270
## 2271
## 2272
## 2273 Anna Lee C. Iijima
## 2274 Roger Voss
## 2275
## 2276 Kerin O’Keefe
## 2277 Kerin O’Keefe
## 2278 Michael Schachner
## 2279
## 2280 Roger Voss
## 2281
## 2282 Paul Gregutt
## 2283 Kerin O’Keefe
## 2284 Sean P. Sullivan
## 2285 Michael Schachner
## 2286 Michael Schachner
## 2287
## 2288 Kerin O’Keefe
## 2289 Anna Lee C. Iijima
## 2290 Virginie Boone
## 2291
## 2292 Michael Schachner
## 2293 Anna Lee C. Iijima
## 2294
## 2295 Joe Czerwinski
## 2296
## 2297
## 2298
## 2299 Paul Gregutt
## 2300 Joe Czerwinski
## 2301 Joe Czerwinski
## 2302
## 2303 Susan Kostrzewa
## 2304 Paul Gregutt
## 2305
## 2306
## 2307 Roger Voss
## 2308
## 2309
## 2310 Michael Schachner
## 2311 Joe Czerwinski
## 2312 Joe Czerwinski
## 2313 Joe Czerwinski
## 2314
## 2315
## 2316
## 2317
## 2318
## 2319
## 2320 Roger Voss
## 2321 Roger Voss
## 2322 Roger Voss
## 2323 Roger Voss
## 2324 Roger Voss
## 2325 Roger Voss
## 2326 Jim Gordon
## 2327 Sean P. Sullivan
## 2328 Jim Gordon
## 2329 Jim Gordon
## 2330 Kerin O’Keefe
## 2331 Anna Lee C. Iijima
## 2332 Michael Schachner
## 2333 Roger Voss
## 2334 Matt Kettmann
## 2335 Michael Schachner
## 2336 Sean P. Sullivan
## 2337 Michael Schachner
## 2338 Virginie Boone
## 2339 Michael Schachner
## 2340 Jim Gordon
## 2341 Sean P. Sullivan
## 2342 Michael Schachner
## 2343 Anna Lee C. Iijima
## 2344 Jim Gordon
## 2345 Roger Voss
## 2346 Jim Gordon
## 2347 Jim Gordon
## 2348 Jim Gordon
## 2349 Sean P. Sullivan
## 2350 Virginie Boone
## 2351 Kerin O’Keefe
## 2352 Michael Schachner
## 2353
## 2354
## 2355
## 2356
## 2357 Michael Schachner
## 2358 Virginie Boone
## 2359
## 2360 Roger Voss
## 2361 Roger Voss
## 2362 Roger Voss
## 2363 Kerin O’Keefe
## 2364
## 2365 Roger Voss
## 2366 Roger Voss
## 2367 Paul Gregutt
## 2368 Paul Gregutt
## 2369 Roger Voss
## 2370 Kerin O’Keefe
## 2371 Paul Gregutt
## 2372 Roger Voss
## 2373 Roger Voss
## 2374 Kerin O’Keefe
## 2375 Kerin O’Keefe
## 2376 Paul Gregutt
## 2377 Kerin O’Keefe
## 2378 Paul Gregutt
## 2379 Kerin O’Keefe
## 2380 Carrie Dykes
## 2381 Fiona Adams
## 2382 Roger Voss
## 2383 Roger Voss
## 2384 Roger Voss
## 2385 Roger Voss
## 2386 Jim Gordon
## 2387 Paul Gregutt
## 2388 Michael Schachner
## 2389 Roger Voss
## 2390 Roger Voss
## 2391 Roger Voss
## 2392 Roger Voss
## 2393 Roger Voss
## 2394 Roger Voss
## 2395 Roger Voss
## 2396 Paul Gregutt
## 2397 Roger Voss
## 2398 Roger Voss
## 2399 Roger Voss
## 2400 Paul Gregutt
## 2401 Joe Czerwinski
## 2402 Kerin O’Keefe
## 2403 Virginie Boone
## 2404 Roger Voss
## 2405 Virginie Boone
## 2406 Joe Czerwinski
## 2407 Fiona Adams
## 2408 Roger Voss
## 2409 Virginie Boone
## 2410
## 2411 Michael Schachner
## 2412
## 2413
## 2414 Roger Voss
## 2415
## 2416
## 2417
## 2418
## 2419 Michael Schachner
## 2420
## 2421
## 2422 Roger Voss
## 2423 Roger Voss
## 2424 Paul Gregutt
## 2425 Michael Schachner
## 2426
## 2427
## 2428 Roger Voss
## 2429
## 2430 Paul Gregutt
## 2431 Paul Gregutt
## 2432 Roger Voss
## 2433 Roger Voss
## 2434 Michael Schachner
## 2435
## 2436
## 2437
## 2438 Roger Voss
## 2439 Kerin O’Keefe
## 2440 Virginie Boone
## 2441 Matt Kettmann
## 2442 Virginie Boone
## 2443 Paul Gregutt
## 2444 Virginie Boone
## 2445 Kerin O’Keefe
## 2446 Kerin O’Keefe
## 2447 Virginie Boone
## 2448 Kerin O’Keefe
## 2449 Kerin O’Keefe
## 2450 Anna Lee C. Iijima
## 2451 Kerin O’Keefe
## 2452 Jim Gordon
## 2453 Matt Kettmann
## 2454 Sean P. Sullivan
## 2455 Sean P. Sullivan
## 2456 Sean P. Sullivan
## 2457 Jim Gordon
## 2458 Jim Gordon
## 2459 Jim Gordon
## 2460 Kerin O’Keefe
## 2461 Virginie Boone
## 2462 Roger Voss
## 2463 Roger Voss
## 2464 Roger Voss
## 2465 Roger Voss
## 2466 Roger Voss
## 2467 Roger Voss
## 2468 Roger Voss
## 2469 Kerin O’Keefe
## 2470 Michael Schachner
## 2471 Michael Schachner
## 2472 Jim Gordon
## 2473 Anna Lee C. Iijima
## 2474 Jim Gordon
## 2475 Matt Kettmann
## 2476 Jim Gordon
## 2477 Matt Kettmann
## 2478 Virginie Boone
## 2479 Matt Kettmann
## 2480 Virginie Boone
## 2481 Matt Kettmann
## 2482 Sean P. Sullivan
## 2483 Sean P. Sullivan
## 2484 Sean P. Sullivan
## 2485 Sean P. Sullivan
## 2486 Sean P. Sullivan
## 2487 Jeff Jenssen
## 2488 Michael Schachner
## 2489 Sean P. Sullivan
## 2490 Matt Kettmann
## 2491 Anne Krebiehl MW
## 2492 Anne Krebiehl MW
## 2493 Roger Voss
## 2494 Michael Schachner
## 2495 Michael Schachner
## 2496 Virginie Boone
## 2497 Kerin O’Keefe
## 2498 Kerin O’Keefe
## 2499 Matt Kettmann
## 2500 Anna Lee C. Iijima
## 2501 Anne Krebiehl MW
## 2502 Jeff Jenssen
## 2503 Sean P. Sullivan
## 2504 Virginie Boone
## 2505 Michael Schachner
## 2506 Matt Kettmann
## 2507 Matt Kettmann
## 2508 Virginie Boone
## 2509 Michael Schachner
## 2510 Kerin O’Keefe
## 2511 Kerin O’Keefe
## 2512 Kerin O’Keefe
## 2513 Kerin O’Keefe
## 2514 Paul Gregutt
## 2515 Kerin O’Keefe
## 2516 Virginie Boone
## 2517 Kerin O’Keefe
## 2518 Joe Czerwinski
## 2519 Kerin O’Keefe
## 2520 Kerin O’Keefe
## 2521 Kerin O’Keefe
## 2522 Kerin O’Keefe
## 2523 Kerin O’Keefe
## 2524 Kerin O’Keefe
## 2525 Kerin O’Keefe
## 2526 Kerin O’Keefe
## 2527 Kerin O’Keefe
## 2528 Virginie Boone
## 2529 Anne Krebiehl MW
## 2530 Anne Krebiehl MW
## 2531 Virginie Boone
## 2532 Michael Schachner
## 2533 Joe Czerwinski
## 2534 Matt Kettmann
## 2535 Michael Schachner
## 2536 Anne Krebiehl MW
## 2537 Matt Kettmann
## 2538 Kerin O’Keefe
## 2539 Lauren Buzzeo
## 2540 Virginie Boone
## 2541 Kerin O’Keefe
## 2542 Joe Czerwinski
## 2543 Jim Gordon
## 2544 Roger Voss
## 2545 Matt Kettmann
## 2546 Anna Lee C. Iijima
## 2547 Joe Czerwinski
## 2548 Anne Krebiehl MW
## 2549 Michael Schachner
## 2550 Michael Schachner
## 2551 Matt Kettmann
## 2552 Michael Schachner
## 2553 Jim Gordon
## 2554 Matt Kettmann
## 2555 Virginie Boone
## 2556 Virginie Boone
## 2557 Matt Kettmann
## 2558 Matt Kettmann
## 2559 Jim Gordon
## 2560 Virginie Boone
## 2561 Joe Czerwinski
## 2562 Matt Kettmann
## 2563 Kerin O’Keefe
## 2564 Matt Kettmann
## 2565 Matt Kettmann
## 2566 Anne Krebiehl MW
## 2567 Sean P. Sullivan
## 2568 Sean P. Sullivan
## 2569 Sean P. Sullivan
## 2570 Sean P. Sullivan
## 2571 Kerin O’Keefe
## 2572 Sean P. Sullivan
## 2573 Sean P. Sullivan
## 2574 Kerin O’Keefe
## 2575 Sean P. Sullivan
## 2576 Matt Kettmann
## 2577 Sean P. Sullivan
## 2578 Sean P. Sullivan
## 2579 Sean P. Sullivan
## 2580 Sean P. Sullivan
## 2581 Sean P. Sullivan
## 2582 Sean P. Sullivan
## 2583 Sean P. Sullivan
## 2584 Virginie Boone
## 2585 Roger Voss
## 2586 Roger Voss
## 2587 Roger Voss
## 2588 Joe Czerwinski
## 2589 Roger Voss
## 2590 Anna Lee C. Iijima
## 2591 Paul Gregutt
## 2592 Kerin O’Keefe
## 2593 Kerin O’Keefe
## 2594 Paul Gregutt
## 2595 Joe Czerwinski
## 2596 Roger Voss
## 2597 Lauren Buzzeo
## 2598 Anna Lee C. Iijima
## 2599 Joe Czerwinski
## 2600 Anna Lee C. Iijima
## 2601 Joe Czerwinski
## 2602
## 2603 Virginie Boone
## 2604 Michael Schachner
## 2605
## 2606
## 2607 Michael Schachner
## 2608 Michael Schachner
## 2609 Paul Gregutt
## 2610 Paul Gregutt
## 2611
## 2612 Joe Czerwinski
## 2613 Paul Gregutt
## 2614 Anna Lee C. Iijima
## 2615 Paul Gregutt
## 2616 Michael Schachner
## 2617 Susan Kostrzewa
## 2618 Joe Czerwinski
## 2619 Michael Schachner
## 2620
## 2621 Susan Kostrzewa
## 2622
## 2623
## 2624
## 2625
## 2626
## 2627
## 2628
## 2629 Paul Gregutt
## 2630
## 2631
## 2632 Joe Czerwinski
## 2633
## 2634 Roger Voss
## 2635
## 2636 Roger Voss
## 2637 Roger Voss
## 2638 Roger Voss
## 2639 Roger Voss
## 2640
## 2641 Joe Czerwinski
## 2642 Michael Schachner
## 2643 Joe Czerwinski
## 2644
## 2645 Virginie Boone
## 2646
## 2647
## 2648 Anna Lee C. Iijima
## 2649 Paul Gregutt
## 2650 Paul Gregutt
## 2651 Paul Gregutt
## 2652 Roger Voss
## 2653 Roger Voss
## 2654 Roger Voss
## 2655
## 2656 Roger Voss
## 2657 Roger Voss
## 2658 Roger Voss
## 2659 Roger Voss
## 2660
## 2661
## 2662 Kerin O’Keefe
## 2663
## 2664 Paul Gregutt
## 2665 Paul Gregutt
## 2666 Roger Voss
## 2667 Kerin O’Keefe
## 2668
## 2669
## 2670 Lauren Buzzeo
## 2671
## 2672 Roger Voss
## 2673
## 2674 Michael Schachner
## 2675 Lauren Buzzeo
## 2676 Paul Gregutt
## 2677
## 2678 Paul Gregutt
## 2679 Paul Gregutt
## 2680 Roger Voss
## 2681
## 2682 Virginie Boone
## 2683 Roger Voss
## 2684 Michael Schachner
## 2685 Kerin O’Keefe
## 2686 Roger Voss
## 2687 Sean P. Sullivan
## 2688 Roger Voss
## 2689
## 2690
## 2691
## 2692 Joe Czerwinski
## 2693
## 2694 Michael Schachner
## 2695 Michael Schachner
## 2696
## 2697
## 2698
## 2699 Michael Schachner
## 2700
## 2701
## 2702
## 2703 Joe Czerwinski
## 2704
## 2705 Michael Schachner
## 2706 Michael Schachner
## 2707
## 2708 Michael Schachner
## 2709 Roger Voss
## 2710
## 2711
## 2712
## 2713 Joe Czerwinski
## 2714 Michael Schachner
## 2715
## 2716 Joe Czerwinski
## 2717 Roger Voss
## 2718 Joe Czerwinski
## 2719 Michael Schachner
## 2720 Michael Schachner
## 2721 Anne Krebiehl MW
## 2722 Roger Voss
## 2723 Jim Gordon
## 2724 Roger Voss
## 2725 Michael Schachner
## 2726 Kerin O’Keefe
## 2727 Kerin O’Keefe
## 2728 Matt Kettmann
## 2729 Lauren Buzzeo
## 2730 Anne Krebiehl MW
## 2731 Kerin O’Keefe
## 2732 Jim Gordon
## 2733 Michael Schachner
## 2734 Virginie Boone
## 2735 Michael Schachner
## 2736 Jim Gordon
## 2737 Michael Schachner
## 2738 Michael Schachner
## 2739 Michael Schachner
## 2740 Anne Krebiehl MW
## 2741 Virginie Boone
## 2742 Michael Schachner
## 2743 Jim Gordon
## 2744 Michael Schachner
## 2745 Roger Voss
## 2746 Roger Voss
## 2747 Kerin O’Keefe
## 2748 Jeff Jenssen
## 2749 Jeff Jenssen
## 2750 Jeff Jenssen
## 2751 Jim Gordon
## 2752 Roger Voss
## 2753 Michael Schachner
## 2754 Michael Schachner
## 2755 Lauren Buzzeo
## 2756 Lauren Buzzeo
## 2757 Michael Schachner
## 2758 Jim Gordon
## 2759 Lauren Buzzeo
## 2760 Michael Schachner
## 2761 Michael Schachner
## 2762 Michael Schachner
## 2763 Michael Schachner
## 2764 Virginie Boone
## 2765 Jim Gordon
## 2766 Jim Gordon
## 2767 Jim Gordon
## 2768 Michael Schachner
## 2769 Roger Voss
## 2770 Roger Voss
## 2771 Matt Kettmann
## 2772 Virginie Boone
## 2773 Michael Schachner
## 2774 Michael Schachner
## 2775 Michael Schachner
## 2776 Jim Gordon
## 2777 Matt Kettmann
## 2778 Michael Schachner
## 2779 Matt Kettmann
## 2780 Michael Schachner
## 2781 Roger Voss
## 2782
## 2783 Roger Voss
## 2784
## 2785
## 2786
## 2787 Virginie Boone
## 2788 Roger Voss
## 2789 Roger Voss
## 2790 Roger Voss
## 2791
## 2792
## 2793 Roger Voss
## 2794
## 2795
## 2796 Michael Schachner
## 2797
## 2798
## 2799
## 2800 Roger Voss
## 2801
## 2802
## 2803 Roger Voss
## 2804
## 2805 Kerin O’Keefe
## 2806 Anna Lee C. Iijima
## 2807 Michael Schachner
## 2808 Sean P. Sullivan
## 2809 Virginie Boone
## 2810 Kerin O’Keefe
## 2811 Sean P. Sullivan
## 2812 Sean P. Sullivan
## 2813 Virginie Boone
## 2814 Sean P. Sullivan
## 2815 Sean P. Sullivan
## 2816 Kerin O’Keefe
## 2817 Jim Gordon
## 2818 Kerin O’Keefe
## 2819 Michael Schachner
## 2820 Virginie Boone
## 2821 Kerin O’Keefe
## 2822 Michael Schachner
## 2823 Kerin O’Keefe
## 2824 Kerin O’Keefe
## 2825 Roger Voss
## 2826 Sean P. Sullivan
## 2827 Roger Voss
## 2828 Roger Voss
## 2829 Roger Voss
## 2830 Roger Voss
## 2831 Roger Voss
## 2832 Roger Voss
## 2833 Roger Voss
## 2834 Kerin O’Keefe
## 2835 Virginie Boone
## 2836 Kerin O’Keefe
## 2837 Roger Voss
## 2838 Joe Czerwinski
## 2839 Sean P. Sullivan
## 2840 Kerin O’Keefe
## 2841 Kerin O’Keefe
## 2842 Roger Voss
## 2843 Roger Voss
## 2844 Roger Voss
## 2845 Roger Voss
## 2846 Jim Gordon
## 2847 Kerin O’Keefe
## 2848 Jim Gordon
## 2849 Sean P. Sullivan
## 2850 Kerin O’Keefe
## 2851 Jim Gordon
## 2852 Anna Lee C. Iijima
## 2853 Matt Kettmann
## 2854 Kerin O’Keefe
## 2855 Michael Schachner
## 2856 Kerin O’Keefe
## 2857 Matt Kettmann
## 2858 Sean P. Sullivan
## 2859 Michael Schachner
## 2860 Kerin O’Keefe
## 2861 Kerin O’Keefe
## 2862 Sean P. Sullivan
## 2863 Kerin O’Keefe
## 2864 Virginie Boone
## 2865 Michael Schachner
## 2866 Paul Gregutt
## 2867 Roger Voss
## 2868
## 2869
## 2870
## 2871
## 2872 Roger Voss
## 2873
## 2874
## 2875
## 2876
## 2877 Roger Voss
## 2878
## 2879 Paul Gregutt
## 2880 Paul Gregutt
## 2881
## 2882 Virginie Boone
## 2883
## 2884
## 2885
## 2886
## 2887
## 2888 Virginie Boone
## 2889 Paul Gregutt
## 2890 Roger Voss
## 2891 Roger Voss
## 2892 Roger Voss
## 2893
## 2894 Roger Voss
## 2895 Michael Schachner
## 2896 Roger Voss
## 2897 Sean P. Sullivan
## 2898 Roger Voss
## 2899 Kerin O’Keefe
## 2900 Roger Voss
## 2901 Matt Kettmann
## 2902 Michael Schachner
## 2903 Roger Voss
## 2904 Kerin O’Keefe
## 2905 Roger Voss
## 2906 Roger Voss
## 2907 Sean P. Sullivan
## 2908 Michael Schachner
## 2909 Kerin O’Keefe
## 2910 Roger Voss
## 2911 Roger Voss
## 2912 Michael Schachner
## 2913 Anna Lee C. Iijima
## 2914 Michael Schachner
## 2915 Kerin O’Keefe
## 2916 Virginie Boone
## 2917 Michael Schachner
## 2918 Virginie Boone
## 2919 Roger Voss
## 2920 Kerin O’Keefe
## 2921 Roger Voss
## 2922 Roger Voss
## 2923
## 2924
## 2925 Michael Schachner
## 2926 Michael Schachner
## 2927 Roger Voss
## 2928
## 2929
## 2930
## 2931 Michael Schachner
## 2932
## 2933
## 2934
## 2935 Michael Schachner
## 2936 Michael Schachner
## 2937
## 2938
## 2939
## 2940
## 2941
## 2942 Paul Gregutt
## 2943 Michael Schachner
## 2944
## 2945 Paul Gregutt
## 2946
## 2947
## 2948 Michael Schachner
## 2949 Paul Gregutt
## 2950 Joe Czerwinski
## 2951 Paul Gregutt
## 2952 Paul Gregutt
## 2953
## 2954 Joe Czerwinski
## 2955 Michael Schachner
## 2956
## 2957 Joe Czerwinski
## 2958
## 2959 Joe Czerwinski
## 2960 Roger Voss
## 2961 Michael Schachner
## 2962
## 2963 Michael Schachner
## 2964
## 2965 Michael Schachner
## 2966 Joe Czerwinski
## 2967
## 2968 Paul Gregutt
## 2969
## 2970
## 2971 Michael Schachner
## 2972 Joe Czerwinski
## 2973
## 2974 Susan Kostrzewa
## 2975
## 2976 Roger Voss
## 2977 Roger Voss
## 2978 Roger Voss
## 2979 Roger Voss
## 2980 Roger Voss
## 2981 Anne Krebiehl MW
## 2982 Joe Czerwinski
## 2983 Joe Czerwinski
## 2984 Virginie Boone
## 2985 Jim Gordon
## 2986 Jim Gordon
## 2987 Matt Kettmann
## 2988 Kerin O’Keefe
## 2989 Anna Lee C. Iijima
## 2990 Paul Gregutt
## 2991 Virginie Boone
## 2992 Virginie Boone
## 2993 Anne Krebiehl MW
## 2994 Joe Czerwinski
## 2995 Jim Gordon
## 2996 Matt Kettmann
## 2997 Kerin O’Keefe
## 2998 Roger Voss
## 2999 Kerin O’Keefe
## 3000 Anne Krebiehl MW
## 3001 Anna Lee C. Iijima
## 3002 Kerin O’Keefe
## 3003 Michael Schachner
## 3004 Michael Schachner
## 3005 Kerin O’Keefe
## 3006
## 3007 Paul Gregutt
## 3008 Paul Gregutt
## 3009 Paul Gregutt
## 3010
## 3011 Lauren Buzzeo
## 3012
## 3013 Michael Schachner
## 3014 Paul Gregutt
## 3015 Roger Voss
## 3016
## 3017 Roger Voss
## 3018 Roger Voss
## 3019 Paul Gregutt
## 3020 Roger Voss
## 3021
## 3022 Michael Schachner
## 3023 Paul Gregutt
## 3024 Paul Gregutt
## 3025 Paul Gregutt
## 3026 Roger Voss
## 3027 Paul Gregutt
## 3028 Michael Schachner
## 3029
## 3030
## 3031
## 3032 Roger Voss
## 3033 Michael Schachner
## 3034 Virginie Boone
## 3035 Kerin O’Keefe
## 3036 Sean P. Sullivan
## 3037 Sean P. Sullivan
## 3038 Kerin O’Keefe
## 3039 Roger Voss
## 3040 Roger Voss
## 3041 Michael Schachner
## 3042 Sean P. Sullivan
## 3043 Jim Gordon
## 3044 Sean P. Sullivan
## 3045 Roger Voss
## 3046 Michael Schachner
## 3047 Roger Voss
## 3048 Sean P. Sullivan
## 3049 Matt Kettmann
## 3050 Roger Voss
## 3051 Kerin O’Keefe
## 3052 Anna Lee C. Iijima
## 3053 Virginie Boone
## 3054 Paul Gregutt
## 3055 Virginie Boone
## 3056 Jim Gordon
## 3057 Michael Schachner
## 3058 Michael Schachner
## 3059 Roger Voss
## 3060 Sean P. Sullivan
## 3061 Paul Gregutt
## 3062
## 3063
## 3064 Roger Voss
## 3065 Paul Gregutt
## 3066
## 3067 Paul Gregutt
## 3068
## 3069 Roger Voss
## 3070 Roger Voss
## 3071 Virginie Boone
## 3072 Roger Voss
## 3073 Roger Voss
## 3074
## 3075
## 3076
## 3077 Paul Gregutt
## 3078 Virginie Boone
## 3079 Paul Gregutt
## 3080 Paul Gregutt
## 3081 Joe Czerwinski
## 3082
## 3083
## 3084
## 3085
## 3086
## 3087 Paul Gregutt
## 3088
## 3089
## 3090 Paul Gregutt
## 3091
## 3092
## 3093 Joe Czerwinski
## 3094 Michael Schachner
## 3095 Roger Voss
## 3096
## 3097
## 3098
## 3099 Michael Schachner
## 3100 Joe Czerwinski
## 3101
## 3102
## 3103 Michael Schachner
## 3104
## 3105
## 3106
## 3107
## 3108 Roger Voss
## 3109
## 3110 Roger Voss
## 3111 Michael Schachner
## 3112 Roger Voss
## 3113 Roger Voss
## 3114
## 3115
## 3116
## 3117
## 3118 Paul Gregutt
## 3119
## 3120
## 3121 Michael Schachner
## 3122 Kerin O’Keefe
## 3123 Roger Voss
## 3124 Virginie Boone
## 3125
## 3126 Paul Gregutt
## 3127 Sean P. Sullivan
## 3128
## 3129
## 3130
## 3131
## 3132 Roger Voss
## 3133 Michael Schachner
## 3134 Roger Voss
## 3135 Roger Voss
## 3136 Joe Czerwinski
## 3137 Michael Schachner
## 3138 Roger Voss
## 3139 Roger Voss
## 3140 Roger Voss
## 3141
## 3142 Paul Gregutt
## 3143
## 3144 Paul Gregutt
## 3145 Roger Voss
## 3146 Paul Gregutt
## 3147 Roger Voss
## 3148 Paul Gregutt
## 3149 Michael Schachner
## 3150 Michael Schachner
## 3151
## 3152 Roger Voss
## 3153
## 3154 Paul Gregutt
## 3155 Michael Schachner
## 3156
## 3157 Joe Czerwinski
## 3158 Michael Schachner
## 3159 Michael Schachner
## 3160 Michael Schachner
## 3161 Roger Voss
## 3162
## 3163
## 3164 Roger Voss
## 3165
## 3166 Michael Schachner
## 3167
## 3168
## 3169
## 3170
## 3171
## 3172
## 3173
## 3174 Paul Gregutt
## 3175
## 3176
## 3177 Roger Voss
## 3178 Roger Voss
## 3179
## 3180 Michael Schachner
## 3181 Roger Voss
## 3182 Roger Voss
## 3183 Roger Voss
## 3184 Roger Voss
## 3185 Virginie Boone
## 3186 Kerin O’Keefe
## 3187 Virginie Boone
## 3188 Anne Krebiehl MW
## 3189 Sean P. Sullivan
## 3190 Matt Kettmann
## 3191 Jim Gordon
## 3192 Roger Voss
## 3193 Anna Lee C. Iijima
## 3194 Joe Czerwinski
## 3195 Virginie Boone
## 3196 Joe Czerwinski
## 3197 Kerin O’Keefe
## 3198 Virginie Boone
## 3199 Anne Krebiehl MW
## 3200 Anne Krebiehl MW
## 3201 Roger Voss
## 3202 Kerin O’Keefe
## 3203 Anne Krebiehl MW
## 3204 Sean P. Sullivan
## 3205 Sean P. Sullivan
## 3206 Jim Gordon
## 3207 Virginie Boone
## 3208 Kerin O’Keefe
## 3209 Virginie Boone
## 3210 Virginie Boone
## 3211 Michael Schachner
## 3212 Michael Schachner
## 3213 Paul Gregutt
## 3214 Michael Schachner
## 3215
## 3216 Virginie Boone
## 3217 Michael Schachner
## 3218
## 3219 Roger Voss
## 3220 Roger Voss
## 3221 Roger Voss
## 3222
## 3223
## 3224
## 3225 Michael Schachner
## 3226
## 3227
## 3228 Paul Gregutt
## 3229
## 3230
## 3231
## 3232 Michael Schachner
## 3233 Paul Gregutt
## 3234
## 3235 Roger Voss
## 3236
## 3237 Michael Schachner
## 3238 Michael Schachner
## 3239
## 3240
## 3241 Jim Gordon
## 3242 Sean P. Sullivan
## 3243 Sean P. Sullivan
## 3244 Kerin O’Keefe
## 3245 Virginie Boone
## 3246 Sean P. Sullivan
## 3247 Roger Voss
## 3248 Matt Kettmann
## 3249 Kerin O’Keefe
## 3250 Jim Gordon
## 3251 Virginie Boone
## 3252 Roger Voss
## 3253 Roger Voss
## 3254 Kerin O’Keefe
## 3255 Virginie Boone
## 3256 Kerin O’Keefe
## 3257 Virginie Boone
## 3258 Sean P. Sullivan
## 3259 Sean P. Sullivan
## 3260 Matt Kettmann
## 3261 Michael Schachner
## 3262 Anne Krebiehl MW
## 3263 Sean P. Sullivan
## 3264 Joe Czerwinski
## 3265 Roger Voss
## 3266 Roger Voss
## 3267 Michael Schachner
## 3268 Kerin O’Keefe
## 3269 Roger Voss
## 3270 Virginie Boone
## 3271 Roger Voss
## 3272 Roger Voss
## 3273
## 3274 Roger Voss
## 3275
## 3276
## 3277
## 3278 Joe Czerwinski
## 3279 Roger Voss
## 3280
## 3281
## 3282 Michael Schachner
## 3283
## 3284
## 3285 Michael Schachner
## 3286 Paul Gregutt
## 3287 Paul Gregutt
## 3288
## 3289 Joe Czerwinski
## 3290 Paul Gregutt
## 3291
## 3292
## 3293
## 3294
## 3295 Roger Voss
## 3296
## 3297
## 3298 Roger Voss
## 3299 Roger Voss
## 3300 Michael Schachner
## 3301 Susan Kostrzewa
## 3302
## 3303 Michael Schachner
## 3304
## 3305
## 3306
## 3307
## 3308
## 3309 Roger Voss
## 3310
## 3311
## 3312
## 3313 Michael Schachner
## 3314
## 3315 Lauren Buzzeo
## 3316
## 3317 Paul Gregutt
## 3318
## 3319 Michael Schachner
## 3320
## 3321 Lauren Buzzeo
## 3322 Michael Schachner
## 3323 Joe Czerwinski
## 3324
## 3325 Roger Voss
## 3326 Joe Czerwinski
## 3327
## 3328
## 3329
## 3330 Michael Schachner
## 3331
## 3332 Roger Voss
## 3333 Matt Kettmann
## 3334 Roger Voss
## 3335 Anna Lee C. Iijima
## 3336 Roger Voss
## 3337 Anna Lee C. Iijima
## 3338 Kerin O’Keefe
## 3339 Anna Lee C. Iijima
## 3340 Jim Gordon
## 3341 Joe Czerwinski
## 3342 Michael Schachner
## 3343 Roger Voss
## 3344 Mike DeSimone
## 3345 Anna Lee C. Iijima
## 3346 Roger Voss
## 3347 Michael Schachner
## 3348 Roger Voss
## 3349 Roger Voss
## 3350 Roger Voss
## 3351 Matt Kettmann
## 3352 Anna Lee C. Iijima
## 3353 Roger Voss
## 3354 Roger Voss
## 3355 Roger Voss
## 3356 Anna Lee C. Iijima
## 3357 Virginie Boone
## 3358 Anna Lee C. Iijima
## 3359 Michael Schachner
## 3360 Michael Schachner
## 3361 Anna Lee C. Iijima
## 3362 Virginie Boone
## 3363 Virginie Boone
## 3364 Joe Czerwinski
## 3365 Jim Gordon
## 3366 Roger Voss
## 3367 Jim Gordon
## 3368 Jim Gordon
## 3369 Paul Gregutt
## 3370 Virginie Boone
## 3371 Jim Gordon
## 3372 Paul Gregutt
## 3373 Paul Gregutt
## 3374 Virginie Boone
## 3375 Roger Voss
## 3376 Sean P. Sullivan
## 3377 Jim Gordon
## 3378 Sean P. Sullivan
## 3379 Roger Voss
## 3380 Sean P. Sullivan
## 3381 Paul Gregutt
## 3382 Anna Lee C. Iijima
## 3383 Anna Lee C. Iijima
## 3384 Jim Gordon
## 3385 Paul Gregutt
## 3386 Michael Schachner
## 3387 Sean P. Sullivan
## 3388 Roger Voss
## 3389 Roger Voss
## 3390 Alexander Peartree
## 3391 Michael Schachner
## 3392 Michael Schachner
## 3393 Michael Schachner
## 3394 Virginie Boone
## 3395 Virginie Boone
## 3396 Virginie Boone
## 3397 Michael Schachner
## 3398 Jim Gordon
## 3399 Virginie Boone
## 3400 Michael Schachner
## 3401 Roger Voss
## 3402 Roger Voss
## 3403 Roger Voss
## 3404 Paul Gregutt
## 3405 Alexander Peartree
## 3406 Alexander Peartree
## 3407 Roger Voss
## 3408 Roger Voss
## 3409 Michael Schachner
## 3410 Virginie Boone
## 3411 Michael Schachner
## 3412 Roger Voss
## 3413 Virginie Boone
## 3414 Roger Voss
## 3415 Kerin O’Keefe
## 3416 Jim Gordon
## 3417 Michael Schachner
## 3418 Jim Gordon
## 3419 Virginie Boone
## 3420 Matt Kettmann
## 3421 Roger Voss
## 3422 Roger Voss
## 3423 Michael Schachner
## 3424 Virginie Boone
## 3425 Matt Kettmann
## 3426 Roger Voss
## 3427 Roger Voss
## 3428 Roger Voss
## 3429 Paul Gregutt
## 3430 Virginie Boone
## 3431 Virginie Boone
## 3432 Roger Voss
## 3433 Sean P. Sullivan
## 3434 Paul Gregutt
## 3435 Michael Schachner
## 3436 Jim Gordon
## 3437 Sean P. Sullivan
## 3438 Matt Kettmann
## 3439 Matt Kettmann
## 3440 Michael Schachner
## 3441 Roger Voss
## 3442 Matt Kettmann
## 3443 Roger Voss
## 3444 Roger Voss
## 3445 Roger Voss
## 3446 Virginie Boone
## 3447 Paul Gregutt
## 3448 Kerin O’Keefe
## 3449 Kerin O’Keefe
## 3450 Jim Gordon
## 3451 Jim Gordon
## 3452 Joe Czerwinski
## 3453 Michael Schachner
## 3454 Jim Gordon
## 3455 Joe Czerwinski
## 3456 Virginie Boone
## 3457 Michael Schachner
## 3458 Michael Schachner
## 3459 Jim Gordon
## 3460 Joe Czerwinski
## 3461 Jim Gordon
## 3462 Paul Gregutt
## 3463 Susan Kostrzewa
## 3464
## 3465 Joe Czerwinski
## 3466
## 3467
## 3468 Roger Voss
## 3469
## 3470
## 3471
## 3472 Michael Schachner
## 3473 Joe Czerwinski
## 3474 Roger Voss
## 3475 Lauren Buzzeo
## 3476 Paul Gregutt
## 3477 Roger Voss
## 3478 Roger Voss
## 3479 Roger Voss
## 3480 Roger Voss
## 3481 Roger Voss
## 3482 Roger Voss
## 3483 Roger Voss
## 3484 Roger Voss
## 3485 Anna Lee C. Iijima
## 3486 Paul Gregutt
## 3487 Roger Voss
## 3488 Anna Lee C. Iijima
## 3489
## 3490 Virginie Boone
## 3491
## 3492
## 3493 Michael Schachner
## 3494 Anna Lee C. Iijima
## 3495
## 3496 Joe Czerwinski
## 3497 Michael Schachner
## 3498 Roger Voss
## 3499
## 3500 Anna Lee C. Iijima
## 3501 Jim Gordon
## 3502 Roger Voss
## 3503 Sean P. Sullivan
## 3504 Jim Gordon
## 3505 Matt Kettmann
## 3506 Sean P. Sullivan
## 3507 Virginie Boone
## 3508 Virginie Boone
## 3509 Paul Gregutt
## 3510 Kerin O’Keefe
## 3511 Kerin O’Keefe
## 3512 Paul Gregutt
## 3513 Kerin O’Keefe
## 3514 Virginie Boone
## 3515 Virginie Boone
## 3516 Sean P. Sullivan
## 3517 Roger Voss
## 3518 Virginie Boone
## 3519 Michael Schachner
## 3520 Roger Voss
## 3521 Virginie Boone
## 3522 Matt Kettmann
## 3523 Matt Kettmann
## 3524 Kerin O’Keefe
## 3525 Roger Voss
## 3526 Roger Voss
## 3527 Kerin O’Keefe
## 3528 Kerin O’Keefe
## 3529 Jim Gordon
## 3530 Anna Lee C. Iijima
## 3531 Kerin O’Keefe
## 3532 Roger Voss
## 3533 Joe Czerwinski
## 3534 Paul Gregutt
## 3535 Joe Czerwinski
## 3536
## 3537 Roger Voss
## 3538 Roger Voss
## 3539 Roger Voss
## 3540 Kerin O’Keefe
## 3541 Kerin O’Keefe
## 3542 Kerin O’Keefe
## 3543 Sean P. Sullivan
## 3544 Paul Gregutt
## 3545 Kerin O’Keefe
## 3546
## 3547
## 3548 Joe Czerwinski
## 3549 Kerin O’Keefe
## 3550
## 3551 Roger Voss
## 3552 Paul Gregutt
## 3553 Anna Lee C. Iijima
## 3554
## 3555 Joe Czerwinski
## 3556 Roger Voss
## 3557 Paul Gregutt
## 3558 Roger Voss
## 3559 Paul Gregutt
## 3560 Roger Voss
## 3561 Jeff Jenssen
## 3562 Paul Gregutt
## 3563 Matt Kettmann
## 3564 Kerin O’Keefe
## 3565 Kerin O’Keefe
## 3566 Roger Voss
## 3567 Roger Voss
## 3568 Roger Voss
## 3569 Roger Voss
## 3570 Anna Lee C. Iijima
## 3571 Kerin O’Keefe
## 3572 Michael Schachner
## 3573 Paul Gregutt
## 3574 Michael Schachner
## 3575 Roger Voss
## 3576 Roger Voss
## 3577 Jeff Jenssen
## 3578 Matt Kettmann
## 3579 Paul Gregutt
## 3580 Michael Schachner
## 3581 Paul Gregutt
## 3582 Matt Kettmann
## 3583 Paul Gregutt
## 3584 Anna Lee C. Iijima
## 3585 Carrie Dykes
## 3586 Roger Voss
## 3587 Kerin O’Keefe
## 3588 Roger Voss
## 3589 Mike DeSimone
## 3590
## 3591 Lauren Buzzeo
## 3592 Roger Voss
## 3593 Roger Voss
## 3594
## 3595 Joe Czerwinski
## 3596 Joe Czerwinski
## 3597 Paul Gregutt
## 3598 Roger Voss
## 3599 Joe Czerwinski
## 3600
## 3601 Anna Lee C. Iijima
## 3602
## 3603 Roger Voss
## 3604 Lauren Buzzeo
## 3605 Paul Gregutt
## 3606
## 3607 Roger Voss
## 3608
## 3609
## 3610 Paul Gregutt
## 3611 Michael Schachner
## 3612
## 3613 Roger Voss
## 3614 Michael Schachner
## 3615 Michael Schachner
## 3616 Lauren Buzzeo
## 3617 Roger Voss
## 3618 Anna Lee C. Iijima
## 3619
## 3620 Michael Schachner
## 3621 Michael Schachner
## 3622 Roger Voss
## 3623
## 3624
## 3625
## 3626
## 3627
## 3628 Michael Schachner
## 3629
## 3630 Paul Gregutt
## 3631 Michael Schachner
## 3632 Michael Schachner
## 3633
## 3634
## 3635
## 3636 Michael Schachner
## 3637
## 3638 Michael Schachner
## 3639 Paul Gregutt
## 3640 Michael Schachner
## 3641 Roger Voss
## 3642 Michael Schachner
## 3643 Roger Voss
## 3644 Roger Voss
## 3645 Roger Voss
## 3646
## 3647 Roger Voss
## 3648 Roger Voss
## 3649
## 3650 Paul Gregutt
## 3651
## 3652
## 3653 Roger Voss
## 3654
## 3655 Paul Gregutt
## 3656
## 3657 Roger Voss
## 3658 Michael Schachner
## 3659
## 3660 Paul Gregutt
## 3661
## 3662 Paul Gregutt
## 3663
## 3664
## 3665 Paul Gregutt
## 3666
## 3667 Michael Schachner
## 3668 Joe Czerwinski
## 3669
## 3670
## 3671
## 3672 Roger Voss
## 3673
## 3674 Michael Schachner
## 3675
## 3676
## 3677 Roger Voss
## 3678
## 3679
## 3680 Joe Czerwinski
## 3681 Lauren Buzzeo
## 3682 Michael Schachner
## 3683 Lauren Buzzeo
## 3684 Lauren Buzzeo
## 3685 Lauren Buzzeo
## 3686 Joe Czerwinski
## 3687 Virginie Boone
## 3688 Roger Voss
## 3689 Virginie Boone
## 3690 Roger Voss
## 3691 Roger Voss
## 3692 Roger Voss
## 3693 Michael Schachner
## 3694 Roger Voss
## 3695 Kerin O’Keefe
## 3696 Kerin O’Keefe
## 3697 Matt Kettmann
## 3698 Michael Schachner
## 3699 Roger Voss
## 3700 Roger Voss
## 3701 Kerin O’Keefe
## 3702 Michael Schachner
## 3703 Anna Lee C. Iijima
## 3704 Michael Schachner
## 3705 Virginie Boone
## 3706 Kerin O’Keefe
## 3707 Anna Lee C. Iijima
## 3708 Paul Gregutt
## 3709 Paul Gregutt
## 3710 Michael Schachner
## 3711 Roger Voss
## 3712 Michael Schachner
## 3713
## 3714
## 3715
## 3716 Anna Lee C. Iijima
## 3717 Anna Lee C. Iijima
## 3718
## 3719 Michael Schachner
## 3720
## 3721 Michael Schachner
## 3722 Paul Gregutt
## 3723 Roger Voss
## 3724 Paul Gregutt
## 3725 Roger Voss
## 3726 Roger Voss
## 3727 Roger Voss
## 3728 Kerin O’Keefe
## 3729 Michael Schachner
## 3730 Roger Voss
## 3731 Roger Voss
## 3732 Michael Schachner
## 3733 Jim Gordon
## 3734 Lauren Buzzeo
## 3735 Anne Krebiehl MW
## 3736 Roger Voss
## 3737 Roger Voss
## 3738 Michael Schachner
## 3739 Susan Kostrzewa
## 3740 Roger Voss
## 3741 Kerin O’Keefe
## 3742 Roger Voss
## 3743 Kerin O’Keefe
## 3744 Michael Schachner
## 3745 Kerin O’Keefe
## 3746 Matt Kettmann
## 3747 Virginie Boone
## 3748 Michael Schachner
## 3749 Jim Gordon
## 3750 Roger Voss
## 3751 Matt Kettmann
## 3752 Roger Voss
## 3753 Lauren Buzzeo
## 3754 Anne Krebiehl MW
## 3755 Michael Schachner
## 3756 Michael Schachner
## 3757 Kerin O’Keefe
## 3758
## 3759 Roger Voss
## 3760 Michael Schachner
## 3761 Michael Schachner
## 3762 Kerin O’Keefe
## 3763 Anna Lee C. Iijima
## 3764 Joe Czerwinski
## 3765 Sean P. Sullivan
## 3766 Anna Lee C. Iijima
## 3767
## 3768 Michael Schachner
## 3769 Kerin O’Keefe
## 3770 Kerin O’Keefe
## 3771
## 3772 Roger Voss
## 3773
## 3774
## 3775
## 3776
## 3777 Kerin O’Keefe
## 3778
## 3779
## 3780 Anna Lee C. Iijima
## 3781 Anna Lee C. Iijima
## 3782 Joe Czerwinski
## 3783 Sean P. Sullivan
## 3784 Roger Voss
## 3785
## 3786 Kerin O’Keefe
## 3787 Kerin O’Keefe
## 3788 Virginie Boone
## 3789 Jim Gordon
## 3790 Anne Krebiehl MW
## 3791 Paul Gregutt
## 3792 Virginie Boone
## 3793 Kerin O’Keefe
## 3794 Paul Gregutt
## 3795 Anna Lee C. Iijima
## 3796 Paul Gregutt
## 3797 Kerin O’Keefe
## 3798 Kerin O’Keefe
## 3799 Kerin O’Keefe
## 3800 Kerin O’Keefe
## 3801 Anna Lee C. Iijima
## 3802 Michael Schachner
## 3803 Paul Gregutt
## 3804 Paul Gregutt
## 3805 Kerin O’Keefe
## 3806 Michael Schachner
## 3807 Matt Kettmann
## 3808 Jim Gordon
## 3809 Michael Schachner
## 3810 Michael Schachner
## 3811 Virginie Boone
## 3812 Roger Voss
## 3813 Jim Gordon
## 3814 Roger Voss
## 3815 Roger Voss
## 3816 Joe Czerwinski
## 3817 Roger Voss
## 3818 Kerin O’Keefe
## 3819 Roger Voss
## 3820 Roger Voss
## 3821
## 3822 Michael Schachner
## 3823
## 3824 Roger Voss
## 3825 Joe Czerwinski
## 3826 Joe Czerwinski
## 3827 Kerin O’Keefe
## 3828
## 3829
## 3830 Roger Voss
## 3831 Kerin O’Keefe
## 3832
## 3833 Roger Voss
## 3834 Roger Voss
## 3835 Joe Czerwinski
## 3836 Kerin O’Keefe
## 3837 Roger Voss
## 3838 Kerin O’Keefe
## 3839 Roger Voss
## 3840
## 3841
## 3842 Roger Voss
## 3843 Kerin O’Keefe
## 3844 Roger Voss
## 3845 Kerin O’Keefe
## 3846 Roger Voss
## 3847
## 3848
## 3849
## 3850
## 3851 Joe Czerwinski
## 3852 Paul Gregutt
## 3853 Roger Voss
## 3854 Roger Voss
## 3855 Roger Voss
## 3856
## 3857 Michael Schachner
## 3858
## 3859
## 3860
## 3861
## 3862
## 3863
## 3864 Roger Voss
## 3865
## 3866
## 3867 Paul Gregutt
## 3868
## 3869
## 3870
## 3871 Roger Voss
## 3872 Joe Czerwinski
## 3873
## 3874 Paul Gregutt
## 3875 Paul Gregutt
## 3876
## 3877
## 3878 Roger Voss
## 3879
## 3880
## 3881
## 3882 Paul Gregutt
## 3883 Roger Voss
## 3884
## 3885 Paul Gregutt
## 3886 Michael Schachner
## 3887
## 3888 Michael Schachner
## 3889 Paul Gregutt
## 3890
## 3891 Michael Schachner
## 3892 Roger Voss
## 3893
## 3894
## 3895 Roger Voss
## 3896 Michael Schachner
## 3897
## 3898 Michael Schachner
## 3899
## 3900 Paul Gregutt
## 3901 Kerin O’Keefe
## 3902 Virginie Boone
## 3903 Kerin O’Keefe
## 3904 Roger Voss
## 3905 Virginie Boone
## 3906 Kerin O’Keefe
## 3907 Roger Voss
## 3908 Kerin O’Keefe
## 3909 Kerin O’Keefe
## 3910 Kerin O’Keefe
## 3911 Kerin O’Keefe
## 3912 Kerin O’Keefe
## 3913 Paul Gregutt
## 3914 Roger Voss
## 3915 Kerin O’Keefe
## 3916 Virginie Boone
## 3917 Matt Kettmann
## 3918 Michael Schachner
## 3919 Kerin O’Keefe
## 3920 Michael Schachner
## 3921 Matt Kettmann
## 3922 Paul Gregutt
## 3923 Roger Voss
## 3924 Virginie Boone
## 3925 Kerin O’Keefe
## 3926 Matt Kettmann
## 3927 Kerin O’Keefe
## 3928 Kerin O’Keefe
## 3929 Virginie Boone
## 3930 Michael Schachner
## 3931 Michael Schachner
## 3932
## 3933
## 3934 Michael Schachner
## 3935 Michael Schachner
## 3936 Michael Schachner
## 3937
## 3938
## 3939 Roger Voss
## 3940
## 3941 Michael Schachner
## 3942 Michael Schachner
## 3943 Virginie Boone
## 3944
## 3945 Michael Schachner
## 3946 Roger Voss
## 3947
## 3948 Joe Czerwinski
## 3949 Roger Voss
## 3950 Joe Czerwinski
## 3951 Roger Voss
## 3952 Michael Schachner
## 3953 Joe Czerwinski
## 3954 Michael Schachner
## 3955
## 3956 Roger Voss
## 3957 Roger Voss
## 3958
## 3959 Michael Schachner
## 3960 Michael Schachner
## 3961 Paul Gregutt
## 3962 Michael Schachner
## 3963 Roger Voss
## 3964 Roger Voss
## 3965 Roger Voss
## 3966
## 3967
## 3968
## 3969
## 3970 Lauren Buzzeo
## 3971
## 3972 Roger Voss
## 3973 Roger Voss
## 3974 Roger Voss
## 3975
## 3976
## 3977
## 3978
## 3979
## 3980 Joe Czerwinski
## 3981 Paul Gregutt
## 3982
## 3983 Joe Czerwinski
## 3984 Roger Voss
## 3985
## 3986
## 3987
## 3988
## 3989
## 3990
## 3991
## 3992 Paul Gregutt
## 3993
## 3994
## 3995
## 3996 Michael Schachner
## 3997
## 3998 Anna Lee C. Iijima
## 3999 Michael Schachner
## 4000 Anna Lee C. Iijima
## 4001 Michael Schachner
## 4002
## 4003 Michael Schachner
## 4004
## 4005 Roger Voss
## 4006 Roger Voss
## 4007 Kerin O’Keefe
## 4008 Jeff Jenssen
## 4009 Paul Gregutt
## 4010 Anna Lee C. Iijima
## 4011 Kerin O’Keefe
## 4012 Michael Schachner
## 4013 Lauren Buzzeo
## 4014 Sean P. Sullivan
## 4015 Paul Gregutt
## 4016 Joe Czerwinski
## 4017 Michael Schachner
## 4018 Joe Czerwinski
## 4019 Kerin O’Keefe
## 4020 Jeff Jenssen
## 4021
## 4022
## 4023 Paul Gregutt
## 4024 Michael Schachner
## 4025 Lauren Buzzeo
## 4026 Lauren Buzzeo
## 4027 Kerin O’Keefe
## 4028 Sean P. Sullivan
## 4029 Virginie Boone
## 4030 Jim Gordon
## 4031 Matt Kettmann
## 4032 Matt Kettmann
## 4033 Roger Voss
## 4034 Sean P. Sullivan
## 4035 Sean P. Sullivan
## 4036 Roger Voss
## 4037 Roger Voss
## 4038 Roger Voss
## 4039 Roger Voss
## 4040 Kerin O’Keefe
## 4041 Kerin O’Keefe
## 4042 Sean P. Sullivan
## 4043 Sean P. Sullivan
## 4044 Sean P. Sullivan
## 4045 Sean P. Sullivan
## 4046 Michael Schachner
## 4047 Michael Schachner
## 4048 Anna Lee C. Iijima
## 4049 Mike DeSimone
## 4050 Joe Czerwinski
## 4051 Michael Schachner
## 4052 Michael Schachner
## 4053 Sean P. Sullivan
## 4054 Kerin O’Keefe
## 4055 Michael Schachner
## 4056 Sean P. Sullivan
## 4057 Matt Kettmann
## 4058 Virginie Boone
## 4059 Virginie Boone
## 4060 Sean P. Sullivan
## 4061 Roger Voss
## 4062 Virginie Boone
## 4063 Virginie Boone
## 4064 Sean P. Sullivan
## 4065 Anna Lee C. Iijima
## 4066 Sean P. Sullivan
## 4067 Virginie Boone
## 4068 Kerin O’Keefe
## 4069 Kerin O’Keefe
## 4070 Jim Gordon
## 4071 Kerin O’Keefe
## 4072 Sean P. Sullivan
## 4073 Virginie Boone
## 4074 Anne Krebiehl MW
## 4075 Matt Kettmann
## 4076 Virginie Boone
## 4077 Sean P. Sullivan
## 4078 Virginie Boone
## 4079 Matt Kettmann
## 4080 Virginie Boone
## 4081 Sean P. Sullivan
## 4082 Roger Voss
## 4083 Jim Gordon
## 4084 Matt Kettmann
## 4085 Virginie Boone
## 4086 Michael Schachner
## 4087 Sean P. Sullivan
## 4088 Virginie Boone
## 4089 Michael Schachner
## 4090 Kerin O’Keefe
## 4091 Roger Voss
## 4092 Roger Voss
## 4093 Roger Voss
## 4094 Roger Voss
## 4095 Paul Gregutt
## 4096 Virginie Boone
## 4097 Virginie Boone
## 4098 Roger Voss
## 4099 Michael Schachner
## 4100 Joe Czerwinski
## 4101 Virginie Boone
## 4102 Virginie Boone
## 4103 Virginie Boone
## 4104 Virginie Boone
## 4105 Michael Schachner
## 4106 Virginie Boone
## 4107 Paul Gregutt
## 4108 Roger Voss
## 4109 Roger Voss
## 4110 Michael Schachner
## 4111 Virginie Boone
## 4112 Virginie Boone
## 4113 Virginie Boone
## 4114 Jim Gordon
## 4115 Anna Lee C. Iijima
## 4116 Anna Lee C. Iijima
## 4117 Jim Gordon
## 4118 Jim Gordon
## 4119 Jim Gordon
## 4120 Kerin O’Keefe
## 4121 Anna Lee C. Iijima
## 4122 Roger Voss
## 4123 Roger Voss
## 4124 Jim Gordon
## 4125 Jim Gordon
## 4126 Kerin O’Keefe
## 4127 Kerin O’Keefe
## 4128 Roger Voss
## 4129 Roger Voss
## 4130 Roger Voss
## 4131 Virginie Boone
## 4132 Roger Voss
## 4133 Matt Kettmann
## 4134 Paul Gregutt
## 4135 Roger Voss
## 4136 Roger Voss
## 4137 Roger Voss
## 4138 Joe Czerwinski
## 4139 Roger Voss
## 4140 Roger Voss
## 4141 Paul Gregutt
## 4142 Roger Voss
## 4143 Roger Voss
## 4144 Jim Gordon
## 4145 Kerin O’Keefe
## 4146 Roger Voss
## 4147 Matt Kettmann
## 4148 Paul Gregutt
## 4149 Matt Kettmann
## 4150 Matt Kettmann
## 4151 Sean P. Sullivan
## 4152 Roger Voss
## 4153 Paul Gregutt
## 4154 Virginie Boone
## 4155 Kerin O’Keefe
## 4156 Roger Voss
## 4157 Matt Kettmann
## 4158 Virginie Boone
## 4159 Virginie Boone
## 4160 Matt Kettmann
## 4161 Jim Gordon
## 4162 Jim Gordon
## 4163 Roger Voss
## 4164 Kerin O’Keefe
## 4165 Roger Voss
## 4166 Matt Kettmann
## 4167 Kerin O’Keefe
## 4168 Paul Gregutt
## 4169 Sean P. Sullivan
## 4170 Anna Lee C. Iijima
## 4171 Jim Gordon
## 4172 Alexander Peartree
## 4173 Sean P. Sullivan
## 4174 Virginie Boone
## 4175 Virginie Boone
## 4176 Matt Kettmann
## 4177 Virginie Boone
## 4178 Sean P. Sullivan
## 4179 Sean P. Sullivan
## 4180 Sean P. Sullivan
## 4181 Alexander Peartree
## 4182 Anna Lee C. Iijima
## 4183 Michael Schachner
## 4184 Roger Voss
## 4185 Roger Voss
## 4186 Kerin O’Keefe
## 4187 Virginie Boone
## 4188 Matt Kettmann
## 4189 Anna Lee C. Iijima
## 4190 Anna Lee C. Iijima
## 4191 Kerin O’Keefe
## 4192 Virginie Boone
## 4193 Michael Schachner
## 4194 Matt Kettmann
## 4195 Matt Kettmann
## 4196 Sean P. Sullivan
## 4197 Michael Schachner
## 4198 Roger Voss
## 4199 Michael Schachner
## 4200 Michael Schachner
## 4201 Virginie Boone
## 4202 Jim Gordon
## 4203 Kerin O’Keefe
## 4204 Matt Kettmann
## 4205 Roger Voss
## 4206 Sean P. Sullivan
## 4207 Lauren Buzzeo
## 4208 Michael Schachner
## 4209 Roger Voss
## 4210 Kerin O’Keefe
## 4211 Michael Schachner
## 4212 Roger Voss
## 4213 Roger Voss
## 4214 Roger Voss
## 4215 Matt Kettmann
## 4216 Anna Lee C. Iijima
## 4217 Virginie Boone
## 4218 Kerin O’Keefe
## 4219 Roger Voss
## 4220 Michael Schachner
## 4221 Virginie Boone
## 4222 Kerin O’Keefe
## 4223 Kerin O’Keefe
## 4224 Michael Schachner
## 4225 Matt Kettmann
## 4226 Roger Voss
## 4227 Matt Kettmann
## 4228 Roger Voss
## 4229 Jim Gordon
## 4230 Virginie Boone
## 4231 Kerin O’Keefe
## 4232 Michael Schachner
## 4233 Anna Lee C. Iijima
## 4234 Sean P. Sullivan
## 4235 Sean P. Sullivan
## 4236 Joe Czerwinski
## 4237 Matt Kettmann
## 4238 Virginie Boone
## 4239 Virginie Boone
## 4240 Roger Voss
## 4241 Virginie Boone
## 4242 Michael Schachner
## 4243 Virginie Boone
## 4244 Mike DeSimone
## 4245 Sean P. Sullivan
## 4246 Jim Gordon
## 4247 Jim Gordon
## 4248 Michael Schachner
## 4249 Jim Gordon
## 4250 Jim Gordon
## 4251 Sean P. Sullivan
## 4252 Sean P. Sullivan
## 4253 Michael Schachner
## 4254 Jim Gordon
## 4255 Sean P. Sullivan
## 4256 Matt Kettmann
## 4257 Jim Gordon
## 4258 Michael Schachner
## 4259 Kerin O’Keefe
## 4260 Michael Schachner
## 4261 Sean P. Sullivan
## 4262 Sean P. Sullivan
## 4263 Roger Voss
## 4264 Virginie Boone
## 4265 Michael Schachner
## 4266 Roger Voss
## 4267 Roger Voss
## 4268 Virginie Boone
## 4269 Sean P. Sullivan
## 4270 Virginie Boone
## 4271 Jim Gordon
## 4272 Joe Czerwinski
## 4273 Anna Lee C. Iijima
## 4274 Kerin O’Keefe
## 4275 Jim Gordon
## 4276 Sean P. Sullivan
## 4277 Sean P. Sullivan
## 4278 Roger Voss
## 4279 Roger Voss
## 4280 Roger Voss
## 4281 Virginie Boone
## 4282 Virginie Boone
## 4283 Roger Voss
## 4284 Virginie Boone
## 4285 Roger Voss
## 4286 Michael Schachner
## 4287 Michael Schachner
## 4288 Michael Schachner
## 4289 Roger Voss
## 4290
## 4291
## 4292
## 4293
## 4294 Michael Schachner
## 4295
## 4296 Susan Kostrzewa
## 4297 Paul Gregutt
## 4298
## 4299
## 4300 Paul Gregutt
## 4301
## 4302 Paul Gregutt
## 4303 Roger Voss
## 4304 Roger Voss
## 4305
## 4306
## 4307 Joe Czerwinski
## 4308
## 4309
## 4310
## 4311
## 4312 Michael Schachner
## 4313
## 4314 Roger Voss
## 4315 Michael Schachner
## 4316 Roger Voss
## 4317
## 4318 Roger Voss
## 4319 Roger Voss
## 4320 Paul Gregutt
## 4321
## 4322 Michael Schachner
## 4323
## 4324
## 4325
## 4326 Roger Voss
## 4327 Paul Gregutt
## 4328 Paul Gregutt
## 4329 Roger Voss
## 4330 Michael Schachner
## 4331
## 4332
## 4333
## 4334 Joe Czerwinski
## 4335 Michael Schachner
## 4336 Virginie Boone
## 4337 Michael Schachner
## 4338 Virginie Boone
## 4339 Virginie Boone
## 4340 Kerin O’Keefe
## 4341 Paul Gregutt
## 4342 Paul Gregutt
## 4343 Paul Gregutt
## 4344 Virginie Boone
## 4345 Virginie Boone
## 4346 Paul Gregutt
## 4347 Jim Gordon
## 4348 Virginie Boone
## 4349 Matt Kettmann
## 4350 Paul Gregutt
## 4351 Virginie Boone
## 4352 Virginie Boone
## 4353 Kerin O’Keefe
## 4354 Virginie Boone
## 4355 Michael Schachner
## 4356 Kerin O’Keefe
## 4357 Roger Voss
## 4358 Roger Voss
## 4359 Roger Voss
## 4360 Roger Voss
## 4361 Roger Voss
## 4362 Roger Voss
## 4363 Roger Voss
## 4364 Roger Voss
## 4365 Roger Voss
## 4366
## 4367
## 4368 Michael Schachner
## 4369 Roger Voss
## 4370 Michael Schachner
## 4371
## 4372 Roger Voss
## 4373 Roger Voss
## 4374 Roger Voss
## 4375
## 4376 Paul Gregutt
## 4377
## 4378 Roger Voss
## 4379 Michael Schachner
## 4380 Roger Voss
## 4381 Paul Gregutt
## 4382 Paul Gregutt
## 4383 Roger Voss
## 4384 Roger Voss
## 4385 Roger Voss
## 4386 Roger Voss
## 4387 Roger Voss
## 4388 Roger Voss
## 4389 Roger Voss
## 4390 Sean P. Sullivan
## 4391 Sean P. Sullivan
## 4392 Sean P. Sullivan
## 4393 Jim Gordon
## 4394 Sean P. Sullivan
## 4395 Sean P. Sullivan
## 4396 Sean P. Sullivan
## 4397 Jim Gordon
## 4398 Roger Voss
## 4399 Roger Voss
## 4400 Virginie Boone
## 4401 Anna Lee C. Iijima
## 4402 Roger Voss
## 4403 Roger Voss
## 4404 Kerin O’Keefe
## 4405 Roger Voss
## 4406 Anna Lee C. Iijima
## 4407 Michael Schachner
## 4408 Anna Lee C. Iijima
## 4409 Virginie Boone
## 4410 Roger Voss
## 4411 Sean P. Sullivan
## 4412 Sean P. Sullivan
## 4413 Sean P. Sullivan
## 4414 Roger Voss
## 4415 Matt Kettmann
## 4416 Michael Schachner
## 4417 Kerin O’Keefe
## 4418 Sean P. Sullivan
## 4419 Sean P. Sullivan
## 4420 Sean P. Sullivan
## 4421 Michael Schachner
## 4422 Matt Kettmann
## 4423 Jim Gordon
## 4424 Michael Schachner
## 4425 Sean P. Sullivan
## 4426 Kerin O’Keefe
## 4427 Matt Kettmann
## 4428 Matt Kettmann
## 4429 Kerin O’Keefe
## 4430 Roger Voss
## 4431 Roger Voss
## 4432 Jim Gordon
## 4433 Kerin O’Keefe
## 4434 Roger Voss
## 4435 Roger Voss
## 4436 Roger Voss
## 4437 Roger Voss
## 4438 Anna Lee C. Iijima
## 4439 Matt Kettmann
## 4440 Roger Voss
## 4441 Michael Schachner
## 4442 Kerin O’Keefe
## 4443 Sean P. Sullivan
## 4444 Kerin O’Keefe
## 4445 Paul Gregutt
## 4446
## 4447 Joe Czerwinski
## 4448 Michael Schachner
## 4449
## 4450 Roger Voss
## 4451 Paul Gregutt
## 4452 Virginie Boone
## 4453 Roger Voss
## 4454 Roger Voss
## 4455 Virginie Boone
## 4456
## 4457
## 4458
## 4459
## 4460 Michael Schachner
## 4461 Michael Schachner
## 4462 Virginie Boone
## 4463
## 4464
## 4465
## 4466
## 4467 Virginie Boone
## 4468 Virginie Boone
## 4469 Sean P. Sullivan
## 4470 Kerin O’Keefe
## 4471 Sean P. Sullivan
## 4472 Virginie Boone
## 4473 Sean P. Sullivan
## 4474 Jim Gordon
## 4475 Michael Schachner
## 4476 Matt Kettmann
## 4477 Sean P. Sullivan
## 4478 Sean P. Sullivan
## 4479 Sean P. Sullivan
## 4480 Roger Voss
## 4481 Kerin O’Keefe
## 4482 Roger Voss
## 4483 Sean P. Sullivan
## 4484 Roger Voss
## 4485 Roger Voss
## 4486 Matt Kettmann
## 4487 Matt Kettmann
## 4488 Virginie Boone
## 4489 Matt Kettmann
## 4490 Matt Kettmann
## 4491 Joe Czerwinski
## 4492 Joe Czerwinski
## 4493 Virginie Boone
## 4494 Virginie Boone
## 4495 Roger Voss
## 4496 Sean P. Sullivan
## 4497 Virginie Boone
## 4498 Roger Voss
## 4499 Lauren Buzzeo
## 4500 Lauren Buzzeo
## 4501 Lauren Buzzeo
## 4502 Lauren Buzzeo
## 4503 Virginie Boone
## 4504 Kerin O’Keefe
## 4505 Virginie Boone
## 4506 Virginie Boone
## 4507 Matt Kettmann
## 4508 Virginie Boone
## 4509 Virginie Boone
## 4510 Virginie Boone
## 4511 Virginie Boone
## 4512 Virginie Boone
## 4513 Matt Kettmann
## 4514 Kerin O’Keefe
## 4515 Virginie Boone
## 4516 Kerin O’Keefe
## 4517 Virginie Boone
## 4518 Matt Kettmann
## 4519 Virginie Boone
## 4520 Roger Voss
## 4521 Virginie Boone
## 4522 Virginie Boone
## 4523 Kerin O’Keefe
## 4524 Kerin O’Keefe
## 4525 Kerin O’Keefe
## 4526 Matt Kettmann
## 4527 Roger Voss
## 4528 Kerin O’Keefe
## 4529 Michael Schachner
## 4530 Virginie Boone
## 4531
## 4532
## 4533 Michael Schachner
## 4534 Virginie Boone
## 4535
## 4536
## 4537
## 4538
## 4539
## 4540
## 4541
## 4542
## 4543 Roger Voss
## 4544
## 4545 Virginie Boone
## 4546 Virginie Boone
## 4547
## 4548 Roger Voss
## 4549 Michael Schachner
## 4550 Virginie Boone
## 4551 Virginie Boone
## 4552 Virginie Boone
## 4553 Michael Schachner
## 4554
## 4555 Michael Schachner
## 4556 Michael Schachner
## 4557
## 4558 Michael Schachner
## 4559 Michael Schachner
## 4560 Roger Voss
## 4561 Paul Gregutt
## 4562 Roger Voss
## 4563 Roger Voss
## 4564 Roger Voss
## 4565 Matt Kettmann
## 4566 Paul Gregutt
## 4567 Jim Gordon
## 4568 Kerin O’Keefe
## 4569 Kerin O’Keefe
## 4570 Michael Schachner
## 4571 Michael Schachner
## 4572 Roger Voss
## 4573 Roger Voss
## 4574 Kerin O’Keefe
## 4575 Paul Gregutt
## 4576 Roger Voss
## 4577 Roger Voss
## 4578 Roger Voss
## 4579 Michael Schachner
## 4580 Roger Voss
## 4581 Roger Voss
## 4582 Roger Voss
## 4583 Roger Voss
## 4584 Roger Voss
## 4585 Paul Gregutt
## 4586 Kerin O’Keefe
## 4587 Roger Voss
## 4588 Roger Voss
## 4589 Michael Schachner
## 4590
## 4591
## 4592
## 4593
## 4594
## 4595
## 4596
## 4597
## 4598
## 4599
## 4600
## 4601 Anna Lee C. Iijima
## 4602 Anna Lee C. Iijima
## 4603
## 4604
## 4605 Michael Schachner
## 4606 Joe Czerwinski
## 4607
## 4608
## 4609
## 4610
## 4611 Joe Czerwinski
## 4612 Michael Schachner
## 4613 Michael Schachner
## 4614 Michael Schachner
## 4615 Anna Lee C. Iijima
## 4616 Anna Lee C. Iijima
## 4617 Michael Schachner
## 4618
## 4619 Kerin O’Keefe
## 4620 Sean P. Sullivan
## 4621 Matt Kettmann
## 4622 Virginie Boone
## 4623 Virginie Boone
## 4624 Joe Czerwinski
## 4625 Michael Schachner
## 4626 Kerin O’Keefe
## 4627 Kerin O’Keefe
## 4628 Kerin O’Keefe
## 4629 Paul Gregutt
## 4630 Virginie Boone
## 4631 Kerin O’Keefe
## 4632 Kerin O’Keefe
## 4633 Roger Voss
## 4634 Michael Schachner
## 4635 Virginie Boone
## 4636 Roger Voss
## 4637 Paul Gregutt
## 4638 Paul Gregutt
## 4639 Michael Schachner
## 4640 Virginie Boone
## 4641 Virginie Boone
## 4642 Virginie Boone
## 4643 Roger Voss
## 4644 Roger Voss
## 4645 Roger Voss
## 4646 Roger Voss
## 4647 Roger Voss
## 4648 Roger Voss
## 4649 Roger Voss
## 4650 Roger Voss
## 4651 Roger Voss
## 4652 Roger Voss
## 4653 Roger Voss
## 4654
## 4655 Roger Voss
## 4656 Roger Voss
## 4657 Roger Voss
## 4658 Susan Kostrzewa
## 4659 Michael Schachner
## 4660 Susan Kostrzewa
## 4661 Roger Voss
## 4662 Roger Voss
## 4663 Roger Voss
## 4664 Roger Voss
## 4665 Roger Voss
## 4666 Roger Voss
## 4667 Roger Voss
## 4668
## 4669 Paul Gregutt
## 4670
## 4671 Virginie Boone
## 4672 Matt Kettmann
## 4673 Anna Lee C. Iijima
## 4674 Virginie Boone
## 4675 Jim Gordon
## 4676 Paul Gregutt
## 4677 Virginie Boone
## 4678 Jim Gordon
## 4679 Anna Lee C. Iijima
## 4680 Anna Lee C. Iijima
## 4681 Paul Gregutt
## 4682 Virginie Boone
## 4683 Michael Schachner
## 4684 Virginie Boone
## 4685 Matt Kettmann
## 4686 Virginie Boone
## 4687 Jim Gordon
## 4688 Jim Gordon
## 4689 Jim Gordon
## 4690 Matt Kettmann
## 4691 Matt Kettmann
## 4692 Jim Gordon
## 4693 Michael Schachner
## 4694 Matt Kettmann
## 4695 Virginie Boone
## 4696 Matt Kettmann
## 4697 Paul Gregutt
## 4698 Virginie Boone
## 4699 Michael Schachner
## 4700 Michael Schachner
## 4701 Roger Voss
## 4702 Roger Voss
## 4703 Roger Voss
## 4704 Paul Gregutt
## 4705 Paul Gregutt
## 4706 Kerin O’Keefe
## 4707 Kerin O’Keefe
## 4708 Anna Lee C. Iijima
## 4709 Michael Schachner
## 4710 Kerin O’Keefe
## 4711 Kerin O’Keefe
## 4712 Michael Schachner
## 4713 Virginie Boone
## 4714 Kerin O’Keefe
## 4715 Anna Lee C. Iijima
## 4716 Anna Lee C. Iijima
## 4717 Kerin O’Keefe
## 4718 Roger Voss
## 4719 Virginie Boone
## 4720 Paul Gregutt
## 4721 Roger Voss
## 4722 Roger Voss
## 4723 Anna Lee C. Iijima
## 4724 Joe Czerwinski
## 4725 Mike DeSimone
## 4726 Michael Schachner
## 4727 Sean P. Sullivan
## 4728 Paul Gregutt
## 4729 Matt Kettmann
## 4730 Roger Voss
## 4731 Paul Gregutt
## 4732 Paul Gregutt
## 4733
## 4734
## 4735 Paul Gregutt
## 4736 Paul Gregutt
## 4737
## 4738 Paul Gregutt
## 4739
## 4740
## 4741 Paul Gregutt
## 4742
## 4743 Paul Gregutt
## 4744 Paul Gregutt
## 4745 Paul Gregutt
## 4746
## 4747
## 4748
## 4749
## 4750
## 4751
## 4752 Paul Gregutt
## 4753
## 4754 Paul Gregutt
## 4755 Paul Gregutt
## 4756
## 4757
## 4758
## 4759
## 4760 Paul Gregutt
## 4761 Michael Schachner
## 4762
## 4763 Kerin O’Keefe
## 4764 Anne Krebiehl MW
## 4765 Virginie Boone
## 4766 Anne Krebiehl MW
## 4767 Roger Voss
## 4768 Roger Voss
## 4769 Roger Voss
## 4770 Paul Gregutt
## 4771 Kerin O’Keefe
## 4772 Kerin O’Keefe
## 4773 Paul Gregutt
## 4774 Michael Schachner
## 4775 Michael Schachner
## 4776 Kerin O’Keefe
## 4777 Michael Schachner
## 4778 Anne Krebiehl MW
## 4779
## 4780 Anne Krebiehl MW
## 4781
## 4782 Kerin O’Keefe
## 4783 Anne Krebiehl MW
## 4784 Anne Krebiehl MW
## 4785 Michael Schachner
## 4786 Kerin O’Keefe
## 4787 Kerin O’Keefe
## 4788
## 4789 Susan Kostrzewa
## 4790
## 4791
## 4792
## 4793
## 4794
## 4795 Susan Kostrzewa
## 4796
## 4797 Michael Schachner
## 4798 Susan Kostrzewa
## 4799
## 4800
## 4801
## 4802
## 4803 Susan Kostrzewa
## 4804
## 4805
## 4806 Virginie Boone
## 4807 Michael Schachner
## 4808
## 4809 Roger Voss
## 4810 Paul Gregutt
## 4811
## 4812
## 4813 Lauren Buzzeo
## 4814
## 4815 Michael Schachner
## 4816 Roger Voss
## 4817
## 4818
## 4819
## 4820
## 4821 Paul Gregutt
## 4822 Paul Gregutt
## 4823
## 4824
## 4825
## 4826
## 4827
## 4828 Roger Voss
## 4829
## 4830 Paul Gregutt
## 4831
## 4832
## 4833
## 4834
## 4835
## 4836
## 4837 Roger Voss
## 4838 Matt Kettmann
## 4839 Kerin O’Keefe
## 4840 Roger Voss
## 4841 Roger Voss
## 4842 Michael Schachner
## 4843 Jim Gordon
## 4844 Virginie Boone
## 4845 Michael Schachner
## 4846 Paul Gregutt
## 4847 Kerin O’Keefe
## 4848 Kerin O’Keefe
## 4849 Roger Voss
## 4850 Anna Lee C. Iijima
## 4851 Kerin O’Keefe
## 4852 Kerin O’Keefe
## 4853 Roger Voss
## 4854 Kerin O’Keefe
## 4855 Roger Voss
## 4856 Roger Voss
## 4857 Michael Schachner
## 4858 Kerin O’Keefe
## 4859 Kerin O’Keefe
## 4860 Anna Lee C. Iijima
## 4861 Kerin O’Keefe
## 4862 Roger Voss
## 4863 Matt Kettmann
## 4864 Roger Voss
## 4865 Paul Gregutt
## 4866 Virginie Boone
## 4867 Roger Voss
## 4868 Matt Kettmann
## 4869 Jim Gordon
## 4870 Michael Schachner
## 4871 Paul Gregutt
## 4872 Kerin O’Keefe
## 4873 Paul Gregutt
## 4874 Kerin O’Keefe
## 4875 Susan Kostrzewa
## 4876 Anna Lee C. Iijima
## 4877 Kerin O’Keefe
## 4878 Virginie Boone
## 4879 Kerin O’Keefe
## 4880 Roger Voss
## 4881 Kerin O’Keefe
## 4882 Michael Schachner
## 4883 Michael Schachner
## 4884 Anna Lee C. Iijima
## 4885 Susan Kostrzewa
## 4886 Michael Schachner
## 4887 Kerin O’Keefe
## 4888 Paul Gregutt
## 4889 Matt Kettmann
## 4890 Virginie Boone
## 4891 Michael Schachner
## 4892 Michael Schachner
## 4893 Kerin O’Keefe
## 4894 Jim Gordon
## 4895 Jim Gordon
## 4896 Jim Gordon
## 4897 Mike DeSimone
## 4898 Roger Voss
## 4899 Virginie Boone
## 4900 Alexander Peartree
## 4901 Jim Gordon
## 4902 Virginie Boone
## 4903 Roger Voss
## 4904 Roger Voss
## 4905 Roger Voss
## 4906 Roger Voss
## 4907 Kerin O’Keefe
## 4908 Anna Lee C. Iijima
## 4909 Michael Schachner
## 4910 Roger Voss
## 4911 Roger Voss
## 4912 Anna Lee C. Iijima
## 4913 Michael Schachner
## 4914 Jim Gordon
## 4915 Kerin O’Keefe
## 4916 Kerin O’Keefe
## 4917 Roger Voss
## 4918 Roger Voss
## 4919 Paul Gregutt
## 4920 Sean P. Sullivan
## 4921 Jim Gordon
## 4922 Kerin O’Keefe
## 4923 Roger Voss
## 4924 Paul Gregutt
## 4925 Kerin O’Keefe
## 4926 Roger Voss
## 4927 Michael Schachner
## 4928 Lauren Buzzeo
## 4929 Joe Czerwinski
## 4930 Lauren Buzzeo
## 4931 Lauren Buzzeo
## 4932 Michael Schachner
## 4933 Michael Schachner
## 4934 Paul Gregutt
## 4935 Virginie Boone
## 4936 Virginie Boone
## 4937
## 4938 Paul Gregutt
## 4939 Roger Voss
## 4940 Roger Voss
## 4941
## 4942
## 4943 Joe Czerwinski
## 4944 Michael Schachner
## 4945 Virginie Boone
## 4946 Paul Gregutt
## 4947
## 4948 Roger Voss
## 4949 Roger Voss
## 4950
## 4951 Roger Voss
## 4952
## 4953
## 4954
## 4955 Michael Schachner
## 4956 Michael Schachner
## 4957 Roger Voss
## 4958
## 4959 Michael Schachner
## 4960
## 4961
## 4962
## 4963 Roger Voss
## 4964 Roger Voss
## 4965
## 4966
## 4967 Michael Schachner
## 4968 Michael Schachner
## 4969 Roger Voss
## 4970 Roger Voss
## 4971 Roger Voss
## 4972
## 4973 Michael Schachner
## 4974 Virginie Boone
## 4975
## 4976
## 4977
## 4978 Joe Czerwinski
## 4979 Paul Gregutt
## 4980
## 4981
## 4982 Roger Voss
## 4983 Roger Voss
## 4984 Lauren Buzzeo
## 4985
## 4986 Lauren Buzzeo
## 4987 Joe Czerwinski
## 4988 Michael Schachner
## 4989
## 4990 Susan Kostrzewa
## 4991
## 4992
## 4993 Joe Czerwinski
## 4994
## 4995
## 4996 Joe Czerwinski
## 4997
## 4998
## 4999
## 5000 Michael Schachner
## 5001 Joe Czerwinski
## 5002 Paul Gregutt
## 5003 Susan Kostrzewa
## 5004 Paul Gregutt
## 5005 Roger Voss
## 5006 Roger Voss
## 5007 Paul Gregutt
## 5008 Michael Schachner
## 5009 Paul Gregutt
## 5010 Paul Gregutt
## 5011
## 5012 Paul Gregutt
## 5013 Paul Gregutt
## 5014
## 5015
## 5016
## 5017
## 5018 Paul Gregutt
## 5019 Paul Gregutt
## 5020
## 5021 Paul Gregutt
## 5022
## 5023
## 5024 Paul Gregutt
## 5025
## 5026
## 5027 Paul Gregutt
## 5028
## 5029
## 5030
## 5031 Paul Gregutt
## 5032 Roger Voss
## 5033 Roger Voss
## 5034 Roger Voss
## 5035 Roger Voss
## 5036 Roger Voss
## 5037 Roger Voss
## 5038 Roger Voss
## 5039 Jim Gordon
## 5040 Jim Gordon
## 5041 Virginie Boone
## 5042 Virginie Boone
## 5043 Virginie Boone
## 5044 Michael Schachner
## 5045 Virginie Boone
## 5046 Kerin O’Keefe
## 5047 Virginie Boone
## 5048 Matt Kettmann
## 5049 Matt Kettmann
## 5050 Virginie Boone
## 5051 Roger Voss
## 5052 Jim Gordon
## 5053 Mike DeSimone
## 5054 Matt Kettmann
## 5055 Roger Voss
## 5056 Roger Voss
## 5057 Virginie Boone
## 5058 Sean P. Sullivan
## 5059 Sean P. Sullivan
## 5060 Paul Gregutt
## 5061 Virginie Boone
## 5062 Matt Kettmann
## 5063 Roger Voss
## 5064 Roger Voss
## 5065 Kerin O’Keefe
## 5066 Kerin O’Keefe
## 5067 Jim Gordon
## 5068 Michael Schachner
## 5069 Roger Voss
## 5070 Jim Gordon
## 5071 Kerin O’Keefe
## 5072
## 5073
## 5074 Michael Schachner
## 5075
## 5076 Michael Schachner
## 5077 Roger Voss
## 5078 Roger Voss
## 5079 Roger Voss
## 5080 Roger Voss
## 5081 Paul Gregutt
## 5082 Virginie Boone
## 5083 Michael Schachner
## 5084 Roger Voss
## 5085
## 5086 Jeff Jenssen
## 5087 Kerin O’Keefe
## 5088 Roger Voss
## 5089 Joe Czerwinski
## 5090
## 5091
## 5092 Paul Gregutt
## 5093 Michael Schachner
## 5094
## 5095 Michael Schachner
## 5096 Michael Schachner
## 5097 Paul Gregutt
## 5098 Roger Voss
## 5099 Sean P. Sullivan
## 5100
## 5101 Michael Schachner
## 5102 Roger Voss
## 5103
## 5104 Sean P. Sullivan
## 5105 Michael Schachner
## 5106 Paul Gregutt
## 5107
## 5108 Michael Schachner
## 5109
## 5110 Roger Voss
## 5111 Roger Voss
## 5112
## 5113 Kerin O’Keefe
## 5114 Kerin O’Keefe
## 5115
## 5116 Virginie Boone
## 5117 Anne Krebiehl MW
## 5118 Virginie Boone
## 5119 Matt Kettmann
## 5120 Matt Kettmann
## 5121 Matt Kettmann
## 5122 Jim Gordon
## 5123 Virginie Boone
## 5124 Anne Krebiehl MW
## 5125 Roger Voss
## 5126 Matt Kettmann
## 5127 Anne Krebiehl MW
## 5128 Virginie Boone
## 5129 Anne Krebiehl MW
## 5130 Paul Gregutt
## 5131 Roger Voss
## 5132 Michael Schachner
## 5133 Roger Voss
## 5134 Anne Krebiehl MW
## 5135 Jim Gordon
## 5136 Sean P. Sullivan
## 5137 Virginie Boone
## 5138 Kerin O’Keefe
## 5139 Anna Lee C. Iijima
## 5140 Virginie Boone
## 5141 Michael Schachner
## 5142 Anne Krebiehl MW
## 5143 Matt Kettmann
## 5144 Virginie Boone
## 5145 Anne Krebiehl MW
## 5146
## 5147 Michael Schachner
## 5148 Roger Voss
## 5149 Roger Voss
## 5150
## 5151 Paul Gregutt
## 5152
## 5153 Michael Schachner
## 5154
## 5155
## 5156
## 5157 Joe Czerwinski
## 5158 Joe Czerwinski
## 5159 Roger Voss
## 5160 Paul Gregutt
## 5161
## 5162 Paul Gregutt
## 5163 Michael Schachner
## 5164 Paul Gregutt
## 5165 Michael Schachner
## 5166
## 5167
## 5168
## 5169 Anna Lee C. Iijima
## 5170 Paul Gregutt
## 5171 Michael Schachner
## 5172
## 5173
## 5174 Paul Gregutt
## 5175
## 5176 Roger Voss
## 5177 Joe Czerwinski
## 5178
## 5179
## 5180 Paul Gregutt
## 5181 Kerin O’Keefe
## 5182
## 5183
## 5184 Kerin O’Keefe
## 5185 Kerin O’Keefe
## 5186 Michael Schachner
## 5187 Roger Voss
## 5188 Roger Voss
## 5189 Roger Voss
## 5190
## 5191 Kerin O’Keefe
## 5192 Michael Schachner
## 5193 Roger Voss
## 5194 Anna Lee C. Iijima
## 5195
## 5196
## 5197 Kerin O’Keefe
## 5198 Kerin O’Keefe
## 5199 Kerin O’Keefe
## 5200 Roger Voss
## 5201 Paul Gregutt
## 5202
## 5203 Mike DeSimone
## 5204 Roger Voss
## 5205
## 5206 Anna Lee C. Iijima
## 5207 Roger Voss
## 5208 Virginie Boone
## 5209 Kerin O’Keefe
## 5210 Virginie Boone
## 5211 Virginie Boone
## 5212 Anna Lee C. Iijima
## 5213 Michael Schachner
## 5214 Paul Gregutt
## 5215 Anna Lee C. Iijima
## 5216 Virginie Boone
## 5217 Virginie Boone
## 5218 Paul Gregutt
## 5219 Paul Gregutt
## 5220 Virginie Boone
## 5221 Kerin O’Keefe
## 5222 Paul Gregutt
## 5223 Paul Gregutt
## 5224 Paul Gregutt
## 5225 Paul Gregutt
## 5226 Joe Czerwinski
## 5227 Mike DeSimone
## 5228 Virginie Boone
## 5229 Matt Kettmann
## 5230 Roger Voss
## 5231 Roger Voss
## 5232 Virginie Boone
## 5233 Virginie Boone
## 5234 Virginie Boone
## 5235 Roger Voss
## 5236 Virginie Boone
## 5237 Kerin O’Keefe
## 5238 Kerin O’Keefe
## 5239 Virginie Boone
## 5240 Michael Schachner
## 5241 Joe Czerwinski
## 5242 Roger Voss
## 5243 Kerin O’Keefe
## 5244 Jim Gordon
## 5245 Sean P. Sullivan
## 5246 Roger Voss
## 5247 Roger Voss
## 5248 Roger Voss
## 5249 Kerin O’Keefe
## 5250 Kerin O’Keefe
## 5251 Michael Schachner
## 5252 Kerin O’Keefe
## 5253 Virginie Boone
## 5254 Paul Gregutt
## 5255 Virginie Boone
## 5256 Roger Voss
## 5257 Virginie Boone
## 5258 Roger Voss
## 5259 Sean P. Sullivan
## 5260 Jim Gordon
## 5261 Paul Gregutt
## 5262 Roger Voss
## 5263
## 5264 Susan Kostrzewa
## 5265 Kerin O’Keefe
## 5266 Kerin O’Keefe
## 5267
## 5268 Kerin O’Keefe
## 5269 Virginie Boone
## 5270 Roger Voss
## 5271 Roger Voss
## 5272 Roger Voss
## 5273 Paul Gregutt
## 5274
## 5275 Kerin O’Keefe
## 5276 Anna Lee C. Iijima
## 5277 Roger Voss
## 5278 Michael Schachner
## 5279 Anne Krebiehl MW
## 5280 Anna Lee C. Iijima
## 5281 Anna Lee C. Iijima
## 5282 Lauren Buzzeo
## 5283 Anna Lee C. Iijima
## 5284 Anna Lee C. Iijima
## 5285 Lauren Buzzeo
## 5286 Kerin O’Keefe
## 5287
## 5288 Paul Gregutt
## 5289 Sean P. Sullivan
## 5290 Anne Krebiehl MW
## 5291 Joe Czerwinski
## 5292 Joe Czerwinski
## 5293
## 5294 Joe Czerwinski
## 5295 Joe Czerwinski
## 5296 Virginie Boone
## 5297 Michael Schachner
## 5298
## 5299
## 5300
## 5301 Michael Schachner
## 5302 Joe Czerwinski
## 5303 Lauren Buzzeo
## 5304 Paul Gregutt
## 5305 Michael Schachner
## 5306 Joe Czerwinski
## 5307
## 5308 Lauren Buzzeo
## 5309 Michael Schachner
## 5310
## 5311
## 5312 Michael Schachner
## 5313
## 5314 Paul Gregutt
## 5315 Michael Schachner
## 5316 Michael Schachner
## 5317 Michael Schachner
## 5318 Joe Czerwinski
## 5319
## 5320 Roger Voss
## 5321
## 5322
## 5323 Michael Schachner
## 5324
## 5325 Michael Schachner
## 5326 Roger Voss
## 5327 Roger Voss
## 5328 Paul Gregutt
## 5329 Virginie Boone
## 5330
## 5331 Roger Voss
## 5332 Roger Voss
## 5333 Paul Gregutt
## 5334
## 5335
## 5336 Michael Schachner
## 5337
## 5338
## 5339
## 5340
## 5341 Roger Voss
## 5342 Roger Voss
## 5343 Roger Voss
## 5344 Virginie Boone
## 5345
## 5346
## 5347 Matt Kettmann
## 5348 Anne Krebiehl MW
## 5349 Anne Krebiehl MW
## 5350 Kerin O’Keefe
## 5351 Jim Gordon
## 5352 Matt Kettmann
## 5353 Matt Kettmann
## 5354 Anne Krebiehl MW
## 5355 Joe Czerwinski
## 5356 Joe Czerwinski
## 5357 Virginie Boone
## 5358 Anne Krebiehl MW
## 5359 Virginie Boone
## 5360 Anne Krebiehl MW
## 5361 Sean P. Sullivan
## 5362 Kerin O’Keefe
## 5363 Sean P. Sullivan
## 5364 Joe Czerwinski
## 5365 Anna Lee C. Iijima
## 5366 Michael Schachner
## 5367 Joe Czerwinski
## 5368 Lauren Buzzeo
## 5369 Kerin O’Keefe
## 5370 Joe Czerwinski
## 5371 Kerin O’Keefe
## 5372 Kerin O’Keefe
## 5373 Kerin O’Keefe
## 5374 Sean P. Sullivan
## 5375 Kerin O’Keefe
## 5376 Roger Voss
## 5377 Virginie Boone
## 5378
## 5379 Roger Voss
## 5380
## 5381 Roger Voss
## 5382 Anna Lee C. Iijima
## 5383
## 5384
## 5385
## 5386 Michael Schachner
## 5387
## 5388 Virginie Boone
## 5389 Roger Voss
## 5390
## 5391
## 5392
## 5393
## 5394 Michael Schachner
## 5395 Roger Voss
## 5396 Roger Voss
## 5397 Roger Voss
## 5398
## 5399
## 5400
## 5401 Kerin O’Keefe
## 5402 Michael Schachner
## 5403 Roger Voss
## 5404
## 5405
## 5406 Michael Schachner
## 5407 Roger Voss
## 5408 Jeff Jenssen
## 5409 Paul Gregutt
## 5410 Michael Schachner
## 5411 Roger Voss
## 5412 Roger Voss
## 5413 Michael Schachner
## 5414 Roger Voss
## 5415 Kerin O’Keefe
## 5416 Roger Voss
## 5417 Mike DeSimone
## 5418 Kerin O’Keefe
## 5419 Roger Voss
## 5420 Roger Voss
## 5421 Joe Czerwinski
## 5422 Jim Gordon
## 5423 Paul Gregutt
## 5424 Virginie Boone
## 5425 Kerin O’Keefe
## 5426 Michael Schachner
## 5427 Jim Gordon
## 5428 Roger Voss
## 5429 Paul Gregutt
## 5430 Michael Schachner
## 5431 Paul Gregutt
## 5432 Roger Voss
## 5433 Jim Gordon
## 5434 Matt Kettmann
## 5435 Michael Schachner
## 5436 Virginie Boone
## 5437 Michael Schachner
## 5438 Michael Schachner
## 5439
## 5440 Michael Schachner
## 5441 Roger Voss
## 5442
## 5443 Anna Lee C. Iijima
## 5444 Virginie Boone
## 5445
## 5446 Roger Voss
## 5447
## 5448 Virginie Boone
## 5449
## 5450
## 5451 Roger Voss
## 5452
## 5453
## 5454 Roger Voss
## 5455 Roger Voss
## 5456
## 5457
## 5458
## 5459
## 5460 Anna Lee C. Iijima
## 5461 Roger Voss
## 5462
## 5463
## 5464 Roger Voss
## 5465
## 5466
## 5467 Michael Schachner
## 5468 Michael Schachner
## 5469
## 5470 Paul Gregutt
## 5471
## 5472
## 5473 Michael Schachner
## 5474
## 5475
## 5476
## 5477 Virginie Boone
## 5478
## 5479 Michael Schachner
## 5480 Paul Gregutt
## 5481 Sean P. Sullivan
## 5482 Sean P. Sullivan
## 5483 Paul Gregutt
## 5484
## 5485 Michael Schachner
## 5486
## 5487 Roger Voss
## 5488 Roger Voss
## 5489 Roger Voss
## 5490
## 5491 Roger Voss
## 5492 Kerin O’Keefe
## 5493 Anne Krebiehl MW
## 5494 Anne Krebiehl MW
## 5495 Paul Gregutt
## 5496
## 5497
## 5498 Anne Krebiehl MW
## 5499 Michael Schachner
## 5500 Roger Voss
## 5501
## 5502
## 5503 Kerin O’Keefe
## 5504 Anne Krebiehl MW
## 5505 Anne Krebiehl MW
## 5506 Roger Voss
## 5507
## 5508 Anne Krebiehl MW
## 5509 Paul Gregutt
## 5510 Anne Krebiehl MW
## 5511 Anne Krebiehl MW
## 5512 Kerin O’Keefe
## 5513 Michael Schachner
## 5514 Anne Krebiehl MW
## 5515 Anne Krebiehl MW
## 5516 Michael Schachner
## 5517 Jim Gordon
## 5518 Roger Voss
## 5519 Michael Schachner
## 5520 Michael Schachner
## 5521 Roger Voss
## 5522 Michael Schachner
## 5523 Michael Schachner
## 5524 Michael Schachner
## 5525 Kerin O’Keefe
## 5526 Michael Schachner
## 5527 Michael Schachner
## 5528 Jim Gordon
## 5529 Jim Gordon
## 5530 Michael Schachner
## 5531 Michael Schachner
## 5532 Michael Schachner
## 5533 Michael Schachner
## 5534 Michael Schachner
## 5535 Michael Schachner
## 5536 Michael Schachner
## 5537 Paul Gregutt
## 5538 Jim Gordon
## 5539 Michael Schachner
## 5540 Matt Kettmann
## 5541 Michael Schachner
## 5542 Michael Schachner
## 5543 Michael Schachner
## 5544 Michael Schachner
## 5545 Michael Schachner
## 5546 Joe Czerwinski
## 5547
## 5548
## 5549
## 5550 Lauren Buzzeo
## 5551
## 5552 Roger Voss
## 5553 Roger Voss
## 5554 Roger Voss
## 5555
## 5556 Michael Schachner
## 5557 Roger Voss
## 5558 Paul Gregutt
## 5559 Lauren Buzzeo
## 5560 Roger Voss
## 5561 Roger Voss
## 5562
## 5563
## 5564 Michael Schachner
## 5565 Virginie Boone
## 5566
## 5567
## 5568 Joe Czerwinski
## 5569
## 5570 Michael Schachner
## 5571
## 5572
## 5573 Roger Voss
## 5574 Lauren Buzzeo
## 5575
## 5576 Joe Czerwinski
## 5577 Michael Schachner
## 5578
## 5579
## 5580
## 5581 Susan Kostrzewa
## 5582
## 5583 Susan Kostrzewa
## 5584 Michael Schachner
## 5585
## 5586
## 5587 Michael Schachner
## 5588 Paul Gregutt
## 5589
## 5590
## 5591 Paul Gregutt
## 5592
## 5593
## 5594 Joe Czerwinski
## 5595 Virginie Boone
## 5596 Michael Schachner
## 5597
## 5598 Michael Schachner
## 5599 Anna Lee C. Iijima
## 5600 Joe Czerwinski
## 5601 Paul Gregutt
## 5602 Anna Lee C. Iijima
## 5603 Michael Schachner
## 5604 Virginie Boone
## 5605
## 5606 Anna Lee C. Iijima
## 5607 Anna Lee C. Iijima
## 5608
## 5609
## 5610
## 5611
## 5612 Anna Lee C. Iijima
## 5613 Anna Lee C. Iijima
## 5614
## 5615 Michael Schachner
## 5616 Joe Czerwinski
## 5617
## 5618
## 5619 Joe Czerwinski
## 5620 Roger Voss
## 5621 Michael Schachner
## 5622
## 5623 Roger Voss
## 5624 Joe Czerwinski
## 5625 Roger Voss
## 5626
## 5627 Roger Voss
## 5628 Michael Schachner
## 5629
## 5630
## 5631
## 5632
## 5633
## 5634
## 5635
## 5636
## 5637 Roger Voss
## 5638 Paul Gregutt
## 5639
## 5640
## 5641 Michael Schachner
## 5642
## 5643
## 5644
## 5645 Roger Voss
## 5646 Michael Schachner
## 5647 Paul Gregutt
## 5648 Roger Voss
## 5649 Anne Krebiehl MW
## 5650 Kerin O’Keefe
## 5651 Kerin O’Keefe
## 5652 Anne Krebiehl MW
## 5653 Anne Krebiehl MW
## 5654 Jim Gordon
## 5655 Sean P. Sullivan
## 5656 Virginie Boone
## 5657 Matt Kettmann
## 5658 Paul Gregutt
## 5659 Virginie Boone
## 5660 Roger Voss
## 5661 Matt Kettmann
## 5662 Kerin O’Keefe
## 5663 Sean P. Sullivan
## 5664 Virginie Boone
## 5665 Matt Kettmann
## 5666 Roger Voss
## 5667 Anne Krebiehl MW
## 5668 Joe Czerwinski
## 5669 Jim Gordon
## 5670 Jim Gordon
## 5671 Kerin O’Keefe
## 5672 Anne Krebiehl MW
## 5673 Virginie Boone
## 5674 Matt Kettmann
## 5675 Anne Krebiehl MW
## 5676 Sean P. Sullivan
## 5677 Virginie Boone
## 5678 Virginie Boone
## 5679 Paul Gregutt
## 5680 Paul Gregutt
## 5681 Paul Gregutt
## 5682 Roger Voss
## 5683 Roger Voss
## 5684
## 5685
## 5686
## 5687
## 5688
## 5689 Roger Voss
## 5690 Roger Voss
## 5691
## 5692
## 5693
## 5694 Roger Voss
## 5695 Roger Voss
## 5696 Kerin O’Keefe
## 5697 Paul Gregutt
## 5698 Paul Gregutt
## 5699 Paul Gregutt
## 5700 Paul Gregutt
## 5701 Kerin O’Keefe
## 5702
## 5703
## 5704 Anne Krebiehl MW
## 5705 Kerin O’Keefe
## 5706 Paul Gregutt
## 5707 Paul Gregutt
## 5708 Paul Gregutt
## 5709 Anne Krebiehl MW
## 5710 Michael Schachner
## 5711 Anne Krebiehl MW
## 5712 Sean P. Sullivan
## 5713
## 5714 Kerin O’Keefe
## 5715 Kerin O’Keefe
## 5716 Roger Voss
## 5717 Roger Voss
## 5718 Roger Voss
## 5719 Roger Voss
## 5720 Roger Voss
## 5721 Roger Voss
## 5722 Kerin O’Keefe
## 5723 Virginie Boone
## 5724 Jim Gordon
## 5725 Matt Kettmann
## 5726 Anne Krebiehl MW
## 5727 Kerin O’Keefe
## 5728 Matt Kettmann
## 5729 Virginie Boone
## 5730 Virginie Boone
## 5731 Sean P. Sullivan
## 5732 Roger Voss
## 5733 Virginie Boone
## 5734 Virginie Boone
## 5735 Roger Voss
## 5736 Roger Voss
## 5737 Roger Voss
## 5738 Kerin O’Keefe
## 5739 Matt Kettmann
## 5740 Matt Kettmann
## 5741 Virginie Boone
## 5742 Kerin O’Keefe
## 5743 Kerin O’Keefe
## 5744 Jim Gordon
## 5745 Matt Kettmann
## 5746 Anne Krebiehl MW
## 5747 Roger Voss
## 5748 Jim Gordon
## 5749 Sean P. Sullivan
## 5750 Joe Czerwinski
## 5751 Sean P. Sullivan
## 5752 Virginie Boone
## 5753 Matt Kettmann
## 5754 Roger Voss
## 5755 Virginie Boone
## 5756 Sean P. Sullivan
## 5757 Jim Gordon
## 5758 Matt Kettmann
## 5759 Virginie Boone
## 5760 Matt Kettmann
## 5761 Matt Kettmann
## 5762 Jeff Jenssen
## 5763 Jim Gordon
## 5764 Virginie Boone
## 5765 Anne Krebiehl MW
## 5766 Anne Krebiehl MW
## 5767 Anne Krebiehl MW
## 5768 Roger Voss
## 5769 Michael Schachner
## 5770 Matt Kettmann
## 5771 Matt Kettmann
## 5772 Matt Kettmann
## 5773 Matt Kettmann
## 5774 Jim Gordon
## 5775 Kerin O’Keefe
## 5776 Kerin O’Keefe
## 5777 Kerin O’Keefe
## 5778 Matt Kettmann
## 5779 Kerin O’Keefe
## 5780 Matt Kettmann
## 5781 Virginie Boone
## 5782 Roger Voss
## 5783 Roger Voss
## 5784 Roger Voss
## 5785 Roger Voss
## 5786 Lauren Buzzeo
## 5787 Michael Schachner
## 5788 Michael Schachner
## 5789 Lauren Buzzeo
## 5790 Lauren Buzzeo
## 5791 Jim Gordon
## 5792 Michael Schachner
## 5793 Virginie Boone
## 5794 Lauren Buzzeo
## 5795 Roger Voss
## 5796 Lauren Buzzeo
## 5797 Virginie Boone
## 5798 Lauren Buzzeo
## 5799 Michael Schachner
## 5800 Michael Schachner
## 5801 Michael Schachner
## 5802 Lauren Buzzeo
## 5803 Roger Voss
## 5804 Virginie Boone
## 5805 Lauren Buzzeo
## 5806 Jim Gordon
## 5807 Lauren Buzzeo
## 5808 Roger Voss
## 5809 Virginie Boone
## 5810 Roger Voss
## 5811 Roger Voss
## 5812 Roger Voss
## 5813 Roger Voss
## 5814 Michael Schachner
## 5815 Roger Voss
## 5816 Roger Voss
## 5817 Michael Schachner
## 5818 Michael Schachner
## 5819 Roger Voss
## 5820 Michael Schachner
## 5821 Michael Schachner
## 5822 Michael Schachner
## 5823 Roger Voss
## 5824 Michael Schachner
## 5825 Michael Schachner
## 5826 Roger Voss
## 5827 Roger Voss
## 5828 Roger Voss
## 5829 Roger Voss
## 5830 Michael Schachner
## 5831 Michael Schachner
## 5832
## 5833 Roger Voss
## 5834 Roger Voss
## 5835 Roger Voss
## 5836 Jim Gordon
## 5837 Kerin O’Keefe
## 5838 Matt Kettmann
## 5839 Virginie Boone
## 5840 Matt Kettmann
## 5841 Matt Kettmann
## 5842 Matt Kettmann
## 5843 Kerin O’Keefe
## 5844 Jim Gordon
## 5845 Sean P. Sullivan
## 5846 Sean P. Sullivan
## 5847 Sean P. Sullivan
## 5848 Jim Gordon
## 5849 Jim Gordon
## 5850 Roger Voss
## 5851 Roger Voss
## 5852 Roger Voss
## 5853 Michael Schachner
## 5854 Roger Voss
## 5855 Roger Voss
## 5856 Roger Voss
## 5857 Roger Voss
## 5858 Roger Voss
## 5859 Roger Voss
## 5860 Roger Voss
## 5861 Roger Voss
## 5862 Kerin O’Keefe
## 5863 Kerin O’Keefe
## 5864 Virginie Boone
## 5865 Virginie Boone
## 5866 Roger Voss
## 5867 Roger Voss
## 5868 Joe Czerwinski
## 5869 Paul Gregutt
## 5870 Virginie Boone
## 5871 Virginie Boone
## 5872 Virginie Boone
## 5873 Virginie Boone
## 5874 Virginie Boone
## 5875 Roger Voss
## 5876 Michael Schachner
## 5877 Virginie Boone
## 5878 Virginie Boone
## 5879 Matt Kettmann
## 5880 Anna Lee C. Iijima
## 5881 Virginie Boone
## 5882 Sean P. Sullivan
## 5883 Virginie Boone
## 5884 Roger Voss
## 5885 Virginie Boone
## 5886 Matt Kettmann
## 5887 Michael Schachner
## 5888 Virginie Boone
## 5889 Matt Kettmann
## 5890 Virginie Boone
## 5891 Anna Lee C. Iijima
## 5892 Michael Schachner
## 5893 Michael Schachner
## 5894 Paul Gregutt
## 5895
## 5896 Michael Schachner
## 5897 Michael Schachner
## 5898
## 5899
## 5900 Paul Gregutt
## 5901 Michael Schachner
## 5902 Michael Schachner
## 5903 Michael Schachner
## 5904 Michael Schachner
## 5905 Roger Voss
## 5906 Michael Schachner
## 5907 Michael Schachner
## 5908 Michael Schachner
## 5909 Michael Schachner
## 5910 Michael Schachner
## 5911 Roger Voss
## 5912 Roger Voss
## 5913
## 5914
## 5915 Joe Czerwinski
## 5916 Sean P. Sullivan
## 5917 Virginie Boone
## 5918 Kerin O’Keefe
## 5919 Anna Lee C. Iijima
## 5920 Matt Kettmann
## 5921 Virginie Boone
## 5922 Sean P. Sullivan
## 5923 Sean P. Sullivan
## 5924 Kerin O’Keefe
## 5925 Virginie Boone
## 5926 Sean P. Sullivan
## 5927 Sean P. Sullivan
## 5928 Sean P. Sullivan
## 5929 Virginie Boone
## 5930 Sean P. Sullivan
## 5931 Roger Voss
## 5932 Roger Voss
## 5933 Roger Voss
## 5934 Roger Voss
## 5935 Anna Lee C. Iijima
## 5936 Anna Lee C. Iijima
## 5937 Roger Voss
## 5938 Roger Voss
## 5939 Roger Voss
## 5940 Roger Voss
## 5941 Roger Voss
## 5942 Roger Voss
## 5943 Roger Voss
## 5944 Roger Voss
## 5945
## 5946 Paul Gregutt
## 5947 Roger Voss
## 5948
## 5949 Roger Voss
## 5950 Michael Schachner
## 5951 Michael Schachner
## 5952 Michael Schachner
## 5953
## 5954
## 5955
## 5956 Roger Voss
## 5957 Roger Voss
## 5958 Roger Voss
## 5959 Roger Voss
## 5960 Susan Kostrzewa
## 5961
## 5962
## 5963
## 5964
## 5965
## 5966
## 5967
## 5968 Anne Krebiehl MW
## 5969 Roger Voss
## 5970 Kerin O’Keefe
## 5971 Kerin O’Keefe
## 5972 Kerin O’Keefe
## 5973 Kerin O’Keefe
## 5974 Jim Gordon
## 5975 Kerin O’Keefe
## 5976 Jim Gordon
## 5977 Virginie Boone
## 5978 Anne Krebiehl MW
## 5979 Joe Czerwinski
## 5980 Michael Schachner
## 5981 Virginie Boone
## 5982 Kerin O’Keefe
## 5983 Michael Schachner
## 5984 Anne Krebiehl MW
## 5985 Jim Gordon
## 5986 Kerin O’Keefe
## 5987 Kerin O’Keefe
## 5988 Virginie Boone
## 5989 Kerin O’Keefe
## 5990 Matt Kettmann
## 5991 Jeff Jenssen
## 5992 Kerin O’Keefe
## 5993 Kerin O’Keefe
## 5994 Michael Schachner
## 5995 Roger Voss
## 5996 Roger Voss
## 5997 Jeff Jenssen
## 5998 Virginie Boone
## 5999 Jim Gordon
## 6000 Kerin O’Keefe
## 6001 Virginie Boone
## 6002 Jim Gordon
## 6003 Kerin O’Keefe
## 6004 Jim Gordon
## 6005 Virginie Boone
## 6006 Michael Schachner
## 6007 Virginie Boone
## 6008 Roger Voss
## 6009 Mike DeSimone
## 6010 Kerin O’Keefe
## 6011 Matt Kettmann
## 6012 Virginie Boone
## 6013 Matt Kettmann
## 6014 Roger Voss
## 6015 Paul Gregutt
## 6016 Kerin O’Keefe
## 6017 Jim Gordon
## 6018 Matt Kettmann
## 6019 Virginie Boone
## 6020 Matt Kettmann
## 6021 Kerin O’Keefe
## 6022 Michael Schachner
## 6023 Virginie Boone
## 6024 Virginie Boone
## 6025 Roger Voss
## 6026 Jim Gordon
## 6027 Sean P. Sullivan
## 6028
## 6029 Joe Czerwinski
## 6030
## 6031 Michael Schachner
## 6032
## 6033
## 6034
## 6035 Michael Schachner
## 6036
## 6037
## 6038
## 6039
## 6040
## 6041
## 6042 Michael Schachner
## 6043 Joe Czerwinski
## 6044
## 6045
## 6046 Michael Schachner
## 6047
## 6048 Joe Czerwinski
## 6049
## 6050
## 6051
## 6052 Michael Schachner
## 6053
## 6054 Michael Schachner
## 6055 Michael Schachner
## 6056
## 6057
## 6058 Kerin O’Keefe
## 6059 Roger Voss
## 6060 Anna Lee C. Iijima
## 6061 Mike DeSimone
## 6062 Sean P. Sullivan
## 6063 Sean P. Sullivan
## 6064 Anna Lee C. Iijima
## 6065 Kerin O’Keefe
## 6066 Michael Schachner
## 6067 Kerin O’Keefe
## 6068 Kerin O’Keefe
## 6069 Kerin O’Keefe
## 6070 Kerin O’Keefe
## 6071 Jim Gordon
## 6072 Roger Voss
## 6073 Virginie Boone
## 6074 Matt Kettmann
## 6075 Sean P. Sullivan
## 6076 Kerin O’Keefe
## 6077 Michael Schachner
## 6078 Kerin O’Keefe
## 6079 Matt Kettmann
## 6080 Anne Krebiehl MW
## 6081 Michael Schachner
## 6082 Kerin O’Keefe
## 6083 Kerin O’Keefe
## 6084 Sean P. Sullivan
## 6085 Sean P. Sullivan
## 6086 Mike DeSimone
## 6087 Mike DeSimone
## 6088 Jim Gordon
## 6089 Michael Schachner
## 6090 Virginie Boone
## 6091 Virginie Boone
## 6092 Michael Schachner
## 6093 Michael Schachner
## 6094 Sean P. Sullivan
## 6095 Virginie Boone
## 6096 Kerin O’Keefe
## 6097 Michael Schachner
## 6098 Michael Schachner
## 6099 Kerin O’Keefe
## 6100 Roger Voss
## 6101 Roger Voss
## 6102 Kerin O’Keefe
## 6103 Roger Voss
## 6104 Roger Voss
## 6105 Roger Voss
## 6106 Roger Voss
## 6107 Roger Voss
## 6108 Roger Voss
## 6109 Roger Voss
## 6110 Roger Voss
## 6111 Roger Voss
## 6112 Virginie Boone
## 6113 Kerin O’Keefe
## 6114 Virginie Boone
## 6115 Jeff Jenssen
## 6116 Roger Voss
## 6117 Virginie Boone
## 6118 Matt Kettmann
## 6119 Paul Gregutt
## 6120 Michael Schachner
## 6121 Michael Schachner
## 6122 Kerin O’Keefe
## 6123 Mike DeSimone
## 6124 Sean P. Sullivan
## 6125 Paul Gregutt
## 6126 Paul Gregutt
## 6127 Paul Gregutt
## 6128 Virginie Boone
## 6129 Matt Kettmann
## 6130 Roger Voss
## 6131 Roger Voss
## 6132 Paul Gregutt
## 6133 Matt Kettmann
## 6134 Roger Voss
## 6135 Kerin O’Keefe
## 6136 Virginie Boone
## 6137 Roger Voss
## 6138 Roger Voss
## 6139 Kerin O’Keefe
## 6140 Virginie Boone
## 6141 Kerin O’Keefe
## 6142 Matt Kettmann
## 6143 Matt Kettmann
## 6144 Paul Gregutt
## 6145 Kerin O’Keefe
## 6146 Matt Kettmann
## 6147 Virginie Boone
## 6148
## 6149 Joe Czerwinski
## 6150 Roger Voss
## 6151 Joe Czerwinski
## 6152 Paul Gregutt
## 6153 Roger Voss
## 6154 Joe Czerwinski
## 6155 Joe Czerwinski
## 6156 Michael Schachner
## 6157 Joe Czerwinski
## 6158
## 6159
## 6160
## 6161
## 6162 Roger Voss
## 6163 Roger Voss
## 6164
## 6165 Paul Gregutt
## 6166 Roger Voss
## 6167 Paul Gregutt
## 6168 Joe Czerwinski
## 6169 Roger Voss
## 6170 Roger Voss
## 6171 Virginie Boone
## 6172 Sean P. Sullivan
## 6173 Anna Lee C. Iijima
## 6174 Michael Schachner
## 6175 Kerin O’Keefe
## 6176 Kerin O’Keefe
## 6177 Michael Schachner
## 6178 Anna Lee C. Iijima
## 6179 Jim Gordon
## 6180 Roger Voss
## 6181 Lauren Buzzeo
## 6182 Lauren Buzzeo
## 6183 Matt Kettmann
## 6184 Michael Schachner
## 6185 Michael Schachner
## 6186 Matt Kettmann
## 6187 Michael Schachner
## 6188 Kerin O’Keefe
## 6189 Matt Kettmann
## 6190 Anna Lee C. Iijima
## 6191 Jim Gordon
## 6192 Kerin O’Keefe
## 6193 Sean P. Sullivan
## 6194 Roger Voss
## 6195 Roger Voss
## 6196 Kerin O’Keefe
## 6197 Roger Voss
## 6198 Sean P. Sullivan
## 6199 Anna Lee C. Iijima
## 6200 Anna Lee C. Iijima
## 6201 Michael Schachner
## 6202 Alexander Peartree
## 6203 Roger Voss
## 6204 Roger Voss
## 6205 Jim Gordon
## 6206 Michael Schachner
## 6207 Michael Schachner
## 6208 Roger Voss
## 6209 Alexander Peartree
## 6210 Roger Voss
## 6211 Paul Gregutt
## 6212 Virginie Boone
## 6213 Alexander Peartree
## 6214 Jim Gordon
## 6215 Roger Voss
## 6216 Roger Voss
## 6217 Virginie Boone
## 6218 Roger Voss
## 6219 Paul Gregutt
## 6220 Roger Voss
## 6221 Alexander Peartree
## 6222 Paul Gregutt
## 6223 Virginie Boone
## 6224 Roger Voss
## 6225 Virginie Boone
## 6226 Roger Voss
## 6227 Roger Voss
## 6228 Roger Voss
## 6229 Roger Voss
## 6230 Roger Voss
## 6231 Kerin O’Keefe
## 6232 Kerin O’Keefe
## 6233 Kerin O’Keefe
## 6234 Roger Voss
## 6235 Virginie Boone
## 6236 Paul Gregutt
## 6237 Matt Kettmann
## 6238 Matt Kettmann
## 6239 Roger Voss
## 6240 Roger Voss
## 6241 Roger Voss
## 6242 Anna Lee C. Iijima
## 6243 Jim Gordon
## 6244 Kerin O’Keefe
## 6245 Michael Schachner
## 6246 Anna Lee C. Iijima
## 6247 Michael Schachner
## 6248 Virginie Boone
## 6249 Paul Gregutt
## 6250 Roger Voss
## 6251 Kerin O’Keefe
## 6252 Roger Voss
## 6253 Kerin O’Keefe
## 6254 Roger Voss
## 6255 Roger Voss
## 6256 Roger Voss
## 6257 Virginie Boone
## 6258 Virginie Boone
## 6259 Virginie Boone
## 6260 Kerin O’Keefe
## 6261 Paul Gregutt
## 6262
## 6263 Paul Gregutt
## 6264
## 6265
## 6266
## 6267 Virginie Boone
## 6268 Paul Gregutt
## 6269 Paul Gregutt
## 6270
## 6271
## 6272
## 6273 Anna Lee C. Iijima
## 6274 Paul Gregutt
## 6275 Paul Gregutt
## 6276
## 6277
## 6278
## 6279 Paul Gregutt
## 6280
## 6281
## 6282 Paul Gregutt
## 6283
## 6284
## 6285
## 6286
## 6287
## 6288 Michael Schachner
## 6289
## 6290 Roger Voss
## 6291 Roger Voss
## 6292 Roger Voss
## 6293
## 6294
## 6295
## 6296 Michael Schachner
## 6297
## 6298 Roger Voss
## 6299
## 6300
## 6301
## 6302 Kerin O’Keefe
## 6303 Roger Voss
## 6304 Roger Voss
## 6305 Roger Voss
## 6306 Virginie Boone
## 6307 Virginie Boone
## 6308
## 6309 Kerin O’Keefe
## 6310 Kerin O’Keefe
## 6311 Michael Schachner
## 6312
## 6313 Virginie Boone
## 6314 Virginie Boone
## 6315 Kerin O’Keefe
## 6316 Kerin O’Keefe
## 6317 Roger Voss
## 6318 Roger Voss
## 6319 Virginie Boone
## 6320 Sean P. Sullivan
## 6321 Roger Voss
## 6322 Kerin O’Keefe
## 6323 Sean P. Sullivan
## 6324
## 6325 Anne Krebiehl MW
## 6326 Anne Krebiehl MW
## 6327 Paul Gregutt
## 6328 Paul Gregutt
## 6329 Lauren Buzzeo
## 6330 Lauren Buzzeo
## 6331 Matt Kettmann
## 6332 Anne Krebiehl MW
## 6333
## 6334
## 6335 Roger Voss
## 6336 Roger Voss
## 6337 Anne Krebiehl MW
## 6338 Kerin O’Keefe
## 6339 Roger Voss
## 6340 Matt Kettmann
## 6341 Matt Kettmann
## 6342 Jim Gordon
## 6343 Virginie Boone
## 6344 Michael Schachner
## 6345 Matt Kettmann
## 6346 Jim Gordon
## 6347 Matt Kettmann
## 6348 Anna Lee C. Iijima
## 6349 Roger Voss
## 6350 Sean P. Sullivan
## 6351 Virginie Boone
## 6352 Kerin O’Keefe
## 6353 Paul Gregutt
## 6354 Roger Voss
## 6355 Virginie Boone
## 6356 Kerin O’Keefe
## 6357 Kerin O’Keefe
## 6358 Roger Voss
## 6359 Matt Kettmann
## 6360 Joe Czerwinski
## 6361 Kerin O’Keefe
## 6362 Virginie Boone
## 6363 Roger Voss
## 6364 Roger Voss
## 6365 Kerin O’Keefe
## 6366 Jim Gordon
## 6367 Matt Kettmann
## 6368 Michael Schachner
## 6369 Kerin O’Keefe
## 6370 Kerin O’Keefe
## 6371 Sean P. Sullivan
## 6372 Roger Voss
## 6373 Roger Voss
## 6374 Joe Czerwinski
## 6375 Roger Voss
## 6376 Kerin O’Keefe
## 6377 Lauren Buzzeo
## 6378 Roger Voss
## 6379 Matt Kettmann
## 6380 Michael Schachner
## 6381 Lauren Buzzeo
## 6382 Jim Gordon
## 6383 Jim Gordon
## 6384 Virginie Boone
## 6385 Roger Voss
## 6386 Sean P. Sullivan
## 6387 Roger Voss
## 6388 Kerin O’Keefe
## 6389 Roger Voss
## 6390 Roger Voss
## 6391 Roger Voss
## 6392 Roger Voss
## 6393 Jim Gordon
## 6394 Anna Lee C. Iijima
## 6395 Michael Schachner
## 6396 Lauren Buzzeo
## 6397 Michael Schachner
## 6398 Kerin O’Keefe
## 6399 Michael Schachner
## 6400 Roger Voss
## 6401 Roger Voss
## 6402 Jim Gordon
## 6403 Jim Gordon
## 6404 Lauren Buzzeo
## 6405
## 6406
## 6407
## 6408 Roger Voss
## 6409 Roger Voss
## 6410
## 6411
## 6412
## 6413 Joe Czerwinski
## 6414 Susan Kostrzewa
## 6415 Joe Czerwinski
## 6416
## 6417
## 6418 Lauren Buzzeo
## 6419 Susan Kostrzewa
## 6420 Susan Kostrzewa
## 6421
## 6422
## 6423 Paul Gregutt
## 6424 Roger Voss
## 6425
## 6426 Roger Voss
## 6427 Roger Voss
## 6428 Roger Voss
## 6429 Roger Voss
## 6430 Roger Voss
## 6431 Roger Voss
## 6432
## 6433
## 6434 Roger Voss
## 6435 Roger Voss
## 6436 Roger Voss
## 6437
## 6438 Michael Schachner
## 6439 Roger Voss
## 6440
## 6441 Roger Voss
## 6442 Roger Voss
## 6443 Roger Voss
## 6444 Roger Voss
## 6445 Roger Voss
## 6446
## 6447 Roger Voss
## 6448 Roger Voss
## 6449
## 6450 Roger Voss
## 6451
## 6452 Paul Gregutt
## 6453
## 6454 Roger Voss
## 6455
## 6456 Paul Gregutt
## 6457 Paul Gregutt
## 6458 Paul Gregutt
## 6459
## 6460 Roger Voss
## 6461 Roger Voss
## 6462 Paul Gregutt
## 6463 Paul Gregutt
## 6464
## 6465 Michael Schachner
## 6466 Anna Lee C. Iijima
## 6467
## 6468 Paul Gregutt
## 6469 Roger Voss
## 6470
## 6471 Roger Voss
## 6472
## 6473
## 6474 Paul Gregutt
## 6475 Paul Gregutt
## 6476
## 6477 Paul Gregutt
## 6478 Roger Voss
## 6479
## 6480
## 6481 Roger Voss
## 6482 Roger Voss
## 6483 Michael Schachner
## 6484 Paul Gregutt
## 6485 Kerin O’Keefe
## 6486 Paul Gregutt
## 6487 Roger Voss
## 6488 Virginie Boone
## 6489 Michael Schachner
## 6490 Paul Gregutt
## 6491 Virginie Boone
## 6492 Michael Schachner
## 6493 Michael Schachner
## 6494 Michael Schachner
## 6495 Paul Gregutt
## 6496 Sean P. Sullivan
## 6497 Michael Schachner
## 6498 Kerin O’Keefe
## 6499 Michael Schachner
## 6500 Kerin O’Keefe
## 6501 Michael Schachner
## 6502 Roger Voss
## 6503 Paul Gregutt
## 6504 Roger Voss
## 6505 Michael Schachner
## 6506 Michael Schachner
## 6507 Michael Schachner
## 6508 Michael Schachner
## 6509 Michael Schachner
## 6510 Michael Schachner
## 6511 Roger Voss
## 6512 Michael Schachner
## 6513
## 6514 Roger Voss
## 6515
## 6516
## 6517 Anna Lee C. Iijima
## 6518
## 6519 Roger Voss
## 6520 Roger Voss
## 6521 Roger Voss
## 6522 Roger Voss
## 6523
## 6524 Michael Schachner
## 6525
## 6526
## 6527
## 6528
## 6529 Michael Schachner
## 6530 Michael Schachner
## 6531
## 6532
## 6533 Michael Schachner
## 6534
## 6535 Virginie Boone
## 6536 Virginie Boone
## 6537 Roger Voss
## 6538 Roger Voss
## 6539 Roger Voss
## 6540
## 6541 Jim Gordon
## 6542 Michael Schachner
## 6543 Sean P. Sullivan
## 6544 Michael Schachner
## 6545 Matt Kettmann
## 6546 Virginie Boone
## 6547 Anna Lee C. Iijima
## 6548 Alexander Peartree
## 6549 Michael Schachner
## 6550 Matt Kettmann
## 6551 Anna Lee C. Iijima
## 6552 Jim Gordon
## 6553 Michael Schachner
## 6554 Michael Schachner
## 6555 Michael Schachner
## 6556 Michael Schachner
## 6557 Michael Schachner
## 6558 Jim Gordon
## 6559 Michael Schachner
## 6560 Anna Lee C. Iijima
## 6561 Anna Lee C. Iijima
## 6562 Alexander Peartree
## 6563 Michael Schachner
## 6564 Alexander Peartree
## 6565 Michael Schachner
## 6566 Michael Schachner
## 6567 Joe Czerwinski
## 6568 Alexander Peartree
## 6569 Michael Schachner
## 6570 Roger Voss
## 6571
## 6572 Roger Voss
## 6573 Roger Voss
## 6574 Roger Voss
## 6575 Paul Gregutt
## 6576 Susan Kostrzewa
## 6577 Roger Voss
## 6578 Roger Voss
## 6579 Paul Gregutt
## 6580
## 6581 Paul Gregutt
## 6582
## 6583 Roger Voss
## 6584
## 6585
## 6586 Paul Gregutt
## 6587 Roger Voss
## 6588
## 6589
## 6590 Susan Kostrzewa
## 6591
## 6592
## 6593
## 6594 Roger Voss
## 6595
## 6596
## 6597
## 6598
## 6599 Roger Voss
## 6600 Roger Voss
## 6601 Roger Voss
## 6602
## 6603 Michael Schachner
## 6604
## 6605
## 6606 Michael Schachner
## 6607
## 6608 Joe Czerwinski
## 6609 Roger Voss
## 6610 Roger Voss
## 6611 Susan Kostrzewa
## 6612
## 6613
## 6614 Joe Czerwinski
## 6615 Susan Kostrzewa
## 6616
## 6617
## 6618 Roger Voss
## 6619
## 6620 Sean P. Sullivan
## 6621
## 6622
## 6623 Roger Voss
## 6624
## 6625
## 6626
## 6627
## 6628 Sean P. Sullivan
## 6629
## 6630
## 6631
## 6632
## 6633
## 6634
## 6635 Michael Schachner
## 6636 Michael Schachner
## 6637
## 6638 Virginie Boone
## 6639
## 6640 Michael Schachner
## 6641
## 6642
## 6643
## 6644
## 6645
## 6646
## 6647
## 6648 Roger Voss
## 6649 Joe Czerwinski
## 6650 Joe Czerwinski
## 6651
## 6652
## 6653 Roger Voss
## 6654
## 6655
## 6656
## 6657 Michael Schachner
## 6658
## 6659
## 6660 Roger Voss
## 6661 Michael Schachner
## 6662 Michael Schachner
## 6663 Joe Czerwinski
## 6664 Joe Czerwinski
## 6665 Roger Voss
## 6666
## 6667
## 6668 Roger Voss
## 6669 Paul Gregutt
## 6670 Matt Kettmann
## 6671 Matt Kettmann
## 6672 Matt Kettmann
## 6673 Paul Gregutt
## 6674 Mike DeSimone
## 6675 Paul Gregutt
## 6676 Paul Gregutt
## 6677 Sean P. Sullivan
## 6678 Roger Voss
## 6679 Roger Voss
## 6680 Kerin O’Keefe
## 6681 Virginie Boone
## 6682 Matt Kettmann
## 6683 Matt Kettmann
## 6684 Kerin O’Keefe
## 6685 Matt Kettmann
## 6686 Roger Voss
## 6687 Virginie Boone
## 6688 Paul Gregutt
## 6689 Virginie Boone
## 6690 Kerin O’Keefe
## 6691 Virginie Boone
## 6692 Roger Voss
## 6693 Kerin O’Keefe
## 6694 Virginie Boone
## 6695 Kerin O’Keefe
## 6696 Roger Voss
## 6697 Kerin O’Keefe
## 6698 Virginie Boone
## 6699 Michael Schachner
## 6700 Virginie Boone
## 6701 Anne Krebiehl MW
## 6702 Virginie Boone
## 6703 Sean P. Sullivan
## 6704 Jim Gordon
## 6705 Matt Kettmann
## 6706 Michael Schachner
## 6707 Sean P. Sullivan
## 6708 Kerin O’Keefe
## 6709 Virginie Boone
## 6710 Michael Schachner
## 6711 Joe Czerwinski
## 6712 Roger Voss
## 6713 Sean P. Sullivan
## 6714 Kerin O’Keefe
## 6715 Joe Czerwinski
## 6716 Roger Voss
## 6717 Kerin O’Keefe
## 6718 Sean P. Sullivan
## 6719 Anna Lee C. Iijima
## 6720 Virginie Boone
## 6721 Sean P. Sullivan
## 6722 Virginie Boone
## 6723 Virginie Boone
## 6724 Sean P. Sullivan
## 6725 Matt Kettmann
## 6726 Michael Schachner
## 6727
## 6728 Roger Voss
## 6729 Paul Gregutt
## 6730
## 6731 Roger Voss
## 6732 Roger Voss
## 6733
## 6734 Roger Voss
## 6735 Roger Voss
## 6736 Roger Voss
## 6737 Roger Voss
## 6738 Paul Gregutt
## 6739
## 6740
## 6741
## 6742
## 6743
## 6744 Roger Voss
## 6745 Roger Voss
## 6746 Roger Voss
## 6747 Paul Gregutt
## 6748 Virginie Boone
## 6749 Virginie Boone
## 6750
## 6751 Kerin O’Keefe
## 6752 Anne Krebiehl MW
## 6753 Michael Schachner
## 6754 Kerin O’Keefe
## 6755
## 6756
## 6757 Anne Krebiehl MW
## 6758 Kerin O’Keefe
## 6759 Paul Gregutt
## 6760 Kerin O’Keefe
## 6761 Anne Krebiehl MW
## 6762 Anne Krebiehl MW
## 6763 Anne Krebiehl MW
## 6764 Anne Krebiehl MW
## 6765 Anne Krebiehl MW
## 6766 Anna Lee C. Iijima
## 6767 Michael Schachner
## 6768 Michael Schachner
## 6769 Michael Schachner
## 6770 Kerin O’Keefe
## 6771 Kerin O’Keefe
## 6772 Roger Voss
## 6773 Roger Voss
## 6774 Roger Voss
## 6775 Roger Voss
## 6776 Roger Voss
## 6777 Roger Voss
## 6778 Paul Gregutt
## 6779 Susan Kostrzewa
## 6780 Michael Schachner
## 6781
## 6782 Roger Voss
## 6783 Susan Kostrzewa
## 6784 Susan Kostrzewa
## 6785
## 6786 Roger Voss
## 6787
## 6788 Michael Schachner
## 6789 Paul Gregutt
## 6790 Roger Voss
## 6791 Susan Kostrzewa
## 6792 Roger Voss
## 6793 Susan Kostrzewa
## 6794 Susan Kostrzewa
## 6795 Michael Schachner
## 6796
## 6797 Michael Schachner
## 6798 Virginie Boone
## 6799
## 6800 Roger Voss
## 6801 Virginie Boone
## 6802
## 6803
## 6804
## 6805 Lauren Buzzeo
## 6806
## 6807
## 6808 Roger Voss
## 6809
## 6810 Michael Schachner
## 6811 Paul Gregutt
## 6812 Michael Schachner
## 6813 Michael Schachner
## 6814 Roger Voss
## 6815 Roger Voss
## 6816 Roger Voss
## 6817 Roger Voss
## 6818 Roger Voss
## 6819
## 6820
## 6821
## 6822 Paul Gregutt
## 6823
## 6824
## 6825 Virginie Boone
## 6826 Michael Schachner
## 6827 Roger Voss
## 6828 Michael Schachner
## 6829 Michael Schachner
## 6830
## 6831
## 6832
## 6833
## 6834 Michael Schachner
## 6835 Roger Voss
## 6836 Lauren Buzzeo
## 6837 Roger Voss
## 6838 Roger Voss
## 6839 Roger Voss
## 6840 Roger Voss
## 6841
## 6842
## 6843
## 6844
## 6845
## 6846 Anna Lee C. Iijima
## 6847 Michael Schachner
## 6848
## 6849
## 6850 Roger Voss
## 6851 Roger Voss
## 6852
## 6853
## 6854 Roger Voss
## 6855 Kerin O’Keefe
## 6856 Kerin O’Keefe
## 6857 Michael Schachner
## 6858 Matt Kettmann
## 6859 Michael Schachner
## 6860 Kerin O’Keefe
## 6861 Roger Voss
## 6862 Anne Krebiehl MW
## 6863 Anne Krebiehl MW
## 6864 Paul Gregutt
## 6865 Jim Gordon
## 6866 Michael Schachner
## 6867 Anna Lee C. Iijima
## 6868 Roger Voss
## 6869 Michael Schachner
## 6870 Anne Krebiehl MW
## 6871
## 6872 Kerin O’Keefe
## 6873 Roger Voss
## 6874 Michael Schachner
## 6875 Kerin O’Keefe
## 6876 Roger Voss
## 6877 Anna Lee C. Iijima
## 6878
## 6879 Paul Gregutt
## 6880 Matt Kettmann
## 6881 Anna Lee C. Iijima
## 6882 Matt Kettmann
## 6883 Kerin O’Keefe
## 6884 Kerin O’Keefe
## 6885 Kerin O’Keefe
## 6886 Kerin O’Keefe
## 6887 Kerin O’Keefe
## 6888 Kerin O’Keefe
## 6889 Michael Schachner
## 6890 Anna Lee C. Iijima
## 6891 Paul Gregutt
## 6892 Paul Gregutt
## 6893 Kerin O’Keefe
## 6894 Kerin O’Keefe
## 6895 Kerin O’Keefe
## 6896 Kerin O’Keefe
## 6897 Paul Gregutt
## 6898 Kerin O’Keefe
## 6899 Paul Gregutt
## 6900 Michael Schachner
## 6901 Kerin O’Keefe
## 6902 Kerin O’Keefe
## 6903 Kerin O’Keefe
## 6904 Jim Gordon
## 6905 Michael Schachner
## 6906 Alexander Peartree
## 6907 Kerin O’Keefe
## 6908 Anna Lee C. Iijima
## 6909 Roger Voss
## 6910 Michael Schachner
## 6911 Kerin O’Keefe
## 6912 Michael Schachner
## 6913 Roger Voss
## 6914 Paul Gregutt
## 6915 Roger Voss
## 6916 Virginie Boone
## 6917 Michael Schachner
## 6918 Kerin O’Keefe
## 6919 Paul Gregutt
## 6920 Matt Kettmann
## 6921 Roger Voss
## 6922 Roger Voss
## 6923 Matt Kettmann
## 6924 Matt Kettmann
## 6925 Virginie Boone
## 6926 Matt Kettmann
## 6927 Virginie Boone
## 6928 Virginie Boone
## 6929 Roger Voss
## 6930 Roger Voss
## 6931 Paul Gregutt
## 6932 Anna Lee C. Iijima
## 6933 Roger Voss
## 6934 Roger Voss
## 6935 Virginie Boone
## 6936 Matt Kettmann
## 6937 Kerin O’Keefe
## 6938 Virginie Boone
## 6939 Roger Voss
## 6940 Matt Kettmann
## 6941 Roger Voss
## 6942 Joe Czerwinski
## 6943 Susan Kostrzewa
## 6944 Roger Voss
## 6945 Joe Czerwinski
## 6946 Joe Czerwinski
## 6947 Joe Czerwinski
## 6948 Joe Czerwinski
## 6949 Susan Kostrzewa
## 6950 Paul Gregutt
## 6951
## 6952
## 6953 Joe Czerwinski
## 6954 Michael Schachner
## 6955 Paul Gregutt
## 6956 Joe Czerwinski
## 6957 Joe Czerwinski
## 6958 Joe Czerwinski
## 6959 Roger Voss
## 6960 Roger Voss
## 6961
## 6962 Roger Voss
## 6963 Matt Kettmann
## 6964 Kerin O’Keefe
## 6965 Jim Gordon
## 6966 Virginie Boone
## 6967 Kerin O’Keefe
## 6968 Jim Gordon
## 6969 Carrie Dykes
## 6970 Michael Schachner
## 6971 Jeff Jenssen
## 6972 Jim Gordon
## 6973 Roger Voss
## 6974 Michael Schachner
## 6975 Virginie Boone
## 6976 Roger Voss
## 6977 Jim Gordon
## 6978 Jim Gordon
## 6979 Roger Voss
## 6980 Roger Voss
## 6981 Roger Voss
## 6982 Michael Schachner
## 6983
## 6984 Kerin O’Keefe
## 6985 Roger Voss
## 6986 Jim Gordon
## 6987
## 6988 Jeff Jenssen
## 6989 Virginie Boone
## 6990 Roger Voss
## 6991 Roger Voss
## 6992 Matt Kettmann
## 6993 Matt Kettmann
## 6994 Virginie Boone
## 6995 Kerin O’Keefe
## 6996 Michael Schachner
## 6997 Jim Gordon
## 6998 Jeff Jenssen
## 6999 Jeff Jenssen
## 7000 Kerin O’Keefe
## 7001 Kerin O’Keefe
## 7002 Roger Voss
## 7003 Roger Voss
## 7004 Roger Voss
## 7005 Roger Voss
## 7006 Roger Voss
## 7007 Roger Voss
## 7008 Kerin O’Keefe
## 7009 Jim Gordon
## 7010 Matt Kettmann
## 7011 Roger Voss
## 7012 Kerin O’Keefe
## 7013 Michael Schachner
## 7014 Roger Voss
## 7015 Roger Voss
## 7016 Roger Voss
## 7017 Sean P. Sullivan
## 7018 Matt Kettmann
## 7019 Matt Kettmann
## 7020 Paul Gregutt
## 7021 Roger Voss
## 7022
## 7023
## 7024
## 7025
## 7026 Joe Czerwinski
## 7027
## 7028
## 7029 Joe Czerwinski
## 7030
## 7031
## 7032
## 7033
## 7034 Paul Gregutt
## 7035 Roger Voss
## 7036 Michael Schachner
## 7037 Joe Czerwinski
## 7038
## 7039
## 7040
## 7041
## 7042 Paul Gregutt
## 7043
## 7044 Roger Voss
## 7045 Roger Voss
## 7046 Roger Voss
## 7047 Michael Schachner
## 7048 Michael Schachner
## 7049 Virginie Boone
## 7050 Roger Voss
## 7051 Michael Schachner
## 7052 Virginie Boone
## 7053 Paul Gregutt
## 7054 Michael Schachner
## 7055 Virginie Boone
## 7056 Michael Schachner
## 7057 Michael Schachner
## 7058 Virginie Boone
## 7059 Roger Voss
## 7060 Roger Voss
## 7061 Roger Voss
## 7062 Michael Schachner
## 7063 Michael Schachner
## 7064 Roger Voss
## 7065 Jim Gordon
## 7066 Michael Schachner
## 7067 Roger Voss
## 7068 Roger Voss
## 7069 Michael Schachner
## 7070 Kerin O’Keefe
## 7071 Paul Gregutt
## 7072 Roger Voss
## 7073 Joe Czerwinski
## 7074
## 7075
## 7076 Michael Schachner
## 7077 Michael Schachner
## 7078
## 7079
## 7080 Roger Voss
## 7081
## 7082 Joe Czerwinski
## 7083 Joe Czerwinski
## 7084
## 7085 Paul Gregutt
## 7086
## 7087
## 7088 Michael Schachner
## 7089
## 7090
## 7091 Michael Schachner
## 7092 Michael Schachner
## 7093 Michael Schachner
## 7094 Michael Schachner
## 7095 Michael Schachner
## 7096 Michael Schachner
## 7097 Michael Schachner
## 7098
## 7099 Roger Voss
## 7100 Michael Schachner
## 7101 Kerin O’Keefe
## 7102 Anne Krebiehl MW
## 7103 Anne Krebiehl MW
## 7104 Kerin O’Keefe
## 7105 Paul Gregutt
## 7106 Roger Voss
## 7107 Roger Voss
## 7108 Roger Voss
## 7109 Roger Voss
## 7110 Virginie Boone
## 7111 Sean P. Sullivan
## 7112 Matt Kettmann
## 7113 Matt Kettmann
## 7114 Virginie Boone
## 7115 Lauren Buzzeo
## 7116 Virginie Boone
## 7117 Kerin O’Keefe
## 7118 Roger Voss
## 7119 Kerin O’Keefe
## 7120 Kerin O’Keefe
## 7121 Michael Schachner
## 7122 Roger Voss
## 7123 Kerin O’Keefe
## 7124 Matt Kettmann
## 7125 Michael Schachner
## 7126 Paul Gregutt
## 7127 Michael Schachner
## 7128 Matt Kettmann
## 7129 Paul Gregutt
## 7130
## 7131 Paul Gregutt
## 7132 Roger Voss
## 7133 Michael Schachner
## 7134
## 7135 Lauren Buzzeo
## 7136 Michael Schachner
## 7137
## 7138
## 7139 Paul Gregutt
## 7140 Roger Voss
## 7141 Paul Gregutt
## 7142 Paul Gregutt
## 7143
## 7144
## 7145
## 7146 Roger Voss
## 7147 Michael Schachner
## 7148
## 7149
## 7150 Susan Kostrzewa
## 7151
## 7152
## 7153 Michael Schachner
## 7154
## 7155
## 7156
## 7157
## 7158
## 7159
## 7160
## 7161
## 7162
## 7163 Paul Gregutt
## 7164 Roger Voss
## 7165 Michael Schachner
## 7166 Kerin O’Keefe
## 7167 Kerin O’Keefe
## 7168 Joe Czerwinski
## 7169 Mike DeSimone
## 7170 Mike DeSimone
## 7171 Michael Schachner
## 7172
## 7173 Anna Lee C. Iijima
## 7174 Kerin O’Keefe
## 7175
## 7176 Anna Lee C. Iijima
## 7177 Lauren Buzzeo
## 7178 Lauren Buzzeo
## 7179 Lauren Buzzeo
## 7180 Michael Schachner
## 7181 Roger Voss
## 7182 Roger Voss
## 7183
## 7184
## 7185 Roger Voss
## 7186 Paul Gregutt
## 7187 Paul Gregutt
## 7188 Anna Lee C. Iijima
## 7189
## 7190 Michael Schachner
## 7191
## 7192 Joe Czerwinski
## 7193 Paul Gregutt
## 7194 Paul Gregutt
## 7195 Joe Czerwinski
## 7196 Roger Voss
## 7197 Roger Voss
## 7198 Roger Voss
## 7199 Roger Voss
## 7200 Roger Voss
## 7201 Roger Voss
## 7202 Paul Gregutt
## 7203 Paul Gregutt
## 7204 Michael Schachner
## 7205 Roger Voss
## 7206 Anna Lee C. Iijima
## 7207 Paul Gregutt
## 7208 Paul Gregutt
## 7209 Roger Voss
## 7210 Roger Voss
## 7211 Jim Gordon
## 7212 Roger Voss
## 7213 Kerin O’Keefe
## 7214 Kerin O’Keefe
## 7215 Kerin O’Keefe
## 7216 Roger Voss
## 7217 Matt Kettmann
## 7218 Paul Gregutt
## 7219 Kerin O’Keefe
## 7220 Paul Gregutt
## 7221 Roger Voss
## 7222 Paul Gregutt
## 7223 Virginie Boone
## 7224
## 7225
## 7226
## 7227
## 7228
## 7229
## 7230 Roger Voss
## 7231 Paul Gregutt
## 7232 Michael Schachner
## 7233 Michael Schachner
## 7234
## 7235 Lauren Buzzeo
## 7236 Michael Schachner
## 7237 Anna Lee C. Iijima
## 7238 Roger Voss
## 7239 Anna Lee C. Iijima
## 7240 Lauren Buzzeo
## 7241
## 7242 Lauren Buzzeo
## 7243 Roger Voss
## 7244 Roger Voss
## 7245 Roger Voss
## 7246
## 7247 Roger Voss
## 7248
## 7249 Michael Schachner
## 7250 Michael Schachner
## 7251 Roger Voss
## 7252 Anna Lee C. Iijima
## 7253
## 7254 Matt Kettmann
## 7255 Virginie Boone
## 7256 Michael Schachner
## 7257 Lauren Buzzeo
## 7258 Sean P. Sullivan
## 7259 Sean P. Sullivan
## 7260 Matt Kettmann
## 7261 Jeff Jenssen
## 7262 Jeff Jenssen
## 7263 Michael Schachner
## 7264 Sean P. Sullivan
## 7265 Sean P. Sullivan
## 7266 Sean P. Sullivan
## 7267 Jeff Jenssen
## 7268 Jim Gordon
## 7269 Jim Gordon
## 7270 Anne Krebiehl MW
## 7271 Michael Schachner
## 7272 Matt Kettmann
## 7273 Jeff Jenssen
## 7274 Anna Lee C. Iijima
## 7275 Matt Kettmann
## 7276 Jim Gordon
## 7277 Jim Gordon
## 7278 Jeff Jenssen
## 7279 Anne Krebiehl MW
## 7280 Matt Kettmann
## 7281 Kerin O’Keefe
## 7282 Kerin O’Keefe
## 7283 Anna Lee C. Iijima
## 7284 Sean P. Sullivan
## 7285 Jim Gordon
## 7286 Virginie Boone
## 7287 Virginie Boone
## 7288 Virginie Boone
## 7289 Jim Gordon
## 7290 Virginie Boone
## 7291 Kerin O’Keefe
## 7292 Anna Lee C. Iijima
## 7293 Anna Lee C. Iijima
## 7294 Anne Krebiehl MW
## 7295 Matt Kettmann
## 7296 Sean P. Sullivan
## 7297 Virginie Boone
## 7298 Joe Czerwinski
## 7299 Virginie Boone
## 7300 Matt Kettmann
## 7301 Matt Kettmann
## 7302 Kerin O’Keefe
## 7303 Anne Krebiehl MW
## 7304 Roger Voss
## 7305 Sean P. Sullivan
## 7306 Sean P. Sullivan
## 7307 Roger Voss
## 7308 Roger Voss
## 7309 Paul Gregutt
## 7310 Anne Krebiehl MW
## 7311 Roger Voss
## 7312 Anne Krebiehl MW
## 7313 Anne Krebiehl MW
## 7314
## 7315
## 7316
## 7317 Roger Voss
## 7318 Michael Schachner
## 7319 Susan Kostrzewa
## 7320
## 7321 Susan Kostrzewa
## 7322
## 7323 Roger Voss
## 7324 Lauren Buzzeo
## 7325 Lauren Buzzeo
## 7326 Lauren Buzzeo
## 7327 Michael Schachner
## 7328
## 7329 Susan Kostrzewa
## 7330 Susan Kostrzewa
## 7331
## 7332
## 7333 Michael Schachner
## 7334
## 7335
## 7336
## 7337
## 7338 Virginie Boone
## 7339
## 7340 Virginie Boone
## 7341 Anne Krebiehl MW
## 7342 Michael Schachner
## 7343 Paul Gregutt
## 7344 Kerin O’Keefe
## 7345 Paul Gregutt
## 7346 Kerin O’Keefe
## 7347 Michael Schachner
## 7348 Paul Gregutt
## 7349 Kerin O’Keefe
## 7350 Kerin O’Keefe
## 7351
## 7352 Sean P. Sullivan
## 7353 Kerin O’Keefe
## 7354 Sean P. Sullivan
## 7355 Michael Schachner
## 7356
## 7357 Roger Voss
## 7358 Roger Voss
## 7359 Roger Voss
## 7360 Paul Gregutt
## 7361 Anna Lee C. Iijima
## 7362 Kerin O’Keefe
## 7363 Kerin O’Keefe
## 7364 Michael Schachner
## 7365
## 7366 Paul Gregutt
## 7367 Paul Gregutt
## 7368 Joe Czerwinski
## 7369 Michael Schachner
## 7370 Paul Gregutt
## 7371 Lauren Buzzeo
## 7372
## 7373
## 7374
## 7375 Roger Voss
## 7376
## 7377
## 7378
## 7379 Roger Voss
## 7380 Lauren Buzzeo
## 7381 Michael Schachner
## 7382 Paul Gregutt
## 7383
## 7384
## 7385
## 7386 Roger Voss
## 7387
## 7388 Joe Czerwinski
## 7389 Joe Czerwinski
## 7390 Paul Gregutt
## 7391
## 7392 Michael Schachner
## 7393
## 7394
## 7395
## 7396
## 7397
## 7398 Roger Voss
## 7399
## 7400
## 7401
## 7402
## 7403
## 7404
## 7405
## 7406
## 7407 Paul Gregutt
## 7408 Paul Gregutt
## 7409 Roger Voss
## 7410
## 7411
## 7412 Paul Gregutt
## 7413 Roger Voss
## 7414
## 7415 Susan Kostrzewa
## 7416 Susan Kostrzewa
## 7417 Michael Schachner
## 7418
## 7419
## 7420 Michael Schachner
## 7421 Susan Kostrzewa
## 7422
## 7423
## 7424
## 7425 Joe Czerwinski
## 7426
## 7427
## 7428
## 7429
## 7430
## 7431
## 7432
## 7433 Michael Schachner
## 7434 Paul Gregutt
## 7435
## 7436
## 7437
## 7438 Joe Czerwinski
## 7439
## 7440 Michael Schachner
## 7441
## 7442
## 7443 Roger Voss
## 7444
## 7445
## 7446 Joe Czerwinski
## 7447
## 7448
## 7449 Michael Schachner
## 7450 Michael Schachner
## 7451 Lauren Buzzeo
## 7452 Lauren Buzzeo
## 7453 Kerin O’Keefe
## 7454 Kerin O’Keefe
## 7455 Kerin O’Keefe
## 7456 Kerin O’Keefe
## 7457 Michael Schachner
## 7458 Michael Schachner
## 7459 Michael Schachner
## 7460 Kerin O’Keefe
## 7461 Roger Voss
## 7462 Roger Voss
## 7463 Anna Lee C. Iijima
## 7464 Michael Schachner
## 7465 Roger Voss
## 7466 Michael Schachner
## 7467 Sean P. Sullivan
## 7468 Sean P. Sullivan
## 7469 Sean P. Sullivan
## 7470 Kerin O’Keefe
## 7471 Lauren Buzzeo
## 7472 Roger Voss
## 7473 Sean P. Sullivan
## 7474 Sean P. Sullivan
## 7475 Jim Gordon
## 7476 Virginie Boone
## 7477 Kerin O’Keefe
## 7478 Kerin O’Keefe
## 7479 Kerin O’Keefe
## 7480
## 7481
## 7482 Paul Gregutt
## 7483
## 7484
## 7485 Joe Czerwinski
## 7486 Michael Schachner
## 7487 Michael Schachner
## 7488 Paul Gregutt
## 7489 Paul Gregutt
## 7490 Susan Kostrzewa
## 7491 Susan Kostrzewa
## 7492 Paul Gregutt
## 7493
## 7494 Michael Schachner
## 7495 Susan Kostrzewa
## 7496
## 7497
## 7498
## 7499 Michael Schachner
## 7500 Michael Schachner
## 7501 Paul Gregutt
## 7502 Matt Kettmann
## 7503 Jim Gordon
## 7504 Matt Kettmann
## 7505 Paul Gregutt
## 7506 Matt Kettmann
## 7507 Jim Gordon
## 7508 Roger Voss
## 7509 Michael Schachner
## 7510 Kerin O’Keefe
## 7511 Roger Voss
## 7512 Michael Schachner
## 7513 Kerin O’Keefe
## 7514 Paul Gregutt
## 7515 Jim Gordon
## 7516 Virginie Boone
## 7517 Virginie Boone
## 7518 Joe Czerwinski
## 7519 Roger Voss
## 7520 Roger Voss
## 7521 Roger Voss
## 7522 Roger Voss
## 7523 Roger Voss
## 7524 Paul Gregutt
## 7525 Kerin O’Keefe
## 7526 Jim Gordon
## 7527 Virginie Boone
## 7528 Matt Kettmann
## 7529 Matt Kettmann
## 7530 Virginie Boone
## 7531 Matt Kettmann
## 7532 Joe Czerwinski
## 7533
## 7534
## 7535
## 7536
## 7537
## 7538
## 7539
## 7540
## 7541
## 7542
## 7543
## 7544
## 7545 Michael Schachner
## 7546 Michael Schachner
## 7547 Michael Schachner
## 7548 Anna Lee C. Iijima
## 7549
## 7550
## 7551
## 7552 Roger Voss
## 7553 Michael Schachner
## 7554
## 7555
## 7556
## 7557 Roger Voss
## 7558 Michael Schachner
## 7559 Roger Voss
## 7560
## 7561 Roger Voss
## 7562 Roger Voss
## 7563 Roger Voss
## 7564 Paul Gregutt
## 7565
## 7566 Roger Voss
## 7567
## 7568 Susan Kostrzewa
## 7569 Susan Kostrzewa
## 7570 Susan Kostrzewa
## 7571
## 7572
## 7573 Michael Schachner
## 7574 Roger Voss
## 7575
## 7576
## 7577 Michael Schachner
## 7578 Michael Schachner
## 7579
## 7580 Roger Voss
## 7581
## 7582 Susan Kostrzewa
## 7583
## 7584 Susan Kostrzewa
## 7585 Michael Schachner
## 7586 Michael Schachner
## 7587
## 7588 Roger Voss
## 7589 Roger Voss
## 7590 Susan Kostrzewa
## 7591
## 7592 Michael Schachner
## 7593 Joe Czerwinski
## 7594
## 7595 Michael Schachner
## 7596 Michael Schachner
## 7597 Michael Schachner
## 7598 Joe Czerwinski
## 7599 Joe Czerwinski
## 7600
## 7601
## 7602 Michael Schachner
## 7603 Michael Schachner
## 7604 Michael Schachner
## 7605 Michael Schachner
## 7606 Michael Schachner
## 7607
## 7608 Joe Czerwinski
## 7609
## 7610 Joe Czerwinski
## 7611 Michael Schachner
## 7612 Joe Czerwinski
## 7613 Michael Schachner
## 7614 Roger Voss
## 7615 Anne Krebiehl MW
## 7616 Anne Krebiehl MW
## 7617 Jim Gordon
## 7618 Paul Gregutt
## 7619 Kerin O’Keefe
## 7620 Kerin O’Keefe
## 7621 Jim Gordon
## 7622
## 7623 Paul Gregutt
## 7624 Virginie Boone
## 7625 Anne Krebiehl MW
## 7626 Jim Gordon
## 7627 Paul Gregutt
## 7628 Roger Voss
## 7629 Virginie Boone
## 7630 Kerin O’Keefe
## 7631 Virginie Boone
## 7632 Roger Voss
## 7633 Roger Voss
## 7634 Jim Gordon
## 7635 Paul Gregutt
## 7636 Paul Gregutt
## 7637 Kerin O’Keefe
## 7638 Kerin O’Keefe
## 7639 Michael Schachner
## 7640 Lauren Buzzeo
## 7641 Kerin O’Keefe
## 7642 Kerin O’Keefe
## 7643 Kerin O’Keefe
## 7644 Joe Czerwinski
## 7645
## 7646
## 7647 Roger Voss
## 7648
## 7649
## 7650 Michael Schachner
## 7651
## 7652 Michael Schachner
## 7653 Roger Voss
## 7654
## 7655
## 7656 Paul Gregutt
## 7657
## 7658 Anna Lee C. Iijima
## 7659 Joe Czerwinski
## 7660 Michael Schachner
## 7661
## 7662
## 7663
## 7664 Roger Voss
## 7665
## 7666
## 7667 Anna Lee C. Iijima
## 7668 Anna Lee C. Iijima
## 7669 Michael Schachner
## 7670 Anna Lee C. Iijima
## 7671
## 7672 Roger Voss
## 7673
## 7674 Matt Kettmann
## 7675 Paul Gregutt
## 7676 Paul Gregutt
## 7677 Susan Kostrzewa
## 7678 Michael Schachner
## 7679 Matt Kettmann
## 7680 Susan Kostrzewa
## 7681 Paul Gregutt
## 7682 Roger Voss
## 7683 Roger Voss
## 7684 Michael Schachner
## 7685 Virginie Boone
## 7686 Mike DeSimone
## 7687 Kerin O’Keefe
## 7688 Virginie Boone
## 7689 Virginie Boone
## 7690 Roger Voss
## 7691 Michael Schachner
## 7692 Kerin O’Keefe
## 7693 Susan Kostrzewa
## 7694
## 7695
## 7696 Roger Voss
## 7697
## 7698 Susan Kostrzewa
## 7699
## 7700 Michael Schachner
## 7701
## 7702
## 7703 Susan Kostrzewa
## 7704
## 7705 Michael Schachner
## 7706 Michael Schachner
## 7707 Susan Kostrzewa
## 7708 Michael Schachner
## 7709
## 7710 Roger Voss
## 7711
## 7712 Susan Kostrzewa
## 7713 Joe Czerwinski
## 7714 Joe Czerwinski
## 7715 Susan Kostrzewa
## 7716 Susan Kostrzewa
## 7717 Michael Schachner
## 7718 Michael Schachner
## 7719 Roger Voss
## 7720 Jim Gordon
## 7721 Roger Voss
## 7722 Paul Gregutt
## 7723 Sean P. Sullivan
## 7724 Roger Voss
## 7725 Roger Voss
## 7726 Roger Voss
## 7727 Roger Voss
## 7728 Roger Voss
## 7729 Roger Voss
## 7730 Roger Voss
## 7731 Roger Voss
## 7732 Matt Kettmann
## 7733 Roger Voss
## 7734 Roger Voss
## 7735 Roger Voss
## 7736 Matt Kettmann
## 7737 Paul Gregutt
## 7738 Sean P. Sullivan
## 7739 Anna Lee C. Iijima
## 7740 Virginie Boone
## 7741 Joe Czerwinski
## 7742 Roger Voss
## 7743 Paul Gregutt
## 7744 Roger Voss
## 7745 Kerin O’Keefe
## 7746 Roger Voss
## 7747 Sean P. Sullivan
## 7748 Matt Kettmann
## 7749 Virginie Boone
## 7750 Anne Krebiehl MW
## 7751 Virginie Boone
## 7752 Matt Kettmann
## 7753 Virginie Boone
## 7754 Anne Krebiehl MW
## 7755 Anne Krebiehl MW
## 7756 Sean P. Sullivan
## 7757 Virginie Boone
## 7758 Sean P. Sullivan
## 7759 Kerin O’Keefe
## 7760 Virginie Boone
## 7761 Sean P. Sullivan
## 7762 Sean P. Sullivan
## 7763 Virginie Boone
## 7764 Virginie Boone
## 7765 Jim Gordon
## 7766 Sean P. Sullivan
## 7767 Anne Krebiehl MW
## 7768 Sean P. Sullivan
## 7769 Anne Krebiehl MW
## 7770 Matt Kettmann
## 7771 Anne Krebiehl MW
## 7772 Anne Krebiehl MW
## 7773 Anne Krebiehl MW
## 7774 Joe Czerwinski
## 7775 Lauren Buzzeo
## 7776 Michael Schachner
## 7777 Joe Czerwinski
## 7778 Sean P. Sullivan
## 7779 Matt Kettmann
## 7780 Paul Gregutt
## 7781 Anne Krebiehl MW
## 7782 Kerin O’Keefe
## 7783 Anne Krebiehl MW
## 7784 Matt Kettmann
## 7785 Kerin O’Keefe
## 7786 Joe Czerwinski
## 7787 Virginie Boone
## 7788 Anne Krebiehl MW
## 7789 Roger Voss
## 7790 Sean P. Sullivan
## 7791 Kerin O’Keefe
## 7792 Lauren Buzzeo
## 7793 Kerin O’Keefe
## 7794 Anne Krebiehl MW
## 7795 Anne Krebiehl MW
## 7796 Anne Krebiehl MW
## 7797 Matt Kettmann
## 7798 Sean P. Sullivan
## 7799 Anne Krebiehl MW
## 7800 Anne Krebiehl MW
## 7801 Joe Czerwinski
## 7802 Paul Gregutt
## 7803 Sean P. Sullivan
## 7804 Sean P. Sullivan
## 7805
## 7806 Roger Voss
## 7807 Paul Gregutt
## 7808
## 7809
## 7810
## 7811 Paul Gregutt
## 7812
## 7813 Paul Gregutt
## 7814 Michael Schachner
## 7815
## 7816
## 7817 Michael Schachner
## 7818
## 7819 Joe Czerwinski
## 7820
## 7821 Roger Voss
## 7822 Paul Gregutt
## 7823
## 7824 Paul Gregutt
## 7825
## 7826 Paul Gregutt
## 7827
## 7828 Paul Gregutt
## 7829 Joe Czerwinski
## 7830 Joe Czerwinski
## 7831
## 7832 Joe Czerwinski
## 7833 Joe Czerwinski
## 7834
## 7835 Paul Gregutt
## 7836
## 7837
## 7838
## 7839 Joe Czerwinski
## 7840 Paul Gregutt
## 7841 Paul Gregutt
## 7842 Paul Gregutt
## 7843
## 7844 Paul Gregutt
## 7845 Paul Gregutt
## 7846 Paul Gregutt
## 7847
## 7848
## 7849
## 7850 Joe Czerwinski
## 7851 Matt Kettmann
## 7852 Michael Schachner
## 7853 Michael Schachner
## 7854 Matt Kettmann
## 7855 Virginie Boone
## 7856 Roger Voss
## 7857 Kerin O’Keefe
## 7858 Virginie Boone
## 7859 Roger Voss
## 7860 Roger Voss
## 7861 Paul Gregutt
## 7862 Kerin O’Keefe
## 7863 Matt Kettmann
## 7864 Virginie Boone
## 7865 Anne Krebiehl MW
## 7866 Roger Voss
## 7867 Michael Schachner
## 7868 Michael Schachner
## 7869 Virginie Boone
## 7870 Lauren Buzzeo
## 7871 Virginie Boone
## 7872 Lauren Buzzeo
## 7873 Virginie Boone
## 7874 Jim Gordon
## 7875 Matt Kettmann
## 7876 Roger Voss
## 7877 Virginie Boone
## 7878 Kerin O’Keefe
## 7879 Paul Gregutt
## 7880 Matt Kettmann
## 7881
## 7882 Roger Voss
## 7883
## 7884 Roger Voss
## 7885 Roger Voss
## 7886 Michael Schachner
## 7887 Michael Schachner
## 7888
## 7889 Roger Voss
## 7890
## 7891 Paul Gregutt
## 7892 Kerin O’Keefe
## 7893
## 7894 Roger Voss
## 7895 Roger Voss
## 7896
## 7897 Roger Voss
## 7898 Kerin O’Keefe
## 7899 Roger Voss
## 7900 Roger Voss
## 7901 Michael Schachner
## 7902
## 7903
## 7904 Roger Voss
## 7905 Paul Gregutt
## 7906
## 7907 Roger Voss
## 7908
## 7909 Virginie Boone
## 7910
## 7911 Jim Gordon
## 7912 Virginie Boone
## 7913 Kerin O’Keefe
## 7914 Kerin O’Keefe
## 7915 Kerin O’Keefe
## 7916 Kerin O’Keefe
## 7917 Joe Czerwinski
## 7918 Roger Voss
## 7919 Joe Czerwinski
## 7920 Paul Gregutt
## 7921 Roger Voss
## 7922 Kerin O’Keefe
## 7923 Virginie Boone
## 7924 Virginie Boone
## 7925 Roger Voss
## 7926 Roger Voss
## 7927 Kerin O’Keefe
## 7928 Michael Schachner
## 7929 Michael Schachner
## 7930 Jim Gordon
## 7931 Matt Kettmann
## 7932 Roger Voss
## 7933 Joe Czerwinski
## 7934 Jeff Jenssen
## 7935 Alexander Peartree
## 7936 Kerin O’Keefe
## 7937 Kerin O’Keefe
## 7938 Roger Voss
## 7939 Jeff Jenssen
## 7940 Roger Voss
## 7941 Paul Gregutt
## 7942 Joe Czerwinski
## 7943 Paul Gregutt
## 7944
## 7945 Roger Voss
## 7946
## 7947 Paul Gregutt
## 7948 Paul Gregutt
## 7949
## 7950
## 7951
## 7952 Joe Czerwinski
## 7953
## 7954 Michael Schachner
## 7955
## 7956 Joe Czerwinski
## 7957 Roger Voss
## 7958 Anna Lee C. Iijima
## 7959 Matt Kettmann
## 7960 Alexander Peartree
## 7961 Joe Czerwinski
## 7962 Kerin O’Keefe
## 7963 Kerin O’Keefe
## 7964 Sean P. Sullivan
## 7965 Jim Gordon
## 7966 Anne Krebiehl MW
## 7967 Sean P. Sullivan
## 7968 Alexander Peartree
## 7969 Matt Kettmann
## 7970 Kerin O’Keefe
## 7971 Roger Voss
## 7972 Alexander Peartree
## 7973 Roger Voss
## 7974 Jim Gordon
## 7975 Roger Voss
## 7976 Roger Voss
## 7977 Virginie Boone
## 7978 Anna Lee C. Iijima
## 7979 Joe Czerwinski
## 7980 Virginie Boone
## 7981 Jim Gordon
## 7982 Alexander Peartree
## 7983 Virginie Boone
## 7984 Sean P. Sullivan
## 7985 Kerin O’Keefe
## 7986 Joe Czerwinski
## 7987 Kerin O’Keefe
## 7988
## 7989
## 7990 Roger Voss
## 7991 Roger Voss
## 7992
## 7993 Roger Voss
## 7994 Roger Voss
## 7995 Roger Voss
## 7996
## 7997
## 7998
## 7999
## 8000 Michael Schachner
## 8001
## 8002 Joe Czerwinski
## 8003 Joe Czerwinski
## 8004 Joe Czerwinski
## 8005 Roger Voss
## 8006
## 8007 Virginie Boone
## 8008
## 8009
## 8010
## 8011 Joe Czerwinski
## 8012 Roger Voss
## 8013 Roger Voss
## 8014 Roger Voss
## 8015 Kerin O’Keefe
## 8016
## 8017
## 8018 Virginie Boone
## 8019 Anna Lee C. Iijima
## 8020 Roger Voss
## 8021 Roger Voss
## 8022 Roger Voss
## 8023
## 8024
## 8025
## 8026 Virginie Boone
## 8027
## 8028 Roger Voss
## 8029 Roger Voss
## 8030 Kerin O’Keefe
## 8031 Paul Gregutt
## 8032
## 8033
## 8034
## 8035 Jim Gordon
## 8036 Paul Gregutt
## 8037 Kerin O’Keefe
## 8038 Matt Kettmann
## 8039 Michael Schachner
## 8040 Kerin O’Keefe
## 8041 Michael Schachner
## 8042 Michael Schachner
## 8043 Paul Gregutt
## 8044 Jim Gordon
## 8045 Paul Gregutt
## 8046 Roger Voss
## 8047 Michael Schachner
## 8048 Roger Voss
## 8049 Michael Schachner
## 8050 Kerin O’Keefe
## 8051 Joe Czerwinski
## 8052 Kerin O’Keefe
## 8053 Jim Gordon
## 8054 Virginie Boone
## 8055 Roger Voss
## 8056 Roger Voss
## 8057 Roger Voss
## 8058 Roger Voss
## 8059 Matt Kettmann
## 8060 Kerin O’Keefe
## 8061 Kerin O’Keefe
## 8062 Anna Lee C. Iijima
## 8063 Paul Gregutt
## 8064 Anna Lee C. Iijima
## 8065 Roger Voss
## 8066 Paul Gregutt
## 8067 Jim Gordon
## 8068 Matt Kettmann
## 8069 Michael Schachner
## 8070 Anna Lee C. Iijima
## 8071 Kerin O’Keefe
## 8072 Virginie Boone
## 8073 Michael Schachner
## 8074 Paul Gregutt
## 8075 Roger Voss
## 8076 Roger Voss
## 8077 Michael Schachner
## 8078 Michael Schachner
## 8079 Roger Voss
## 8080 Roger Voss
## 8081 Virginie Boone
## 8082 Paul Gregutt
## 8083 Virginie Boone
## 8084 Matt Kettmann
## 8085 Roger Voss
## 8086 Roger Voss
## 8087 Virginie Boone
## 8088 Virginie Boone
## 8089 Mike DeSimone
## 8090 Roger Voss
## 8091 Virginie Boone
## 8092 Jim Gordon
## 8093 Roger Voss
## 8094 Virginie Boone
## 8095 Virginie Boone
## 8096 Sean P. Sullivan
## 8097 Matt Kettmann
## 8098 Joe Czerwinski
## 8099 Roger Voss
## 8100 Roger Voss
## 8101 Joe Czerwinski
## 8102 Virginie Boone
## 8103 Roger Voss
## 8104 Roger Voss
## 8105 Roger Voss
## 8106 Matt Kettmann
## 8107 Matt Kettmann
## 8108 Kerin O’Keefe
## 8109 Matt Kettmann
## 8110 Kerin O’Keefe
## 8111 Michael Schachner
## 8112 Virginie Boone
## 8113 Virginie Boone
## 8114 Kerin O’Keefe
## 8115 Lauren Buzzeo
## 8116 Virginie Boone
## 8117 Sean P. Sullivan
## 8118 Matt Kettmann
## 8119 Matt Kettmann
## 8120 Joe Czerwinski
## 8121 Roger Voss
## 8122 Roger Voss
## 8123 Joe Czerwinski
## 8124 Sean P. Sullivan
## 8125 Matt Kettmann
## 8126 Matt Kettmann
## 8127 Kerin O’Keefe
## 8128
## 8129 Roger Voss
## 8130 Sean P. Sullivan
## 8131 Roger Voss
## 8132 Sean P. Sullivan
## 8133 Paul Gregutt
## 8134 Roger Voss
## 8135 Kerin O’Keefe
## 8136 Roger Voss
## 8137 Michael Schachner
## 8138 Kerin O’Keefe
## 8139 Virginie Boone
## 8140 Michael Schachner
## 8141 Michael Schachner
## 8142 Virginie Boone
## 8143
## 8144 Paul Gregutt
## 8145 Kerin O’Keefe
## 8146 Virginie Boone
## 8147 Michael Schachner
## 8148 Paul Gregutt
## 8149
## 8150
## 8151 Virginie Boone
## 8152 Anne Krebiehl MW
## 8153 Roger Voss
## 8154 Virginie Boone
## 8155 Roger Voss
## 8156 Roger Voss
## 8157 Roger Voss
## 8158 Michael Schachner
## 8159 Matt Kettmann
## 8160 Paul Gregutt
## 8161 Kerin O’Keefe
## 8162 Roger Voss
## 8163 Roger Voss
## 8164 Kerin O’Keefe
## 8165 Michael Schachner
## 8166 Michael Schachner
## 8167 Virginie Boone
## 8168 Kerin O’Keefe
## 8169 Jim Gordon
## 8170 Sean P. Sullivan
## 8171 Mike DeSimone
## 8172 Roger Voss
## 8173 Joe Czerwinski
## 8174 Jim Gordon
## 8175 Jeff Jenssen
## 8176 Michael Schachner
## 8177 Joe Czerwinski
## 8178 Jeff Jenssen
## 8179 Jeff Jenssen
## 8180 Virginie Boone
## 8181 Sean P. Sullivan
## 8182 Sean P. Sullivan
## 8183 Paul Gregutt
## 8184 Sean P. Sullivan
## 8185 Michael Schachner
## 8186 Roger Voss
## 8187 Michael Schachner
## 8188 Michael Schachner
## 8189 Roger Voss
## 8190 Roger Voss
## 8191
## 8192
## 8193
## 8194
## 8195 Roger Voss
## 8196
## 8197 Joe Czerwinski
## 8198 Roger Voss
## 8199 Roger Voss
## 8200
## 8201
## 8202
## 8203 Roger Voss
## 8204 Roger Voss
## 8205 Roger Voss
## 8206 Roger Voss
## 8207 Roger Voss
## 8208 Roger Voss
## 8209
## 8210 Roger Voss
## 8211
## 8212
## 8213 Paul Gregutt
## 8214 Anna Lee C. Iijima
## 8215 Anna Lee C. Iijima
## 8216 Roger Voss
## 8217 Roger Voss
## 8218 Roger Voss
## 8219 Kerin O’Keefe
## 8220
## 8221 Paul Gregutt
## 8222 Roger Voss
## 8223
## 8224 Roger Voss
## 8225 Virginie Boone
## 8226
## 8227 Kerin O’Keefe
## 8228 Roger Voss
## 8229
## 8230
## 8231 Sean P. Sullivan
## 8232 Roger Voss
## 8233 Paul Gregutt
## 8234 Michael Schachner
## 8235 Sean P. Sullivan
## 8236
## 8237 Roger Voss
## 8238 Kerin O’Keefe
## 8239 Michael Schachner
## 8240 Anna Lee C. Iijima
## 8241 Lauren Buzzeo
## 8242 Lauren Buzzeo
## 8243 Anna Lee C. Iijima
## 8244 Lauren Buzzeo
## 8245 Anne Krebiehl MW
## 8246 Virginie Boone
## 8247 Paul Gregutt
## 8248 Roger Voss
## 8249 Roger Voss
## 8250 Kerin O’Keefe
## 8251
## 8252 Paul Gregutt
## 8253
## 8254 Virginie Boone
## 8255 Paul Gregutt
## 8256 Kerin O’Keefe
## 8257 Kerin O’Keefe
## 8258 Michael Schachner
## 8259 Anne Krebiehl MW
## 8260
## 8261 Anna Lee C. Iijima
## 8262 Anna Lee C. Iijima
## 8263 Anne Krebiehl MW
## 8264 Anna Lee C. Iijima
## 8265 Roger Voss
## 8266 Roger Voss
## 8267 Kerin O’Keefe
## 8268
## 8269
## 8270
## 8271 Roger Voss
## 8272 Roger Voss
## 8273
## 8274 Michael Schachner
## 8275 Roger Voss
## 8276 Anna Lee C. Iijima
## 8277 Michael Schachner
## 8278
## 8279 Roger Voss
## 8280 Susan Kostrzewa
## 8281
## 8282
## 8283 Virginie Boone
## 8284
## 8285
## 8286
## 8287
## 8288 Virginie Boone
## 8289 Virginie Boone
## 8290 Matt Kettmann
## 8291 Joe Czerwinski
## 8292 Joe Czerwinski
## 8293 Anne Krebiehl MW
## 8294 Joe Czerwinski
## 8295 Matt Kettmann
## 8296 Virginie Boone
## 8297 Anne Krebiehl MW
## 8298 Virginie Boone
## 8299 Jim Gordon
## 8300 Virginie Boone
## 8301 Anne Krebiehl MW
## 8302 Anne Krebiehl MW
## 8303 Virginie Boone
## 8304 Anne Krebiehl MW
## 8305 Anne Krebiehl MW
## 8306 Joe Czerwinski
## 8307 Kerin O’Keefe
## 8308 Virginie Boone
## 8309 Sean P. Sullivan
## 8310 Anne Krebiehl MW
## 8311 Jim Gordon
## 8312 Anne Krebiehl MW
## 8313 Virginie Boone
## 8314 Anne Krebiehl MW
## 8315 Kerin O’Keefe
## 8316 Virginie Boone
## 8317 Virginie Boone
## 8318 Virginie Boone
## 8319 Anne Krebiehl MW
## 8320
## 8321 Sean P. Sullivan
## 8322 Sean P. Sullivan
## 8323
## 8324 Paul Gregutt
## 8325 Paul Gregutt
## 8326 Paul Gregutt
## 8327 Paul Gregutt
## 8328 Roger Voss
## 8329 Michael Schachner
## 8330
## 8331
## 8332 Paul Gregutt
## 8333 Kerin O’Keefe
## title
## 1 Nicosia 2013 Vulkà Bianco (Etna)
## 2 Quinta dos Avidagos 2011 Avidagos Red (Douro)
## 3 Rainstorm 2013 Pinot Gris (Willamette Valley)
## 4 St. Julian 2013 Reserve Late Harvest Riesling (Lake Michigan Shore)
## 5 Sweet Cheeks 2012 Vintner's Reserve Wild Child Block Pinot Noir (Willamette Valley)
## 6 Tandem 2011 Ars In Vitro Tempranillo-Merlot (Navarra)
## 7 Terre di Giurfo 2013 Belsito Frappato (Vittoria)
## 8 Trimbach 2012 Gewurztraminer (Alsace)
## 9 Heinz Eifel 2013 Shine Gewürztraminer (Rheinhessen)
## 10 Jean-Baptiste Adam 2012 Les Natures Pinot Gris (Alsace)
## 11 Kirkland Signature 2011 Mountain Cuvée Cabernet Sauvignon (Napa Valley)
## 12 Leon Beyer 2012 Gewurztraminer (Alsace)
## 13 Louis M. Martini 2012 Cabernet Sauvignon (Alexander Valley)
## 14 Masseria Setteporte 2012 Rosso (Etna)
## 15 Mirassou 2012 Chardonnay (Central Coast)
## 16 Richard Böcking 2013 Devon Riesling (Mosel)
## 17 Felix Lavaque 2010 Felix Malbec (Cafayate)
## 18 Gaucho Andino 2011 Winemaker Selection Malbec (Mendoza)
## 19 Pradorey 2010 Vendimia Seleccionada Finca Valdelayegua Single Vineyard Crianza (Ribera del Duero)
## 20 Quiévremont 2012 Meritage (Virginia)
## 21 Quiévremont 2012 Vin de Maison Red (Virginia)
## 22 Acrobat 2013 Pinot Noir (Oregon)
## 23 Baglio di Pianetto 2007 Ficiligno White (Sicilia)
## 24 Bianchi 2011 Signature Selection Merlot (Paso Robles)
## 25 Canicattì 2009 Aynat Nero d'Avola (Sicilia)
## 26 Castello di Amorosa 2011 King Ridge Vineyard Pinot Noir (Sonoma Coast)
## 27 Stemmari 2013 Dalila White (Terre Siciliane)
## 28 Stemmari 2013 Nero d'Avola (Terre Siciliane)
## 29 Terre di Giurfo 2011 Mascaria Barricato (Cerasuolo di Vittoria)
## 30 Clarksburg Wine Company 2010 Chenin Blanc (Clarksburg)
## 31 Domaine de la Madone 2012 Nouveau (Beaujolais-Villages)
## 32 Duca di Salaparuta 2010 Calanìca Nero d'Avola-Merlot Red (Sicilia)
## 33 Duca di Salaparuta 2011 Calanìca Grillo-Viognier White (Sicilia)
## 34 Envolve 2010 Puma Springs Vineyard Red (Dry Creek Valley)
## 35 Envolve 2011 Sauvignon Blanc (Sonoma Valley)
## 36 Erath 2010 Hyland Pinot Noir (McMinnville)
## 37 Estampa 2011 Estate Viognier-Chardonnay (Colchagua Valley)
## 38 Feudi del Pisciotto 2010 Missoni Cabernet Sauvignon (Sicilia)
## 39 Feudi di San Marzano 2011 I Tratturi Primitivo (Puglia)
## 40 Feudo di Santa Tresa 2011 Purato Made With Organic Grapes Nero d'Avola (Sicilia)
## 41 Feudo Montoni 2011 Catarratto (Sicilia)
## 42 Hawkins Cellars 2009 Pinot Noir (Willamette Valley)
## 43 Henry Fessy 2012 Nouveau (Beaujolais)
## 44 Robert Hall 2011 Sauvignon Blanc (Paso Robles)
## 45 Sundance 2011 Merlot (Maule Valley)
## 46 Tarara 2010 #SocialSecret Red (Virginia)
## 47 Tasca d'Almerita 2011 Sallier de la Tour Inzolia (Sicilia)
## 48 The White Knight 2011 Riesling (Lake County)
## 49 Trump 2011 Sauvignon Blanc (Monticello)
## 50 Vignerons de Bel Air 2011 Eté Indien (Brouilly)
## 51 Viticultori Associati Canicatti 2008 Scialo Red (Sicilia)
## 52 Casa Silva 2008 Gran Reserva Petit Verdot (Colchagua Valley)
## 53 Cantine di Dolianova 2010 Dolia (Monica di Sardegna)
## 54 Château de Sours 2011 La Fleur d'Amélie (Bordeaux Blanc)
## 55 Corvo 2010 Rosso Red (Sicilia)
## 56 RustRidge 2010 Estate Bottled Chardonnay (Napa Valley)
## 57 Souverain 2010 Chardonnay (North Coast)
## 58 Tasca d'Almerita 2011 Sallier de la Tour Grillo (Sicilia)
## 59 Tres Palacios 2011 Reserve Pinot Noir (Maipo Valley)
## 60 Mellisoni 2014 Malbec (Columbia Valley (WA))
## 61 Okapi 2013 Estate Cabernet Sauvignon (Napa Valley)
## 62 Podere dal Nespoli 2015 Prugneto Sangiovese (Romagna)
## 63 Ram 2014 Alder Ridge Vineyard Cabernet Franc (Columbia Valley (WA))
## 64 Roland Champion NV Brut Rosé (Champagne)
## 65 Sevtap 2015 Golden Horn Sauvignon Blanc (Santa Ynez Valley)
## 66 Simonnet-Febvre 2015 Chablis
## 67 Vignerons des Terres Secrètes 2015 Mâcon-Milly Lamartine
## 68 Basel Cellars 2013 Inspired Red (Columbia Valley (WA))
## 69 Cocobon 2014 Red (California)
## 70 Collet NV Brut Rosé (Champagne)
## 71 Drumheller 2014 Chardonnay (Columbia Valley (WA))
## 72 Eco Terreno 2013 Old Vine Cabernet Sauvignon (Alexander Valley)
## 73 Grifalco 2013 Daginestra (Aglianico del Vulture)
## 74 Hindsight 2013 Bella Vetta Vineyard Cabernet Sauvignon (Howell Mountain)
## 75 Hindsight 2012 Estate Grown Petite Sirah (Calistoga)
## 76 Mulvane Wine Co. 2013 The Cypher Red (Napa Valley)
## 77 Schmitt Söhne 2015 Riesling (Rheinhessen)
## 78 Yalumba 2016 Made With Organic Grapes Chardonnay (South Australia)
## 79 Z'IVO 2015 Rosé of Pinot Noir (Eola-Amity Hills)
## 80 Adega Cooperativa do Cartaxo 2014 Bridão Touriga Nacional (Tejo)
## 81 Aresti 2014 Special Release Reserva Carmenère (Rapel Valley)
## 82 Spyro 2014 Albariño (Rías Baixas)
## 83 Lionel Osmin & Cie 2016 La Réserve Petit Manseng (Vin de France)
## 84 Mitolo 2016 Jester Sangiovese Rosé (McLaren Vale)
## 85 Napa Cellars 2014 Classic Zinfandel (Napa Valley)
## 86 P.J. Valckenberg 2015 Undone Dry Riesling (Rheinhessen)
## 87 Palencia 2016 Albariño (Ancient Lakes)
## 88 Passaggio 2014 Blau Vineyards Merlot (Knights Valley)
## 89 Poggio Alloro 2014 Le Mandorle Riserva (Vernaccia di San Gimignano)
## 90 Fattoria Sardi 2015 Rosato (Toscana)
## 91 Ferrari-Carano 2014 Siena Red (Sonoma County)
## 92 Folie à Deux 2015 Pinot Gris (Sonoma Coast)
## 93 Franciscan 2013 Magnificat Meritage (Napa Valley)
## 94 Fuchs 2015 Grüner Veltliner (Burgenland)
## 95 Gård 2014 Grand Klasse Reserve Lawrence Vineyards Viognier (Columbia Valley (WA))
## 96 Henry Fessy 2015 Juliénas
## 97 Henry Fessy 2015 Régnié
## 98 Heron Hill 2015 Ingle Vineyard Riesling (Finger Lakes)
## 99 Serpaia di Endrizzi 2010 Dono Riserva (Morellino di Scansano)
## 100 Soquel Vineyards 2013 Intreccio Library Selection Red (Napa Valley)
## 101 Ventosa 2015 Pinot Gris (Finger Lakes)
## 102 Lamoreaux Landing 2014 Red Oak Vineyard Riesling (Finger Lakes)
## 103 Lamoreaux Landing 2014 Yellow Dog Vineyard Riesling (Finger Lakes)
## 104 Leyda 2015 Single Vineyard Falaris Hill Chardonnay (Leyda Valley)
## 105 Madonna Alta 2014 Nativo Red (Toscana)
## 106 Marchesi Antinori 2015 Villa Antinori White (Toscana)
## 107 Marchesi de' Frescobaldi 2014 Castiglioni Red (Toscana)
## 108 Marchesi de' Frescobaldi 2015 Ammiraglia Massovivo Vermentino (Toscana)
## 109 Martin Ranch 2014 J.D. Hurley Zinfandel (Santa Clara Valley)
## 110 Ornellaia 2014 Le Volte Red (Toscana)
## 111 Pardon et Fils 2015 Les Quartelets (Brouilly)
## 112 Piña 2013 Wolff Vineyard Cabernet Sauvignon (Yountville)
## 113 Podere Ciona 2014 Semifonte Red (Toscana)
## 114 Poggioventoso 2015 Poetico White (Toscana)
## 115 Pull 2012 BDX Red (Paso Robles)
## 116 Pull 2013 Chardonnay (Paso Robles)
## 117 R2 2013 Camp 4 Vineyard Grenache Blanc (Santa Ynez Valley)
## 118 Rideau 2014 Estate Syrah
## 119 Tenuta Forconi 2013 Toscano Red (Toscana)
## 120 Dopff & Irion 2004 Schoenenbourg Grand Cru Vendanges Tardives Riesling (Alsace)
## 121 Ceretto 2003 Bricco Rocche Prapó (Barolo)
## 122 Matrix 2007 Stuhlmuller Vineyard Chardonnay (Alexander Valley)
## 123 Mauritson 2007 Rockpile Cemetary Vineyard Zinfandel (Rockpile)
## 124 Henry's Drive Vignerons 2006 Parson's Flat Shiraz-Cabernet Sauvignon (Padthaway)
## 125 Silverado 2006 Cabernet Sauvignon (Napa Valley)
## 126 Le Riche 2003 Cabernet Sauvignon Reserve Cabernet Sauvignon (Stellenbosch)
## 127 Pierre Sparr 2007 Vendages Tardives Gewurztraminer (Alsace)
## 128 Pierre Sparr 2008 Alsace One White (Alsace)
## 129 Kuentz-Bas 2008 Pinot Blanc (Alsace)
## 130 Camberley 2004 Philosophers' Stone Red (Stellenbosch)
## 131 Ceretto 2003 Bricco Rocche Brunate (Barolo)
## 132 Dopff & Irion 2008 Gentil White (Alsace)
## 133 Delheim 2001 Grand Reserve Cabernet Sauvignon (Simonsberg-Stellenbosch)
## 134 Poderi Luigi Einaudi 2003 Barolo
## 135 Clark-Clauden 2007 Cabernet Sauvignon (Napa Valley)
## 136 Giacomo Ascheri 2001 Sorano (Barolo)
## 137 Lassègue 2003 Saint-Émilion
## 138 Beaumont 2005 Hope Marguerite Chenin Blanc (Walker Bay)
## 139 Dopff & Irion 2008 Crustacés White (Alsace)
## 140 Kuentz-Bas 2007 Cuvée Jerémy Sélection de Grains Nobles Pinot Gris (Alsace)
## 141 Poderi Colla 2005 Costa Bruna (Barbera d'Alba)
## 142 Giacomo Ascheri 2003 Vigna dei Pola (Barolo)
## 143 Banyan 2007 Riesling (Santa Lucia Highlands)
## 144 Domaine Zind-Humbrecht 2007 Hunawihr Clos Windsbuhl Pinot Gris (Alsace)
## 145 Terra Valentine 2013 K Block Cabernet Sauvignon (Spring Mountain District)
## 146 Testarossa 2013 Guidotti Vineyard Pinot Noir (Santa Lucia Highlands)
## 147 Vincent Vineyards 2010 Family Reserve Cabernet Sauvignon (Santa Ynez Valley)
## 148 Vincent Vineyards 2012 Family Reserve Cabernet Sauvignon (Santa Ynez Valley)
## 149 Weingut Liebfrauenstift 2014 Dry Riesling (Rheinhessen)
## 150 Wrath 2013 Destruction Level Red (Monterey)
## 151 Yardstick 2013 Ruth's Reach Cabernet Sauvignon (Napa Valley)
## 152 Herdade Grande 2014 Gerações Colheita Seleccionada Branco White (Alentejano)
## 153 Albatross Ridge 2012 Estate Reserve Pinot Noir (Carmel Valley)
## 154 Alta Colina 2012 Old 900 Syrah (Paso Robles)
## 155 Marques de Griñon 2010 Single Vineyard Estate Bottled Graciano (Dominio de Valdepusa)
## 156 Big Basin 2013 Syrah (Santa Cruz Mountains)
## 157 Carl Graff 2014 Graacher Himmelreich Spätlese Riesling (Mosel)
## 158 Casa Santa Vitória 2013 Grande Reserva Tinto Red (Alentejano)
## 159 Castello di Gabbiano 2012 Bellezza Gran Selezione (Chianti Classico)
## 160 Castello Romitorio 2011 Filo di Seta (Brunello di Montalcino)
## 161 Château Vincens 2012 Malbec (Cahors)
## 162 Chronic Cellars 2013 Mr. Nibbles Red (Paso Robles)
## 163 Claiborne & Churchill 2014 Claiborne Vineyard Riesling (Edna Valley)
## 164 Collin-Bourisset 2011 Hospices Civils de Romanèche Thurins (Moulin-à-Vent)
## 165 Conde de Velázquez 2012 Condesa Real Premium Blend Red (Aconcagua Valley)
## 166 Cono Sur 2012 20 Barrels Cabernet Sauvignon (Maipo Valley)
## 167 Domaine Berthoumieu 2013 Charles de Batz Tannat-Cabernet (Madiran)
## 168 Dracaena 2013 Cabernet Franc (Paso Robles)
## 169 Duckhorn 2012 Rector Creek Vineyard Merlot (Napa Valley)
## 170 Dutton-Goldfield 2014 Dutton Ranch Pinot Noir (Russian River Valley)
## 171 Fritz Haag 2014 Brauneberger Feinherb Riesling (Mosel)
## 172 Fritz Haag 2014 Riesling (Mosel)
## 173 G7 2012 The 7th Generation Gran Reserva Estate Bottled Cabernet Sauvignon (Loncomilla Valley)
## 174 Le Cadeau 2014 Pinot Noir (Willamette Valley)
## 175 Stoneleigh 2008 Sauvignon Blanc (Marlborough)
## 176 Tenuta Peter Sölva & Söhne 2007 De Silva Sauvignon (Alto Adige)
## 177 TerraMater 2006 Unusual Cabernet-Shiraz-Zinfandel Red (Maipo Valley)
## 178 Isole e Olena 2005 Chianti Classico
## 179 Kenwood 2005 Jack London Vineyard Syrah (Sonoma Valley)
## 180 La Chablisienne 2006 Les Vénérables Vieilles Vignes (Chablis)
## 181 Manzoni 2006 Lucia Highland Vineyard Chardonnay (Santa Lucia Highlands)
## 182 McIntyre Vineyards 2006 Mission Ranch Pinot Noir (Arroyo Seco)
## 183 Abbadia Ardenga 2003 M. Vigna (Brunello di Montalcino)
## 184 Alamos 2007 Torrontés (Salta)
## 185 Anaba 2007 Chardonnay (Sonoma Coast)
## 186 Apaltagua 2007 Envero Gran Reserva Carmenère (Colchagua Valley)
## 187 Harrington 2006 Wiley Vineyard Pinot Noir (Anderson Valley)
## 188 Abbazia Santa Anastasia 2003 Montenero Red (Sicilia)
## 189 Viña Bisquertt 2007 Casa La Joya Reserve Merlot (Colchagua Valley)
## 190 Emiliana 2008 Natura Chardonnay (Casablanca Valley)
## 191 Fattoria Alois 2007 Campole Red (Campania)
## 192 Henry's Drive Vignerons 2006 The Trial of John Montford Cabernet Sauvignon (Padthaway)
## 193 Aldegheri 2003 Le Pietre Santambrogio Red (Rosso del Veronese)
## 194 Bertrand Ambroise 2006 St.-Romain
## 195 Campomaggio 2005 Chianti Classico
## 196 Carpineto 2003 Riserva (Vino Nobile di Montepulciano)
## 197 Cesani 2007 Pancole (Vernaccia di San Gimignano)
## 198 Spier 2014 21 Gables Chenin Blanc (Western Cape)
## 199 Sequum 2013 Four Soil Mélange Cabernet Sauvignon (Napa Valley)
## 200 Sierra Starr 2014 Rising Starr Estate Bottled Cabernet Franc (Nevada County)
## 201 Tenuta di Sesta 2011 Riserva (Brunello di Montalcino)
## 202 Terlan 2014 Nova Domus Riserva White (Alto Adige)
## 203 Yatir 2011 Syrah (Judean Hills)
## 204 Adega Cooperativa de Borba 2012 Montes Claros Garrafeira Red (Alentejo)
## 205 J. Lohr 2014 Gesture G-S-M (Paso Robles)
## 206 J. Lohr 2015 October Night Chardonnay (Arroyo Seco)
## 207 Courtney Benham 2014 Cabernet Sauvignon (Napa Valley)
## 208 Del Carlo Winery 2014 Home Ranch Teldeschi Vineyards Century Old Vine Zinfandel (Dry Creek Valley)
## 209 Delaire Graff 2013 Reserve White (Coastal Region)
## 210 Domaine St Pierre 2014 Red (Côtes du Rhône)
## 211 Eikendal 2014 Chardonnay (Western Cape)
## 212 Famille Perrin 2013 Les Christins Red (Vacqueyras)
## 213 Matarromera 2015 Fermentado en Barrica Verdejo (Rueda)
## 214 MCV 2014 1105 Red (Paso Robles)
## 215 Mounts 2014 Verah Red (Dry Creek Valley)
## 216 Or Haganuz 2014 French Blend Red (Galilee)
## 217 Podere Scopetone 2012 Brunello di Montalcino
## 218 Quinta de Foz de Arouce 2013 Red (Beira Atlantico)
## 219 Robert Mondavi 2015 Fumé Blanc (Napa Valley)
## 220 Samuel Tinon 2015 Megyer Dry Furmint (Tokaj)
## 221 Sixteen by Twenty 2014 Chardonnay (Sonoma Coast)
## 222 St. Pauls 2014 Passion Riserva Pinot Bianco (Alto Adige)
## 223 Talenti 2011 Trentennale (Brunello di Montalcino)
## 224 Terlan 2015 Pinot Bianco (Alto Adige)
## 225 Mendel 2014 Lunta Malbec (Luján de Cuyo)
## 226 Oldenburg 2013 Chardonnay (Stellenbosch)
## 227 Oldenburg 2014 Chenin Blanc (Stellenbosch)
## 228 Wagner 2006 Grace House Pinot Noir (Finger Lakes)
## 229 Treleaven 2006 Semi-Dry Riesling (Cayuga Lake)
## 230 Benessere 2005 Costa Del Sol Red (Napa Valley)
## 231 Bloomer Creek 2006 Gewürztraminer (Finger Lakes)
## 232 Andean Sky 2007 Bonarda (Mendoza)
## 233 Angove's 2006 Red Belly Black Shiraz (South Australia)
## 234 Silvan Ridge 2006 Reserve Pinot Noir (Willamette Valley)
## 235 Talamonti 2007 Cerasuolo Rosè (Montepulciano d'Abruzzo)
## 236 Testarossa 2006 Thompson Vineyard Syrah (Santa Barbara County)
## 237 Meeker 2004 Kiss Ridge Vineyard Cabernet Sauvignon (Diamond Mountain District)
## 238 Consorzio Vini Tipici di San Marino NV Moscato (San Marino)
## 239 D'Arenberg 2006 The Derelict Vineyard Grenache (McLaren Vale)
## 240 Dogwood 2005 Cabernet Sauvignon (Mendocino)
## 241 Domaine du Tariquet 2007 Ugni Blanc-Colombard (Vin de Pays des Côtes de Gascogne)
## 242 Falcor 2005 Sangiovese (Napa Valley)
## 243 Hayman & Hill 2007 Reserve Selection Chardonnay (Russian River Valley)
## 244 Hermann J. Wiemer 2002 Blanc de Blanc Chardonnay (Finger Lakes)
## 245 J. & F. Lurton 2007 Herederos de François Lurton Villafrance de Duero Red (Vino de la Tierra de Castilla y León)
## 246 Finca Las Moras 2007 Reserve Chardonnay (San Juan)
## 247 Long Flat 2006 Destinations Sauvignon Blanc (Adelaide Hills)
## 248 Work 2004 Reserve Merlot (Sonoma Mountain)
## 249 Amity 2006 Estate Single Vineyard Pinot Noir (Willamette Valley)
## 250 Autumn Hill 2007 Petit Verdot-Merlot Red (Monticello)
## 251 Blue Rock 2005 Estate Cabernet Sauvignon (Alexander Valley)
## 252 Cherry Hill 2006 Papillon Estate Pinot Noir (Willamette Valley)
## 253 Cloud 9 2006 Seity Zinfandel (Amador County)
## 254 Cueva de las Manos 2007 Reserve Malbec (Luján de Cuyo)
## 255 David Fulton 2008 Petite Sirah (St. Helena)
## 256 Esterlina 2009 Reserva Pinot Noir (Cole Ranch)
## 257 Goats do Roam Wine Co. 2008 Goat-Roti Syrah-Viognier (Coastal Region)
## 258 Graham Beck 2007 The William Red (Coastal Region)
## 259 Hartenberg 2007 Cabernet Sauvignon (Stellenbosch)
## 260 Vignobles 46N118 2007 Noir 46 Malbec (Cahors)
## 261 Willamette Valley Vineyards 2009 Estate Pinot Noir (Willamette Valley)
## 262 Algodon 2008 Estate Blend Gran Reserva Red
## 263 Beaver Creek 2008 Fairytale Red (Napa Valley)
## 264 Byron 2009 Monument Pinot Noir (Santa Maria Valley)
## 265 Jardin 2007 Syrah (Stellenbosch)
## 266 Jardin 2009 Nine Yards Chardonnay (Stellenbosch)
## 267 Kaiken 2008 Corte Malbec-Bonarda-Petit Verdot Red (Mendoza)
## 268 Lungarotti 2007 Torre di Giano Vigna il Pino White (Torgiano)
## 269 Marchesi Fumanelli 2005 Terso White (Veneto)
## 270 Mariell 2009 Blaufränkisch (Leithaberg)
## 271 Livio Felluga 2009 Friulano (Colli Orientali del Friuli)
## 272 My Big Fat Greek Wine 2010 Assyrtico (Santorini)
## 273 Nals Margreid 2010 Sirmian Pinot Bianco (Alto Adige)
## 274 O. Fournier 2007 B Crux Red (Uco Valley)
## 275 Pico Maccario 2010 Estrosa White (Monferrato)
## 276 Sottano 2009 Reserva de Familia Cabernet Sauvignon (Mendoza)
## 277 St. Francis 2009 Old Vines Zinfandel (Sonoma County)
## 278 Trailhead 2010 Cabernet Sauvignon (Napa Valley)
## 279 Erath 2009 Bishop Creek Pinot Noir
## 280 Franz Haas 2009 Sauvignon (Alto Adige)
## 281 Forstreiter 2012 Schiefer Reserve Grüner Veltliner (Kremstal)
## 282 Cambria 2011 Bench Break Vineyard Pinot Noir (Santa Maria Valley)
## 283 I Giusti e Zanza 2009 Dulcamara Red (Toscana)
## 284 J. Christopher 2011 Bella Vida Vineyard Unfiltered Pinot Noir (Dundee Hills)
## 285 Viña Cobos 2011 Marchiori Vineyard Block C2 Malbec (Perdriel)
## 286 Salomon-Undhof 2011 Steiner Kögl Erste Lage Riesling (Kremstal)
## 287 Talley 2011 Rincon Vineyard Pinot Noir (Arroyo Grande Valley)
## 288 Acústic 2010 Braó Vinyes Velles Carignan-Grenache (Montsant)
## 289 Josef Schmid 2011 Kremser Gebling Erste Lage Grüner Veltliner (Kremstal)
## 290 Parallel 2010 Fortune Teller Cabernet Sauvignon (Napa Valley)
## 291 Château Lafon-Rochet 2011 Saint-Estèphe
## 292 Dionigi 2006 Sagrantino di Montefalco
## 293 Domaine Daniel Dugois 2006 Vin Jaune Savagnin (Arbois)
## 294 Kilikanoon 2009 Green's Vineyard Shiraz (Barossa Valley)
## 295 Finca Sophenia 2011 Synthesis Malbec (Tupungato)
## 296 Treana 2008 Treana Red Cabernet Sauvignon-Syrah (Paso Robles)
## 297 Ventisquero 2008 Grey [Glacier] Single Block Trinidad Vineyard Cabernet Sauvignon (Maipo Valley)
## 298 Aquinas 2008 Cabernet Sauvignon (Napa Valley)
## 299 Arboleda 2009 Cabernet Sauvignon (Aconcagua Valley)
## 300 Attilio Ghisolfi 2007 Pinay Red (Langhe)
## 301 Benessere 2007 Estate Sangiovese (Napa Valley)
## 302 Buried Cane 2009 Whiteline No Oak Chardonnay (Columbia Valley (WA))
## 303 Cantina del Nebbiolo 2008 Roero
## 304 Cascina Adelaide 2005 4 Vigne (Barolo)
## 305 Cascina La Ghersa 2004 Vignassa (Barbera d'Asti Superiore Nizza)
## 306 Claudia Springs 2007 Zinfandel (Mendocino County)
## 307 Cramele Recas 2009 Chardonnay (Recas)
## 308 Domaine Bertagna 2009 Les Dames Huguettes (Côte de Nuits-Villages)
## 309 Domaine Sigalas 2010 Asirtiko Athiri White (Santorini)
## 310 Socré 2006 Nebbiolo (Langhe)
## 311 Boffa 2006 Nebbiolo (Langhe)
## 312 Otto's Constant Dream 2008 Syrah (Hawke's Bay)
## 313 Mount Veeder 2008 Cabernet Sauvignon (Napa Valley)
## 314 Rabino 2008 Roero
## 315 Robert Mondavi 2008 Cabernet Sauvignon (Napa Valley)
## 316 Bellussi NV Extra Dry (Prosecco di Valdobbiadene)
## 317 Château Mont-Pérat 2008 Les Amants Mont-Pérat (Bordeaux Blanc)
## 318 Château Tour de Mirambeau 2006 Bordeaux Blanc
## 319 Aresti 2007 Reserva Merlot (Curicó Valley)
## 320 Paladin 2007 Millesimato Brut Prosecco (Veneto)
## 321 Perlage 2008 Col di Manza Extra Dry Millesimato (Prosecco di Valdobbiadene)
## 322 Sant Eurosia 2007 Brut (Prosecco di Valdobbiadene)
## 323 Sant Eurosia 2007 Millesimato Dry (Prosecco di Valdobbiadene)
## 324 J. & F. Lurton 2006 Gran Araucano Cabernet Sauvignon (Colchagua Valley)
## 325 L'Antica Quercia 2007 Matiú Brut (Prosecco di Conegliano)
## 326 Lucas Vineyards 2007 Vignoles (Finger Lakes)
## 327 Marsuret NV Extra Dry (Prosecco di Valdobbiadene)
## 328 De Martino 2007 Legado Reserva Chardonnay (Limarí Valley)
## 329 Beringer 2007 Alluvium Blanc White (Knights Valley)
## 330 Brutocao 2006 Reserve Zinfandel (Mendocino)
## 331 Clos La Chance 2006 Lila's Cuvée Red (Central Coast)
## 332 Cono Sur 2008 Visión Gewürztraminer (Casablanca Valley)
## 333 Sommariva NV Palazzo Rosso Brut (Prosecco di Conegliano)
## 334 Spagnol NV Col del Sas Extra Dry (Prosecco di Valdobbiadene)
## 335 Jacquart NV Mosaïque Rosé Brut (Champagne)
## 336 L'Antica Quercia 2007 Arió Extra Dry (Prosecco di Conegliano)
## 337 Koyle 2015 Costa Pinot Noir (Colchagua Costa)
## 338 Château Notre Dame du Quatourze 2015 Rosé (Languedoc)
## 339 Mémoires 2015 Rosé (Coteaux Varois en Provence)
## 340 Cavas Hill NV 1887 Rosado Sparkling (Cava)
## 341 Antoine Moltès & Fils 2015 Tradition Pinot Gris (Alsace)
## 342 Pezzi King 2013 Serracino Reserve Zinfandel (Dry Creek Valley)
## 343 Bellisco NV Sparkling (Cava)
## 344 Pura 8 2010 Grand Reserve Pinot Noir (Rapel Valley)
## 345 Viña Tarapacá 2015 Gran Reserva Chardonnay (Leyda Valley)
## 346 Chambers Rosewood Vineyards NV Rare Muscat (Rutherglen)
## 347 Chambers Rosewood Vineyards NV Rare Muscadelle (Rutherglen)
## 348 Robert Weil 2014 Kiedrich Gräfenberg Trockenbeerenauslese Riesling (Rheingau)
## 349 Chambers Rosewood Vineyards NV Grand Muscat (Rutherglen)
## 350 Torbreck 2012 RunRig Shiraz-Viognier (Barossa)
## 351 Cavallotto 2010 Vignolo Riserva (Barolo)
## 352 Oremus 2005 Eszencia (Tokaji)
## 353 Rochioli 2014 South River Chardonnay (Russian River Valley)
## 354 Louis Latour 2014 Le Montrachet (Montrachet)
## 355 Robert Weil 2014 Kiedrich Gräfenberg Beerenauslese Riesling (Rheingau)
## 356 Rochioli 2014 Sweetwater Chardonnay (Russian River Valley)
## 357 Jasper Hill 2013 Georgia's Paddock Shiraz (Heathcote)
## 358 Château de la Tour 2013 Vieilles Vignes (Clos de Vougeot)
## 359 Weingut Hans Bausch 2011 Hattenheimer Hassel Auslese Riesling (Rheingau)
## 360 Philippe Colin 2014 Les Chenevottes Premier Cru (Chassagne-Montrachet)
## 361 Torbreck 2012 Descendant Shiraz-Viognier (Barossa Valley)
## 362 Bel Colle 2012 Simposio (Barolo)
## 363 J. Davies 2012 Jamie Cabernet Sauvignon (Diamond Mountain District)
## 364 Louis Latour 2014 Criots-Bâtard-Montrachet
## 365 Winderlea 2014 Weber Vineyard Pinot Noir (Dundee Hills)
## 366 Wakefield 2013 St. Andrews Single Vineyard Release Shiraz (Clare Valley)
## 367 Cantina Terlano 2000 Vorberg Pinot Bianco (Alto Adige)
## 368 De Martino 1999 Reserva de la Familia Carmenère (Maipo Valley)
## 369 Montresor 2001 Bianco di Custoza
## 370 Ronco del Gelso 1999 Chardonnay (Friuli)
## 371 Sebastiani 1991 Cherryblock Vineyard Cabernet Sauvignon (Sonoma Valley)
## 372 Elena Walch 2002 Castel Ringberg Sauvignon Blanc (Alto Adige)
## 373 Gini 2002 Classico (Soave)
## 374 Borgo Conventi 2002 I Fiori del Borgo Sauvignon Blanc (Collio)
## 375 Ceago Vinegarden 2001 Kathleen's Vineyard Sauvignon Blanc (Mendocino County)
## 376 Valiano 1997 Vino in Musica Sangiovese (Toscana)
## 377 Volpe Pasini 2002 Zuc de Volpe Pinot Grigio (Colli Orientali del Friuli)
## 378 Zenato 2001 Vigneto Massoni White (Naoussa)
## 379 L.A. Cetto 1996 Private Reserve Nebbiolo (Valle de Guadalupe)
## 380 La Vis 2001 Bianco dei Sorni White (Trentino)
## 381 Lapostolle 2002 Estate Bottled Merlot (Rapel Valley)
## 382 Fratelli Zeni 2000 Vigne Alte (Bianco di Custoza)
## 383 Carmen 2000 Estate Grown Reserve Cabernet Sauvignon (Maipo Valley)
## 384 Tommasi 2001 Vigneto Santa Cecilia Chardonnay (Valdadige)
## 385 San Michele Eppan 2002 Sanct Valentin Gewürztraminer (Alto Adige)
## 386 Vinoce 2001 Sauvignon Blanc (Rutherford)
## 387 Merriam 2000 Windacre Vineyard Merlot (Russian River Valley)
## 388 Murphy-Goode 2000 Reserve Fume Sauvignon Blanc (Alexander Valley)
## 389 Kynsi 1999 Paragon Vineyard Pinot Noir (Edna Valley)
## 390 Cantina Terlano 2002 Terlano Classico White (Alto Adige)
## 391 Casa Julia 2001 Reserve Cabernet Sauvignon (Maipo Valley)
## 392 Valdivieso 2001 Reserve Chardonnay (Central Valley)
## 393 Bridlewood 2000 Sauvignon Blanc (Santa Ynez Valley)
## 394 San Pedro 2002 Castillo de Molina Reserva Chardonnay (Lontué Valley)
## 395 Undurraga 2001 Reserva Merlot (Maipo Valley)
## 396 Conti Formentini 2001 Rylint White (Collio)
## 397 Cline 2007 Ancient Vines Zinfandel (California)
## 398 Cono Sur 2008 Visión Pinot Noir (Colchagua Valley)
## 399 Aresti 2008 Estate Selection Sauvignon Blanc (Curicó Valley)
## 400 Astoria 2008 Extra Dry (Prosecco di Valdobbiadene)
## 401 Cantine Maschio NV Brut Prosecco (Italy)
## 402 Val d'Oca 2008 Millesimato Extra Dry (Prosecco di Valdobbiadene)
## 403 Viña Bisquertt 2007 Casa la Joya Reserve Syrah (Colchagua Valley)
## 404 Vinavanti 2005 Le Bon Viveur Red (California)
## 405 Vino V 2005 White Hawk Vineyard Syrah (Santa Barbara County)
## 406 Viticoltori Ponte NV Extra Dry (Prosecco del Veneto)
## 407 Jacquart NV Brut Mosaïque (Champagne)
## 408 Lapostolle 2007 Casa Chardonnay (Casablanca Valley)
## 409 Le Vigne di Alice 2008 Millesimato Extra Dry (Prosecco di Conegliano e Valdobbiadene)
## 410 McGregor 2007 Dry Gewürztraminer (Finger Lakes)
## 411 Miles 2006 Cabernet Franc (Finger Lakes)
## 412 Morro Bay 2006 Split Oak Vineyard Cabernet Sauvignon (California)
## 413 Perlage 2008 Canah Brut (Prosecco di Valdobbiadene)
## 414 Pizzolato 2007 Prosecco del Veneto
## 415 Pizzolato NV Stefany Extra Dry (Prosecco del Veneto)
## 416 Red Newt Cellars 2007 Riesling (Finger Lakes)
## 417 Ca'Tullio NV Extra Dry (Prosecco del Veneto)
## 418 Pizzolato NV Prosecco del Veneto
## 419 Michlits 2007 Biokult Zweigelt Pinot Noir Red (Burgenland)
## 420 Château de Callac 2011 Graves
## 421 Château de Marsan 2015 Bordeaux Blanc
## 422 Guardian 2013 Confidential Source Merlot (Columbia Valley (WA))
## 423 Kerloo 2015 Blue Mountain Vineyard Grenache Blanc (Walla Walla Valley (WA))
## 424 Kohl 2015 Kittl Grüner Veltliner (Weinviertel)
## 425 Las Positas 2014 Verdigris White (California)
## 426 Lieb 2015 Bridge Lane Rosé (New York)
## 427 Luberri 2011 Seis (Rioja)
## 428 Macari 2010 Cuvée Gabriella Brut Rosé Sparkling (North Fork of Long Island)
## 429 Malat 2015 Crazy Creatures Grüner Veltliner (Kremstal)
## 430 Milbrandt 2013 The Estates Clifton Hill Vineyard Syrah (Wahluke Slope)
## 431 Ojai 2014 McGinley Vineyard Sauvignon Blanc (Santa Ynez Valley)
## 432 ONX 2015 Indie Tempranillo (Templeton Gap District)
## 433 Pomum 2014 Upland Vineyard Riesling (Snipes Mountain)
## 434 Prospect 772 2014 Stepping Stones Grenache Blanc (Santa Barbara County)
## 435 Revello Fratelli 2012 Rocche dell'Annunziata (Barolo)
## 436 Gebeshuber 2015 Lage Modler Zierfandler (Thermenregion)
## 437 Tenuta La Marchesa 2015 Gold Label (Gavi)
## 438 Trione 2012 Henry's Blend Red (Alexander Valley)
## 439 Vinos de Arganza 2012 Século Mencía (Bierzo)
## 440 Vinos de Arganza 2013 Marqués de Montejos Selección Mencía (Vino de la Tierra de Castilla y León)
## 441 Walla Walla Vintners 2013 Cabernet Sauvignon (Walla Walla Valley (WA))
## 442 Winzer Krems 2015 Rosé Zweigelt (Niederösterreich)
## 443 Wölffer 2013 Caya Cabernet Franc (Long Island)
## 444 Dunbar 2012 Estate Grown Zinfandel (Sonoma Valley)
## 445 Eschenhof Holzer 2015 Altweingarten Grüner Veltliner (Wagram)
## 446 Fattorie Romeo del Castello 2015 Vigorosa Rosato Nerello Mascalese (Etna)
## 447 Flying Cloud 2014 Cabernet Sauvignon (Paso Robles)
## 448 Gadais Père et Fils 2015 Domaine de la Vieille Cure Sur Lie (Muscadet Sèvre et Maine)
## 449 André Brunel 2014 Domaine de la Becassonne White (Côtes du Rhône)
## 450 Majolini 2006 Pas Dosé Aligi Sassu Chardonnay (Franciacorta)
## 451 Montaudon NV Classe M (Champagne)
## 452 Montemercurio 2007 Messaggero (Vino Nobile di Montepulciano)
## 453 Patrick Javillier 2011 Les Tillets (Meursault)
## 454 Philippe Fontaine NV Brut Prestige (Champagne)
## 455 Pillitteri 2012 Reserve Icewine Vidal (Niagara-On-The-Lake)
## 456 Robert Mondavi 2011 Reserve Chardonnay (Carneros)
## 457 Roederer Estate NV Brut Sparkling (Anderson Valley)
## 458 Rusack 2011 Solomon Hills Vineyard Pinot Noir (Santa Maria Valley)
## 459 Bellavista 2006 Gran Cuvée Pas Operé Sparkling (Franciacorta)
## 460 Chanoine NV Tzarina No 1 Brut (Champagne)
## 461 Chehalem 2011 Ridgecrest Vineyards Pinot Noir (Ribbon Ridge)
## 462 Chehalem 2012 Stoller Vineyards Pinot Blanc (Dundee Hills)
## 463 Henri de Villamont 2010 Blagny Premier Cru (Meursault)
## 464 Vollereaux 2007 Cuvée Marguerite Brut (Champagne)
## 465 Wittmann 2011 Westhofen Morstein GG Trocken Riesling (Rheinhessen)
## 466 Valentina Cubi 2008 Morar (Amarone della Valpolicella)
## 467 Deutz 2007 Blanc de Blancs Brut Chardonnay (Champagne)
## 468 Domaine Serene 2010 Evenstad Reserve Pinot Noir (Willamette Valley)
## 469 Dr. Loosen 2011 Ürziger Würzgarten Alte Reben GG Trocken Riesling (Mosel)
## 470 Dr. Loosen 2011 Wehlener Sonnenuhr Kabinett Riesling (Mosel)
## 471 H. Blin 2003 Édition Limitée Extra Brut (Champagne)
## 472 Henri de Villamont 2010 Les Chatelots Premier Cru (Chambolle-Musigny)
## 473 Henri de Villamont 2010 Les Feusselottes Premier Cru (Chambolle-Musigny)
## 474 Herdade Grande 2010 Gerações Colheita Seleccionada Red (Alentejano)
## 475 Jeaunaux-Robin 2004 Les Grands Nots Millesimé Brut (Champagne)
## 476 Bell 2009 Clone 6 Cabernet Sauvignon (Rutherford)
## 477 Castello di Amorosa 2009 La Castellana Red (Napa Valley)
## 478 Château Vray Croix de Gay 2010 Pomerol
## 479 Dampierre 2005 Grand Cru Family Reserve Brut (Champagne)
## 480 Santa Maria La Palma 2006 Riserva (Cannonau di Sardegna)
## 481 Sparkman 2009 Stella Mae Red (Red Mountain)
## 482 Argiolas 2008 Costera Cannonau (Isola dei Nuraghi)
## 483 Babcock 2010 Ocean's Ghost Pinot Noir (Sta. Rita Hills)
## 484 Cape View 2011 Chenin Blanc (Stellenbosch)
## 485 Ken Forrester 2011 Petit Chenin Blanc (Western Cape)
## 486 Louis Bernard 2009 Red (Côtes du Rhône Villages)
## 487 Lyeth 2010 L de Lyeth Cabernet Sauvignon (Sonoma County)
## 488 Marco Cecchini 2010 Tovè White (Colli Orientali del Friuli)
## 489 Vigneti Le Monde 2010 Pinot Grigio (Friuli Grave)
## 490 Vigneti Le Monde 2010 Sauvignon (Friuli Grave)
## 491 V&N; Cellars NV Reserva Brut Sparkling (Cava)
## 492 Winzer Krems 2011 Kellermeister Privat Goldberg Grüner Veltliner (Kremstal)
## 493 Zerba Cellars 2008 Sangiovese (Walla Walla Valley (WA))
## 494 Insania 2009 Red (Red Mountain)
## 495 Knapp 2011 Chardonnay (Finger Lakes)
## 496 Lava Cap 2010 Battonage Chardonnay (El Dorado)
## 497 Loess 2009 Collection Blanco Verdejo (Rueda)
## 498 MICA Cellars 2009 Babcock Vineyard Cabernet Franc (Suisun Valley)
## 499 Michael Pozzan 2010 Annabella Pinot Noir (Carneros)
## 500 Domaine du Grand Cros 2011 L'Esprit de Provence Rosé (Côtes de Provence)
## 501 El Coto 2011 Rosado Rosé (Rioja)
## 502 Fenestra 2010 Silvaspoons Vineyard Verdelho (Lodi)
## 503 Gunter Triebaumer NV Muscato Moscato (Österreichischer Sekt)
## 504 Hanna 2011 Sauvignon Blanc (Russian River Valley)
## 505 Alain Jaume et Fils 2009 Réserve Grand Veneur Red (Côtes du Rhône)
## 506 Aleo 2009 Tempranillo (Vino de la Tierra de Castilla y León)
## 507 Altùris 2011 White (Venezia Giulia)
## 508 Camaraderie 2009 Clifton Vineyard Syrah (Wahluke Slope)
## 509 Camaraderie 2009 Tempranillo (Yakima Valley)
## 510 Beringer 2014 Quantum Red (Napa Valley)
## 511 Big Basin 2014 Coastview Vineyard Chardonnay (Monterey County)
## 512 Boude Baudin 2010 Cuvée St Clément (Champagne)
## 513 Boude Baudin NV B. Zéro Brut Dosage (Champagne)
## 514 Conn Creek 2013 El Adobo Ranch Vineyard Cabernet Sauvignon (Chiles Valley)
## 515 Cono Sur 2012 20 Barrels Limited Edition Peralillo Estate Merlot (Colchagua Valley)
## 516 D.R. Stephens 2014 Silver Eagle Vineyard Pinot Noir (Sonoma Coast)
## 517 Davis Family 2014 Soul Patch Estate Grown Pinot Noir (Russian River Valley)
## 518 Davis Family 2014 Starr Ridge Vineyard Pinot Noir (Russian River Valley)
## 519 Domaine Jeannin-Naltet 2014 Le Clos l'Evêque Premier Cru (Mercurey)
## 520 Prospect 772 2014 The Brat Grenache (Calaveras County)
## 521 Qupé 2013 Doux Sawyer Lindquist Vineyard Marsanne (Edna Valley)
## 522 Qupé 2013 Sawyer Lindquist Vineyard Grenache (Edna Valley)
## 523 Rex Hill 2014 Sims Vineyard Pinot Noir (Willamette Valley)
## 524 Ruby 2015 Steve's Reserve Pinot Noir (Chehalem Mountains)
## 525 Structure 2014 Wallula Syrah (Horse Heaven Hills)
## 526 Testarossa 2015 Rincon Vineyard Chardonnay (Arroyo Grande Valley)
## 527 Tumwater 2014 Prince Hill Vineyard Reserve Pinot Noir (Dundee Hills)
## 528 Wittmann 2015 Trocken Scheurebe (Rheinhessen)
## 529 Jeaunaux-Robin NV Brut Zéro Sélection (Champagne)
## 530 Joseph Jewell 2014 Bucher Vineyard Pinot Noir (Russian River Valley)
## 531 Lapostolle 2013 Cuvée Alexandre Apalta Vineyard Made With Organic Grapes Syrah (Colchagua Valley)
## 532 Le Cadeau 2011 Blanc de Noir Sparkling (Oregon)
## 533 Le Cadeau 2015 Diversité Pinot Noir (Willamette Valley)
## 534 Le Cadeau 2015 Équinoxe Pinot Noir (Willamette Valley)
## 535 Le Vigne 2014 Di Domenico Cabernet Sauvignon (Paso Robles)
## 536 Maximin Grünhäuser 2015 Trocken Riesling (Mosel)
## 537 Northstar 2013 Red (Walla Walla Valley (WA))
## 538 Padis 2012 Cabernet Sauvignon (Napa Valley)
## 539 Paul O'Brien 2014 Bradley Vineyard Pinot Noir (Umpqua Valley)
## 540 Claiborne & Churchill 2014 Twin Creeks Estate Pinot Noir (Edna Valley)
## 541 Flying Goat Cellars 2012 Bien Nacido Vineyard Pinot Noir (Santa Maria Valley)
## 542 Flying Goat Cellars 2012 Solomon Hills Vineyard Pinot Noir (Santa Maria Valley)
## 543 Abbazia di Novacella 2012 Praepositus Passito Kerner (Alto Adige Valle Isarco)
## 544 Midsummer Cellars 2013 Cañon Creek Vineyard Cabernet Sauvignon (Napa Valley)
## 545 ONX 2013 Reckoning Red (Templeton Gap District)
## 546 Les Belles Collines 2012 Les Sommets Cabernet Sauvignon (Napa Valley)
## 547 Lutum 2014 Gap's Crown Vineyard Chardonnay (Sonoma Coast)
## 548 Turiya 2011 Stolpman Vineyard Sangiovese (Ballard Canyon)
## 549 Iron Horse 2013 Thomas Road Pinot Noir (Green Valley)
## 550 Brandini 2011 Resa 56 (Barolo)
## 551 Artesa 2014 Estate Reserve Chardonnay (Carneros)
## 552 Carlisle 2013 Pagani Ranch Zinfandel (Sonoma Valley)
## 553 Château Vignelaure 2015 Rosé (Coteaux d'Aix-en-Provence)
## 554 Clos d'Argentine 2013 Winemaker's Selection Reserva Malbec (Mendoza)
## 555 Mas de Cadenet 2015 Mas Negrel Cadenet Rosé (Côtes de Provence Sainte-Victoire)
## 556 Passing Time 2013 Cabernet Sauvignon (Horse Heaven Hills)
## 557 Resalte 2010 Gran Resalte (Ribera del Duero)
## 558 Sanctuary 2013 Bien Nacido Vineyard Pinot Noir (Santa Maria Valley)
## 559 Terre Rouge 2014 Enigma White (Sierra Foothills)
## 560 Limerick Lane 2013 Hail Mary Syrah-Grenache (Russian River Valley)
## 561 Limerick Lane 2013 Headpruned Block Syrah (Russian River Valley)
## 562 Loring Wine Company 2014 Durell Vineyard Pinot Noir (Sonoma Coast)
## 563 Eighty Four 2010 Petite Sirah (Napa Valley)
## 564 Flying Goat Cellars 2012 Rancho Santa Rosa Vineyard Pinot Noir (Sta. Rita Hills)
## 565 Four Lanterns 2013 Fire Light Syrah (Paso Robles)
## 566 Turiya 2011 Shapeshifter Red (Central Coast)
## 567 World's End 2013 If Six Was Nine Reserve Cabernet Sauvignon (Napa Valley)
## 568 Benegas 2011 Benegas Lynch La Encerrada Estate Vineyard Malbec (Mendoza)
## 569 W.H. Smith 2012 Reserve Cabernet Sauvignon (Howell Mountain)
## 570 Alleromb 2014 La Reyna Blanca Vineyard Chardonnay (Columbia Valley (WA))
## 571 Ardor 2015 Art Den Hoed Vineyard Syrah (Yakima Valley)
## 572 Berryessa Gap 2015 Albariño (Yolo County)
## 573 Brezza 2015 Dolcetto d'Alba
## 574 Château Bois Chantant 2015 Bordeaux Supérieur
## 575 Château de Campuget 2016 Tradition Rosé (Costières de Nîmes)
## 576 Château de l'Aubrade 2015 Bordeaux Supérieur
## 577 Château de Pressac 2014 Les Terrasses de Pressac (Saint-Émilion)
## 578 Chateau Lafayette Reneau 2016 Pinot Noir Rosé (Finger Lakes)
## 579 Château Maison Noble Saint Martin 2015 Château Jean de Bel Air (Bordeaux)
## 580 Cupcake 2016 Rosé (California)
## 581 Raconteur 2016 White (Washington)
## 582 Savage Grace 2016 Orange Oak Ridge Vineyard Gewürztraminer (Columbia Gorge (WA))
## 583 Seven Falls 2013 Merlot (Wahluke Slope)
## 584 Silvertip 2014 Unfiltered Estate Pinot Noir (Santa Cruz Mountains)
## 585 Steininger 2016 Grüner Veltliner (Kamptal)
## 586 Stevens 2016 StevensSteel Chardonnay (Yakima Valley)
## 587 Strauss 2016 Classic Pinot Blanc (Steiermark)
## 588 Strauss 2016 Classic Sauvignon Blanc (Südsteiermark)
## 589 Trinity River 2015 Chardonnay
## 590 Umathum 2015 Zweigelt (Burgenland)
## 591 Vintage Cowboy 2016 Chardonnay (Paso Robles)
## 592 Winzer Krems 2016 GV Grüner Veltliner (Niederösterreich)
## 593 Kontos 2014 Summit View Vineyard Malbec (Walla Walla Valley (WA))
## 594 Landhaus Mayer 2016 Riesling (Niederösterreich)
## 595 Lavau 2015 La Decelle Red
## 596 L'Ecole No. 41 2014 Cabernet Sauvignon (Columbia Valley (WA))
## 597 Lyrarakis 2015 Vilana (Crete)
## 598 Malat 2016 Furth-Palt Riesling (Kremstal)
## 599 Midnight 2013 Starlight Sangiovese (Paso Robles)
## 600 Michael Pozzan 2010 Cabernet Sauvignon (Alexander Valley)
## 601 Michele Chiarlo 2011 Le Marne (Gavi)
## 602 Monte Xanic 2012 Viña Kristel Sauvignon Blanc (Valle de Guadalupe)
## 603 Paoletti 2010 Cabernet Sauvignon (Oak Knoll District)
## 604 Peconic Bay Winery 2010 Cabernet Franc (North Fork of Long Island)
## 605 Príncipe de Viana 2008 Reserva 1423 Red (Navarra)
## 606 Proemio 2009 Gran Reserve Winemaker's Selection Red (Mendoza)
## 607 Quady North 2011 Bomba Grenache (Rogue Valley)
## 608 Quady North 2011 Steel-Ox Viognier (Rogue Valley)
## 609 Quinta do Portal 2012 Verdelho and Sauvignon Blanc White (Douro)
## 610 Raptor Ridge 2012 Estate Grüner Veltliner (Chehalem Mountains)
## 611 Rodney Strong 2012 Charlotte's Home Estate Sauvignon Blanc (Northern Sonoma)
## 612 Saintsbury 2010 Toyon Farm Pinot Noir (Carneros)
## 613 Sextant 2010 Caverio G-S-M (Paso Robles)
## 614 Solar de Pinheiro 2012 Paço de São Lourenço White (Vinho Verde)
## 615 Suavia 2011 Soave Classico
## 616 Tilia 2011 Malbec (Mendoza)
## 617 B Cellars 2011 Dutton Ranch Chardonnay (Russian River Valley)
## 618 Bacio della Luna 2012 Millesimato Extra Dry (Conegliano Valdobbiadene Prosecco Superiore)
## 619 Barlow 2009 Unfiltered Merlot (Calistoga)
## 620 Borgo Maragliano NV Brut Chardonnay (Piedmont)
## 621 Bortolotti NV Dry (Conegliano Valdobbiadene Prosecco Superiore)
## 622 Claiborne & Churchill 2010 Pinot Noir (Edna Valley)
## 623 Coiled 2009 Sidewinder Red
## 624 Coiled 2010 Black Mamba Red
## 625 Colter's Creek 2010 Koos-Koos-Kia Colter's Creek Vineyard Red (Idaho)
## 626 Corte Falco 2010 Soave
## 627 Domenico Cavazza 2008 Memorio Creari (Gambellara Classico)
## 628 Cascina La Ghersa 2009 Sivoy White (Monferrato)
## 629 Kangarilla Road 2012 Alluvial Fans Shiraz (McLaren Vale)
## 630 Walt 2013 Pinpoint Extreme Pinot Noir (Russian River Valley)
## 631 WillaKenzie Estate 2013 Aliette Pinot Noir
## 632 Willm 2011 Vendanges Tardives Gewurztraminer (Alsace)
## 633 Jean-Marc Bernhard 2013 Wineck-Schlossberg Grand Cru Riesling (Alsace)
## 634 Yeringberg 2013 Viognier (Yarra Valley)
## 635 Armida 2013 Tina's Block Maple Vineyard Zinfandel (Dry Creek Valley)
## 636 Marqués de Murrieta 2010 Capellanía Viura (Rioja)
## 637 Torbreck 2010 The Factor Shiraz (Barossa Valley)
## 638 Biecher & Schaal 2014 Altenberg de Bergheim Grand Cru White (Alsace)
## 639 Domaines Schlumberger 2010 Kitterlé Grand Cru Riesling (Alsace)
## 640 Domaines Schlumberger 2012 Kessler Grand Cru Pinot Gris (Alsace)
## 641 Foxen 2014 Tinaquaic Vineyard Chardonnay (Santa Maria Valley)
## 642 Les Belles Collines 2014 Pinot Gris (California)
## 643 Luis Duarte 2013 Monte de Carrapatelo Colheita Seleccionada Tinto Red (Alentejano)
## 644 Melhill 2012 Chardonnay (Sonoma Coast)
## 645 Niner 2013 Estate Grown Cabernet Sauvignon (Paso Robles)
## 646 Purple Hands 2014 Freedom Hill Vineyard Pinot Noir (Willamette Valley)
## 647 Quinta da Lagoalva de Cima 2013 Lagoalva Barrel Selection Tinto Red (Tejo)
## 648 Quinta do Monte Xisto 2013 Red (Douro)
## 649 Reichsgraf von Kesselstatt 2014 Brauneberger Juffer-Sonnenuhr Spätlese Grosse Lage Riesling (Mosel)
## 650 Stone The Crows 2013 Three Twins Vineyard Fallen Feather Cabernet Sauvignon (Napa Valley)
## 651 Sturm 2014 Sauvignon (Collio)
## 652 Kuentz-Bas 2014 Pfersigberg Grand Cru Riesling (Alsace)
## 653 Plantagenet 2014 Riesling (Great Southern)
## 654 Scratch 2013 Grenache (Arroyo Seco)
## 655 Sipp Mack 2014 Rosacker Grand Cru Riesling (Alsace)
## 656 St. Amant 2013 Lodi Native Marian's Vineyard Zinfandel (Mokelumne River)
## 657 Stoller 2013 Nancy's Pinot Noir (Dundee Hills)
## 658 Fable Mountain 2011 Night Sky Red (Coastal Region)
## 659 Vine Cliff 2013 Chardonnay (Los Carneros)
## 660 Va Piano 2012 Cabernet Sauvignon (Walla Walla Valley (WA))
## 661 Y Rousseau 2012 Le Roi Soleil Cabernet Sauvignon (Mount Veeder)
## 662 Monte Volpe 2013 Pinot Grigio (Mendocino)
## 663 Palladino 2011 Ornato (Barolo)
## 664 Paradise Ridge 2012 Rockpile Vineyard Cabernet Sauvignon (Rockpile)
## 665 Pecchenino 2013 Siri d'Jermu (Dogliani Superiore)
## 666 Poderi Colla 2013 Costa Bruna (Barbera d'Alba)
## 667 Poet's Leap 2014 Riesling (Columbia Valley (WA))
## 668 Rafael Cambra 2012 Soplo Garnacha Tintorera (Valencia)
## 669 Raphael 2014 Virgin Berry Riesling (North Fork of Long Island)
## 670 Seven Hills 2013 McClellan Estate Vineyard Malbec (Walla Walla Valley (WA))
## 671 Snoqualmie 2013 Eco Made with Organic Grapes Cabernet Sauvignon (Columbia Valley (WA))
## 672 Stags' Leap Winery 2012 Petite Sirah (Napa Valley)
## 673 The Grapes of Roth 2014 Dry Riesling (Long Island)
## 674 The Withers Winery 2013 Charles Vineyard Pinot Noir (Anderson Valley)
## 675 Truchard 2012 Estate Cabernet Sauvignon (Carneros)
## 676 Acacia 2013 Pinot Noir (Carneros)
## 677 Array 2012 Dijon Clone Chardonnay (Yakima Valley)
## 678 Baracchi Riccardo 2011 Smeriglio Riserva Syrah (Cortona)
## 679 Baracchi Riccardo 2012 Smeriglio Syrah (Cortona)
## 680 Barrister 2012 Sagemoor Cabernet Sauvignon (Columbia Valley (WA))
## 681 Bodegas Berceo 2011 Selección Crianza (Rioja)
## 682 Bunnell 2011 ALX Syrah (Columbia Valley (WA))
## 683 Castello di Neive 2011 Metodo Classico Pinot Nero (Piemonte)
## 684 Castello di Querceto 2010 Cignale Red (Colli della Toscana Centrale)
## 685 Chateau Ste. Michelle 2012 Canoe Ridge Vineyard Cabernet Sauvignon (Horse Heaven Hills)
## 686 Cobb 2012 Emmaline Ann Vineyard Pinot Noir (Sonoma Coast)
## 687 Comm. G. B. Burlotto 2011 Acclivi (Barolo)
## 688 Cooper-Garrod 2012 Gravel Ridge Vineyard Chardonnay (Santa Cruz Mountains)
## 689 Mosquito Fleet 2011 Reserve 34 Cabernet Sauvignon (Red Mountain)
## 690 Nadia 2012 Quattro Santa Barbara Highlands Vineyard Red (Santa Barbara County)
## 691 Nittnaus Hans und Christine 2013 Nit'ana Red (Burgenland)
## 692 Nottingham Cellars 2012 Ghielmetti Vineyard Micro-lot Reserve Malbec (Livermore Valley)
## 693 Poggio Argentiera 2012 Capatosta (Morellino di Scansano)
## 694 Pride Mountain 2012 Cabernet Franc (Sonoma County)
## 695 Reyneke 2013 Reserve Sauvignon Blanc (Stellenbosch)
## 696 Ruffino 2010 Riserva Ducale Oro Gran Selezione (Chianti Classico)
## 697 Saint Clair 2014 Pioneer Block 20 Dillons Point Cash Block Sauvignon Blanc (Marlborough)
## 698 Soellner 2014 von Gösing Roter Veltliner (Wagram)
## 699 Woodinville Wine Cellars 2012 Little Bear Creek Red (Columbia Valley (WA))
## 700 Kanonkop 2012 Estate Wine Pinotage (Simonsberg-Stellenbosch)
## 701 El Enemigo 2012 Bonarda (Mendoza)
## 702 Château d'Esclans 2013 Les Clans Rosé (Côtes de Provence)
## 703 Château Riotor 2014 Rosé (Côtes de Provence)
## 704 Château Sainte Marguerite 2014 Rosé (Côtes de Provence)
## 705 Château Vignelaure 2014 Rosé (Coteaux d'Aix-en-Provence)
## 706 Cloudy Bay 2014 Sauvignon Blanc (Marlborough)
## 707 Domaine de la Bastide Blanche 2014 TwoB Rosé (Côtes de Provence)
## 708 Domaine du Grand Cros 2014 L'Esprit de Provence Rosé (Côtes de Provence)
## 709 Domaine Sainte-Marie 2014 VieVité Extraordinaire Rosé (Côtes de Provence)
## 710 Dry Creek Vineyard 2012 DCV2 Estate Four Clones Vineyard Zinfandel (Dry Creek Valley)
## 711 Dry River 2013 Pinot Noir (Martinborough)
## 712 Dutton Estate 2013 Cohen Vineyard Dutton Ranch Sauvignon Blanc (Russian River Valley)
## 713 Failla 2013 Keefer Ranch Pinot Noir (Russian River Valley)
## 714 Friedeman 2013 Dichotomy Pinot Noir (Russian River Valley)
## 715 Akarua 2012 Bannockburn Pinot Noir (Central Otago)
## 716 Benvenuto de la Serna 2010 Trisagio Malbec-Petit Verdot-Tannat Red (Valle de Uco)
## 717 Carrick 2013 Unravelled Pinot Noir (Central Otago)
## 718 JCB 2014 No. 5 Rosé (Côtes de Provence)
## 719 Casca Wines 2015 Bote Chardonnay-Fernão Pires-Vital White (Lisboa)
## 720 Cave de Viré 2015 Grande Réserve du Président (Mâcon-Villages)
## 721 Cortes de Cima 2015 Rosé (Alentejano)
## 722 Domaine Bousquet 2015 Cabernet Sauvignon (Tupungato)
## 723 Mendel 2015 Semillon (Mendoza)
## 724 Messias 2015 Santola White (Vinho Verde)
## 725 Mont Sec 2015 Mont Sec Vineyards Viognier (Texas)
## 726 Paolo Manzone 2012 Meriame (Barolo)
## 727 Quinta de Paços 2015 Casa de Paços Rosé (Vinho Verde)
## 728 Rascal 2014 Pinot Noir (Oregon)
## 729 Terrazas de Los Andes 2015 Reserva Torrontés (Salta)
## 730 Herdade Grande 2015 Audaz Branco White (Alentejano)
## 731 Jack's House 2013 Cabernet Sauvignon (California)
## 732 Kiwi Cuvée 2014 Bin 068 Chardonnay (Vin de France)
## 733 Domaine Michel Goubard 2014 Mont-Avril (Côte Chalonnaise)
## 734 Domaine Poulleau Père et Fils 2014 Chorey-lès-Beaune
## 735 Durigutti 2014 Bonarda (Mendoza)
## 736 El Esteco 2015 Don David Reserve Torrontés (Calchaquí Valley)
## 737 Felten Cellars 2013 Tempranillo (Paso Robles)
## 738 Wines & Winemakers 2015 Casa Ermelinda Freitas Monte de Baía Rosé (Península de Setúbal)
## 739 Lagarde 2013 Henry Legarde Malbec (Luján de Cuyo)
## 740 Marchesi di Barolo 2009 Riserva (Barolo)
## 741 McPherson 2014 Sangiovese (Texas)
## 742 Patriarche Père et Fils 2014 Coteaux Bourguignons
## 743 Paul Reitz 2014 Saint-Véran
## 744 Pech Merle 2013 Treborce Vineyard Zinfandel (Dry Creek Valley)
## 745 Punset 2011 Campo Quadro Riserva (Barbaresco)
## 746 Ribafreixo 2015 Pato Frio Antão Vaz (Alentejo)
## 747 Jacob's Creek 2015 Classic Pinot Grigio (South Eastern Australia)
## 748 William Knuttel 2007 Pinot Noir (Sonoma Coast)
## 749 Casa Larga 2008 Fiori Delle Stelle Ice Wine Cabernet Franc (Finger Lakes)
## 750 Cave de Beblenheim 2009 Baron de Hoen Riesling (Alsace)
## 751 De Loach 2008 Thornton Vineyard Pinot Noir (Sonoma Coast)
## 752 De Martino 2010 347 Vineyards Sauvignon Blanc (Central Valley)
## 753 Dopff Au Moulin 2009 Gewürztraminer (Alsace)
## 754 Center of Effort 2008 Effort Chardonnay (Edna Valley)
## 755 El Coto 2010 Viura (Rioja)
## 756 Handley 2009 Gewürztraminer (Anderson Valley)
## 757 Kuleto Estate 2008 Zinfandel (Napa Valley)
## 758 Lane Tanner 2009 Julia's Vineyard Pinot Noir (Santa Maria Valley)
## 759 MacRostie 2008 Pinot Noir (Sonoma Coast)
## 760 Monte De Oro 2006 Reserve, Vista del Monte Vineyard Syrah (Temecula Valley)
## 761 Mounts 2008 Estate Grown Syrah (Dry Creek Valley)
## 762 Ninquén 2009 Antu Cabernet Sauvignon-Carmenère (Colchagua Valley)
## 763 Oro de Castilla 2010 Solo Verdejo (Rueda)
## 764 Pablo del Villar 2010 Ipsum Verdejo-Viura (Rueda)
## 765 Pax 2007 Cuvée Christine Syrah (North Coast)
## 766 Robert Foley 2008 The Griffin Red (Napa Valley)
## 767 42°S 2008 Pinot Noir (Tasmania)
## 768 Manyana 2008 Tempranillo (Cariñena)
## 769 McWilliam's Hanwood Estate 2008 Cabernet Sauvignon (South Eastern Australia)
## 770 Paternoster 2007 Synthesi (Aglianico del Vulture)
## 771 G. H. Mumm NV Mumm de Cramant Blanc de Blancs Chardonnay (Champagne)
## 772 Iron Horse 2007 Ocean Reserve Sparkling (Green Valley)
## 773 Jean Milan NV Grande Réserve Blanc de Blancs Grand Cru Brut Chardonnay (Champagne)
## 774 Monte da Penha 2005 Grande Reserva Red (Alentejo)
## 775 Patton Valley 2010 Lorna Marie Pinot Noir (Willamette Valley)
## 776 Patton Valley 2010 West Block Pinot Noir (Willamette Valley)
## 777 Pierre Gimonnet et Fils 2005 Oenophile Premier Cru Blanc de Blancs Extra Brut Chardonnay (Champagne)
## 778 Scubla 2008 Cràtis Verduzzo (Colli Orientali del Friuli)
## 779 Adelsheim 2010 Winderlea Vineyard Pinot Noir (Dundee Hills)
## 780 Bruno Paillard 2002 Assemblage Brut (Champagne)
## 781 Castello d'Albola 2003 Vin Santo del Chianti Classico
## 782 Ferrari 2001 Giulio Ferrari Riserva del Fondatore Chardonnay (Trento)
## 783 Laetitia 2008 Cuvée M Sparkling (Arroyo Grande Valley)
## 784 Bella 2009 Big River Ranch Zinfandel (Alexander Valley)
## 785 Quinta do Sagrado 2008 VT '08 Red (Douro)
## 786 San Pedro de Yacochuya 2012 Red (Salta)
## 787 Sobredos 2012 Aneto Tinto Red (Douro)
## 788 St. Supéry 2013 Rutherford Estate Vineyard Cabernet Sauvignon (Rutherford)
## 789 Viña Cobos 2015 Bramare Marchiori Vineyard Chardonnay (Perdriel)
## 790 Von Schleinitz 2015 Apollo Dry Riesling (Mosel)
## 791 Barnard Griffin 2014 Signature Cabernet Sauvignon (Columbia Valley (WA))
## 792 Beacon Hill 2013 Chehalem Mountain Vineyard Pinot Noir (Chehalem Mountains)
## 793 Bernard Magrez 2012 La Sérénité des Grands Chênes (Médoc)
## 794 Brian Carter Cellars 2012 Tuttorosso Red (Yakima Valley)
## 795 Buttonwood 2015 Grenache Blanc (Santa Ynez Valley)
## 796 Château Corbin 2014 Divin de Corbin (Saint-Émilion)
## 797 Château Haut-Logat 2014 Haut-Médoc
## 798 Château La Branne 2014 Médoc
## 799 Château Mayne Vieil 2014 Fronsac
## 800 Château Mille-Roses 2012 Margaux
## 801 Chessman 2014 Cabernet Sauvignon (Santa Ynez Valley)
## 802 Deerfield Ranch NV Tawny Estate Syrah (Sonoma Valley)
## 803 Domaine Franck Besson 2014 Le Griottier (Juliénas)
## 804 Efeste 2013 Upright Klipsun Vineyard Merlot (Red Mountain)
## 805 Efeste 2014 Lola Evergreen Vineyard Chardonnay (Ancient Lakes)
## 806 Firesteed 2012 Riesling (Oregon)
## 807 Iron Hub 2014 Small Lot Chardonnay (Sierra Foothills)
## 808 Kooyong 2013 Farrago Chardonnay (Mornington Peninsula)
## 809 Moncaro 2015 Le Vele (Verdicchio dei Castelli di Jesi Classico)
## 810 Finca Constancia 2011 Parcela 23 Tempranillo (Vino de la Tierra de Castilla)
## 811 Aiken 2013 Cabernet Sauvignon (Rutherford)
## 812 Castell 2015 Castell Silvaner (Franken)
## 813 Donkey & Goat 2013 Perli Vineyards Syrah (Mendocino Ridge)
## 814 Torbreck 2013 Cuvee Juveniles Red (Barossa Valley)
## 815 Valdicava 2012 Rosso di Montalcino
## 816 Finn Hill 2013 Soleil Sauvignon Blanc (Wahluke Slope)
## 817 Keuka Spring 2013 Pre-Emption Vineyard Gewürztraminer (Finger Lakes)
## 818 La Playa 2012 Block Selection Reserve Block N. 10 Merlot (Colchagua Valley)
## 819 Les Vins Aujoux 2013 Belle Grâce (Beaujolais-Villages)
## 820 Mont Gravet 2013 Colombard (Côtes de Gascogne)
## 821 Navardia 2013 Made With Organic Grapes (Rioja)
## 822 Pata Negra NV Brut Sparkling (Cava)
## 823 Ridolfi 2012 Rosso di Montalcino
## 824 Still Waters 2010 Malbec (Paso Robles)
## 825 Stomping Ground 2010 Merlot (California)
## 826 Tenuta Poggio il Castellare 2009 Brunello di Montalcino
## 827 Tenuta San Giorgio 2012 Ciampoleto (Rosso di Montalcino)
## 828 Terrapura 2012 Merlot (Curicó Valley)
## 829 Clos Troteligotte 2013 K-libre Chenin Blanc (Côtes du Lot)
## 830 Columbia Winery 2013 Viognier (Columbia Valley (WA))
## 831 Domaine de Thulon 2013 Beaujolais-Villages
## 832 Domaine du Haut-Poncié 2013 Roche Grès (Moulin-à-Vent)
## 833 Domaine du Vissoux 2013 Coeur de Vendanges (Beaujolais)
## 834 Dosio 2012 Nebbiolo d'Alba
## 835 G7 2012 Reserva Estate Bottled Cabernet Sauvignon (Loncomilla Valley)
## 836 Georges Duboeuf 2013 Flower Label (Beaujolais)
## 837 Juvé y Camps NV Cinta Púrpura Brut Reserva Sparkling (Cava)
## 838 Juvé y Camps NV Sweet Reserva Sparkling (Cava)
## 839 Kontos 2011 Les Collines Vineyard Syrah (Walla Walla Valley (WA))
## 840 Lamoreaux Landing 2013 Yellow Dog Vineyard Riesling (Finger Lakes)
## 841 Laurent Gauthier 2013 Rosé (Beaujolais Rosé)
## 842 Leaping Horse 2013 Chardonnay (California)
## 843 Manoir du Carra 2013 Beaujolais-Villages
## 844 Maryhill 2011 Proprietor's Reserve Cabernet Franc (Columbia Valley (WA))
## 845 Cottanera 2015 Bianco (Etna)
## 846 CVA Canicattì 2015 Aquilae Bio Grillo (Terre Siciliane)
## 847 Domaine Barmès-Buecher 2014 Rosenberg Sylvaner (Alsace)
## 848 Domaine Bott-Geyl 2012 Galets Oligocène Pinot Noir (Alsace)
## 849 Domaine Collotte 2014 Clos de Jeu (Marsannay)
## 850 Domaine Faiveley 2014 Gevrey-Chambertin
## 851 Domaine Jacques Prieur 2014 Grèves Premier Cru (Beaune)
## 852 Domaine René Bouvier 2014 Champ Salomon (Marsannay)
## 853 Domaine Roland Schmitt 2014 Grand A du Petit Léon Sylvaner (Alsace)
## 854 Dr. H. Thanisch (Erben Thanisch) 2014 Thanisch Kabinett Riesling (Mosel)
## 855 Easton 2014 Zinfandel (Amador County)
## 856 Edna Valley Vineyard 2013 Reserve Chardonnay (Edna Valley)
## 857 Fattoria La Rivolta 2015 Taburno Fiano (Sannio)
## 858 Fess Parker 2013 Syrah (Santa Barbara County)
## 859 Firesteed 2014 Pinot Gris (Oregon)
## 860 Foretell 2012 Cabernet Sauvignon (Spring Mountain District)
## 861 Gershon Bachus 2009 Erato De Portola Trail Vineyard Cabernet Franc (Temecula Valley)
## 862 Graci 2015 Rosso (Etna)
## 863 Tornatore 2015 Rosato (Etna)
## 864 West of Temperance 2012 Rio Vista Vineyard Pinot Noir (Sta. Rita Hills)
## 865 Winzergenossenschaft Mayschoss-Altenahr 2013 Trocken Früburgunder (Ahr)
## 866 Baglio del Cristo di Campobello 2015 Laluci White (Sicilia)
## 867 Beresford 2014 Handpicked Grenache Rosé (McLaren Vale)
## 868 Carabella 2013 Estate Pinot Noir (Chehalem Mountains)
## 869 Carmen 2014 Gran Reserva Carmenère (Colchagua Valley)
## 870 Casa Dumetz 2014 Larner Grenache (Ballard Canyon)
## 871 Greenwood Ridge 2013 Estate Bottled Syrah (Mendocino Ridge)
## 872 Herencia 2013 Merlot (Napa Valley)
## 873 J. Scott Cellars 2015 Albariño (Oregon)
## 874 Chateau Dereszla 2014 Dry (Tokaji)
## 875 Quinta do Vallado 2009 Sousão (Douro)
## 876 Roquette e Cazes 2007 Red (Douro)
## 877 Vall Llach 2007 Idus Red (Priorat)
## 878 Ceralti 2008 Alfeo (Bolgheri Superiore)
## 879 Château Bel-Air Ortet 2009 Saint-Estèphe
## 880 Château Ferrière 2009 Margaux
## 881 Cline 2008 Sonoma Estate Syrah (Los Carneros)
## 882 Fuentes 2008 Coraje Red (Priorat)
## 883 Fuse 2009 Cabernet Sauvignon (Napa Valley)
## 884 I Luoghi 2008 Campo al Fico (Bolgheri Superiore)
## 885 J Vineyards & Winery NV Brut Rose Sparkling (Russian River Valley)
## 886 Kokomo 2008 Petite Sirah (Dry Creek Valley)
## 887 Loup Blanc 2007 La Mère Grand Red (Minervois)
## 888 Maritávora 2009 Reserva Branco White (Douro)
## 889 Owen Roe 2009 Slide Mountain Vineyard Cabernet Franc (Yakima Valley)
## 890 Pacific Ridge 2009 Red Label Pinot Noir (Sta. Rita Hills)
## 891 Phoenix Ranch 2009 Estate Viognier (Napa Valley)
## 892 2nd Chance 2009 Pinot Noir (Santa Maria Valley)
## 893 Bergevin Lane 2008 Stone Tree Vineyard Intuition Reserve Red (Columbia Valley (WA))
## 894 Hungerford Hill 2008 Heavy Metal Shiraz (South Eastern Australia)
## 895 Jacopo Biondi-Santi 2008 Castello di Montepò (Morellino di Scansano)
## 896 Le Buche 2006 Giuseppe Olivi Memento Red (Toscana)
## 897 Leonesse Cellars 2007 Signature Selection Syrah (Temecula Valley)
## 898 Market Vineyards 2008 Dividend Syrah (Columbia Valley (WA))
## 899 Marsiliana 2005 Red (Toscana)
## 900 Mazzei 2009 Fonterutoli (Chianti Classico)
## 901 Morlanda 2007 Criança Red (Priorat)
## 902 Quinta do Vallado 2010 Reserva Branco White (Douro)
## 903 Becker 2014 Reserve Bingham Vineyard Roussanne (Texas High Plains)
## 904 Bex 2014 Riesling (Nahe)
## 905 Boffa 2013 Pajè (Barbaresco)
## 906 Brennan 2014 Super Nero Nero d'Avola (Texas)
## 907 Brennan 2015 Reddy Vineyard Roussanne (Texas High Plains)
## 908 Casa de Vilacetinho 2013 Bruto Avesso (Vinho Verde)
## 909 Cascina Bruciata 2013 Barbaresco
## 910 Castello di Neive 2013 Barbaresco
## 911 Antucura 2011 Grand Vin Red (Vista Flores)
## 912 Frédéric Brouca 2013 Samsó Seulle Cinsault (Vin de France)
## 913 Fullerton 2015 Three Otters Pinot Noir Rosé (Willamette Valley)
## 914 Gotsa Family Wines 2014 Asureti Valley Chinuri
## 915 Graffigna 2012 Grand Reserve Malbec (San Juan)
## 916 Coelho 2014 Atração Pinot Noir (Willamette Valley)
## 917 Coelho 2015 Renovação Estate Vineyards Pinot Gris (Willamette Valley)
## 918 Deltetto 2012 Bussia (Barolo)
## 919 Diego Conterno 2012 Ginestra (Barolo)
## 920 Domaine Bousquet 2015 Reserve Pinot Gris (Tupungato)
## 921 Evans & Tate 2015 Breathing Space Sauvignon Blanc (Australia)
## 922 Falua 2015 Conde Vimioso Colheita Seleccionada Branco White (Tejo)
## 923 Finca Sophenia 2015 Altosur Sauvignon Blanc (Tupungato)
## 924 Fiuza 2015 Red (Tejo)
## 925 Sidewood 2014 Sauvignon Blanc (Adelaide Hills)
## 926 Terre Rouge 2013 Vin Doux Naturel Muscat Blanc à Petits Grains (Shenandoah Valley (CA))
## 927 Antonio Mas 2011 Roll Fermentor Malbec (Tupungato)
## 928 Aveleda NV Casal Garcia Rosé Sparkling (Vinho Verde)
## 929 Battaglio 2013 Barbaresco
## 930 Bella Grace 2013 Estate Zinfandel (Amador County)
## 931 Bodega Calle 2014 Alberti 154 Malbec (Mendoza)
## 932 Borgogno F.lli Serio e Battista 2012 Barolo
## 933 Château les Petits Arnauds 2014 Tradition (Blaye Côtes de Bordeaux)
## 934 Château Mougneaux 2014 Bordeaux Supérieur
## 935 Château Saintongey 2014 Vieilles Vignes (Bordeaux)
## 936 Château Ségonzac 2014 Vieilles Vignes (Blaye Côtes de Bordeaux)
## 937 Chehalem 2013 Ian's Reserve Chardonnay (Willamette Valley)
## 938 Chehalem 2015 Stoller Vineyards Pinot Blanc (Dundee Hills)
## 939 Covila 2013 II Crianza (Rioja)
## 940 Cuda Ridge Wines 2013 Melange d'Amis Reserve Red (Livermore Valley)
## 941 Duménil NV Grande Réserve Premier Cru Brut (Champagne)
## 942 Ego Bodegas 2014 Goru Verde Monastrell (Jumilla)
## 943 Ektimo Vineyards 2014 Pinot Noir (Russian River Valley)
## 944 Finca del Marquesado 2013 Crianza (Rioja)
## 945 Folin Cellars 2015 Estate Viognier (Rogue Valley)
## 946 Francis Coppola 2014 Director's Chardonnay (Sonoma County)
## 947 Frank Family 2013 Reserve Winston Hill Vineyard Sangiovese (Rutherford)
## 948 Real Companhia Velha 2014 Evel Tinto Red (Douro)
## 949 Santos & Seixo 2014 Santos da Casa Tinto Red (Alentejano)
## 950 Travaglini 2014 Nebbiolo (Coste della Sesia)
## 951 Vine Cliff 2014 Chardonnay (Los Carneros)
## 952 Yorkville Cellars 2013 Rennie Vineyard Organic Grapes Petit Verdot (Yorkville Highlands)
## 953 Agustí Torelló Mata 2015 XIC Xarel-lo (Penedès)
## 954 Amalie Robert 2012 i Pinot Noir (Willamette Valley)
## 955 Archgate Cellars 2014 Reserve Bottling Cabernet Sauvignon (Lodi)
## 956 Bersano 2012 Nirvasco (Barolo)
## 957 Cantine di Marzo NV Anni Venti Metodo Classico (Greco di Tufo)
## 958 Carica 2015 Ritchie Vineyard Sauvignon Blanc (Russian River Valley)
## 959 Ignacio Marín 2015 Wine Wings Garnacha Rosé (Cariñena)
## 960 Jacquart NV Brut Mosaïque (Champagne)
## 961 Château Cap Saint-Martin 2014 Blaye Côtes de Bordeaux
## 962 Château de Bel 2014 Bordeaux Supérieur
## 963 Vranken NV Demoiselle Tête de Cuvée Brut (Champagne)
## 964 Château Pavillon de Boyrein 2006 Graves
## 965 Fabiano 2006 Argillaia (Lugana)
## 966 Vinosia 2006 Vecchie Vigne (Primitivo di Manduria)
## 967 Kono 2008 Sauvignon Blanc (Marlborough)
## 968 Santa Ema 2008 Selected Terroir Chardonnay (Casablanca Valley)
## 969 Tommasi 2006 Chiaretto (Bardolino Classico)
## 970 Morandé 2008 Pionero Carmenère (Maipo Valley)
## 971 One Hope 2006 Cabernet Sauvignon (California)
## 972 Pommery NV Pop Rosé Extra Dry (Champagne)
## 973 Saddleback 2008 Viognier (Clarksburg)
## 974 Alexander Valley Vineyards 2006 Alexander School Reserve Big Barrel Syrah (Alexander Valley)
## 975 Covington 2006 Rough House Red Red (Walla Walla Valley (WA))
## 976 Feudo Montoni 2008 P Pinot Noir (Sicilia)
## 977 Kendall-Jackson 2008 Summation Vintner's Reserve White (California)
## 978 Ledgewood Creek 2007 Estate Grown Viognier (Suisun Valley)
## 979 X 2008 White X White (North Coast)
## 980 Château Lamothe-Vincent 2008 Sauvignon (Bordeaux Blanc)
## 981 Montresor 2003 Capitel della Crosara (Amarone della Valpolicella Classico)
## 982 Yvon Mau 2007 Premius Bordeaux Sauvignon (Bordeaux Blanc)
## 983 Bellenda 2005 Col di Luna Cabernet Sauvignon (Piave)
## 984 Breggo 2008 Gewürztraminer (Anderson Valley)
## 985 Byzantium 2005 Rosso di Valachia Red (Dealu Mare)
## 986 Pascual Toso 2007 Reserve Las Barrancas Vineyards Cabernet Sauvignon (Mendoza)
## 987 Quinta de la Rosa 2004 Late Bottled Vintage (Port)
## 988 Sieber Rd 2007 Viognier (Barossa Valley)
## 989 Lachini 2007 Pinot Gris (Oregon)
## 990 Mauro 2005 Red (Vino de la Tierra de Castilla y León)
## 991 Dancing Bull 2007 Sauvignon Blanc (California)
## 992 Domaine de Mirail 2005 Les Mirlandes Red (Vin de Pays des Côtes de Gascogne)
## 993 Domaine des Terrisses 2006 Grande Tradition Red (Gaillac)
## 994 Domaine du Tariquet 2007 Chenin Blanc-Chardonnay (Vin de Pays des Côtes de Gascogne)
## 995 Fournier Père et Fils 2006 Les Belles Vignes (Sancerre)
## 996 Benanti 2006 Edèlmio White (Sicilia)
## 997 Caruso & Minini 2006 Terre di Giumara Syrah (Sicilia)
## 998 Yalumba 2006 Patchwork Shiraz (Barossa)
## 999 The Four Graces 2007 Pinot Gris (Dundee Hills)
## 1000 Amity 2006 Riesling (Willamette Valley)
## 1001 Arcane Cellars 2006 Cabernet Sauvignon (Rogue Valley)
## 1002 Benanti 2005 Il Monovitigno (Etna)
## 1003 Benton-Lane 2006 First Class Pinot Noir (Willamette Valley)
## 1004 Château Puy-Servain 2003 Vieilles Vignes (Montravel)
## 1005 Château Puy-Servain 2007 Marjolaine (Montravel)
## 1006 Domaine Philippe Portier 2007 Quincy
## 1007 Expression 44° 2006 Pinot Noir (Eola-Amity Hills)
## 1008 Fournier Père et Fils 2006 Les Caillottes (Pouilly-Fumé)
## 1009 Nick Faldo 2005 Shiraz (Coonawarra)
## 1010 Tarapaca 2006 Gran Reserva Cabernet Sauvignon (Maipo Valley)
## 1011 The Four Graces 2005 Black Family Estate Pinot Noir (Dundee Hills)
## 1012 Hunt Country Vineyards 2007 Pinot Gris (Finger Lakes)
## 1013 Antichi Vinai 1877 2013 Pietralava Red (Etna)
## 1014 Baglio di Pianetto 2007 Cembali Nero d'Avola (Sicilia)
## 1015 Brecon Estate 2012 Forty Two Red (Paso Robles)
## 1016 Callaway 2010 Profonde Winemaker's Reserve Red (Temecula Valley)
## 1017 Casa di Grazia 2011 Gradiva Collectio Nero d'Avola (Sicilia)
## 1018 Casa di Grazia 2013 Zahara Grillo (Sicilia)
## 1019 Ruhlmann 2013 Vieilles Vignes Gewurztraminer (Alsace)
## 1020 Spring Mountain Vineyard 2011 Elivette Red (Napa Valley)
## 1021 Stanton Vineyard 2013 Pinot Gris (Willamette Valley)
## 1022 Terrazas de Los Andes 2012 Reserva Malbec (Mendoza)
## 1023 Cusumano 2013 Cubia Tenuta Ficuzza Insolia (Sicilia)
## 1024 Dalton 2013 Alma Semillon-Viognier-Pinot Gris White (Galilee)
## 1025 Domaine Barmès-Buecher 2012 Pfleck Pinot Gris (Alsace)
## 1026 Dragonette 2012 Vogelzang Sauvignon Blanc (Happy Canyon of Santa Barbara)
## 1027 Firesteed 2013 Pinot Gris (Oregon)
## 1028 Folin Cellars 2012 Estate Grenache (Rogue Valley)
## 1029 Gaba do Xil 2012 Mencía (Valdeorras)
## 1030 Gorka Izagirre 2013 White (Bizkaiko Txakolina)
## 1031 Grgich Hills 2012 Miljenko's Selection Chardonnay (Carneros)
## 1032 Linaje Garsea 2010 Crianza (Ribera del Duero)
## 1033 Omaka Springs 2013 Pinot Gris (Marlborough)
## 1034 Ventana 2013 Chardonnay (Arroyo Seco)
## 1035 Vieil Armand 2010 Clos de la Tourelle Château Ollwiller Pinot Blanc (Alsace)
## 1036 Viticultori Associati Canicatti 2012 Aquilae Nero d'Avola (Terre Siciliane)
## 1037 Vivera 2010 Salisire Bianco (Etna)
## 1038 WildAire 2012 Spofford Station Syrah (Walla Walla Valley (OR))
## 1039 Mills Reef 2012 Gimblett Gravels Reserve Merlot-Malbec (Hawke's Bay)
## 1040 Pazo Torrado 2013 Albariño (Rías Baixas)
## 1041 Sur de los Andes 2012 Clásico Malbec (Mendoza)
## 1042 Babich 2011 The Patriarch Premium Red (Hawke's Bay)
## 1043 Rentas de Fincas 2003 Crianza (Rioja)
## 1044 Setzer 2007 Vesper Grüner Veltliner (Niederösterreich)
## 1045 Tenuta Luisa 2007 Rive Alte Pinot Grigio (Isonzo del Friuli)
## 1046 Honeywood Winery 2006 Pinot Noir (Willamette Valley)
## 1047 I Clivi 2004 Bianco degli Arzillari White (Colli Orientali del Friuli)
## 1048 Irony 2004 Merlot (Napa Valley)
## 1049 Kedar's K'orus NV Cabernet Sauvignon (Vin de Pays d'Oc)
## 1050 Kedar's K'orus NV Chardonnay (Vin de Pays d'Oc)
## 1051 Little Black Dress 2006 Merlot (California)
## 1052 Marqués de Vizhoja 2007 Señor da Folla Verde White (Rías Baixas)
## 1053 Estancia 2007 Pinot Grigio (California)
## 1054 Finca La Emperatriz 2000 Reserva (Rioja)
## 1055 Vinai dell'Abbate 2006 Ribolla Gialla (Colli Orientali del Friuli)
## 1056 Winzer Krems 2005 Sandgrube 13 Chremisa Zweigelt (Kremstal)
## 1057 Graf Hardegg 2007 Veltlinsky Grüner Veltliner (Niederösterreich)
## 1058 Botalcura 2006 El Delirio Reserve Syrah-Malbec Red (Central Valley)
## 1059 Bridgeway 2004 Syrah (Central Coast)
## 1060 Calatrasi 2006 La Piazza Pinot Grigio (Delle Venezie)
## 1061 Château Bélingard 2005 Monbazillac
## 1062 Clos Teddi 2007 Rosé Red (Patrimonio)
## 1063 Colutta 2007 Friulano (Colli Orientali del Friuli)
## 1064 Ormonde 2005 Cabernet Sauvignon-Merlot (Darling)
## 1065 Principe di Corleone 2004 Evoè Red (Sicilia)
## 1066 Sandeman 2015 Quinta do Seixo Vintage (Port)
## 1067 Scott Harvey 2012 Old Vine Reserve Zinfandel (Amador County)
## 1068 Sea Slopes 2015 Pinot Noir (Sonoma Coast)
## 1069 Trisaetum 2014 Family Reserve MMXIV Pinot Noir (Willamette Valley)
## 1070 Bergström 2015 Bergström Vineyard Pinot Noir (Dundee Hills)
## 1071 Bergström 2015 Shea Vineyard Pinot Noir
## 1072 Mauro Veglio 2013 Castelletto (Barolo)
## 1073 Poças 2014 Símbolo Red (Douro)
## 1074 Quinta do Vesuvio 2015 Vintage (Port)
## 1075 Schild Estate 2013 Moorooroo Shiraz (Barossa Valley)
## 1076 Shafer 2015 Red Shoulder Ranch Chardonnay (Carneros)
## 1077 Alphonse Mellot 2014 En Grands Champs (Sancerre)
## 1078 Ascheri 2013 Ascheri (Barolo)
## 1079 Bergström 2015 Old Stones Chardonnay (Willamette Valley)
## 1080 Big Table Farm 2015 Elusive Queen Chardonnay (Willamette Valley)
## 1081 Trisaetum 2016 Ribbon Ridge Estate Riesling (Ribbon Ridge)
## 1082 Trisaetum 2016 Wichmann Dundee Estate Riesling (Dundee Hills)
## 1083 Horsepower 2014 The Tribe Vineyard Syrah (Walla Walla Valley (OR))
## 1084 J. Davies 2013 Malbec (Diamond Mountain District)
## 1085 Château de Parnay 2014 La Coulée du Méridien (Saumur-Champigny)
## 1086 Tres Sabores 2014 Perspective Estate Zinfandel (Rutherford)
## 1087 Trisaetum 2016 Coast Range Dry Riesling
## 1088 Williams Selyem 2015 Terra De Promissio Vineyard Pinot Noir (Sonoma Coast)
## 1089 Cayuse 2014 Cailloux Vineyard Syrah (Walla Walla Valley (OR))
## 1090 Chappellet 2013 Cabernet Franc (Napa Valley)
## 1091 Churchill's 2015 Quinta da Gricha Vintage (Port)
## 1092 Cobb 2014 Emmaline Ann Vineyard Pinot Noir (Sonoma Coast)
## 1093 Dion 2014 Old Vines Pinot Noir (Chehalem Mountains)
## 1094 Domaine Bernard Fleuriet et Fils 2015 Anthocyane (Sancerre)
## 1095 Drouhin Oregon Roserock 2014 Zéphirine Pinot Noir (Eola-Amity Hills)
## 1096 Robert Mondavi 2011 Cabernet Sauvignon (Napa Valley)
## 1097 Santa Alicia 2012 Millantu Red (Maipo Valley)
## 1098 Stevens 2012 StevensSweets Late Harvest Viognier (Yakima Valley)
## 1099 Rutherford Ranch 2013 Chardonnay (Napa Valley)
## 1100 Sextant 2011 Caverio G-S-M (Paso Robles)
## 1101 Valdivieso 2008 Éclat Vigno Old Vine Blend Red (Maule Valley)
## 1102 Weixelbaum 2013 Wahre Werte Beerenauslese Chardonnay (Niederösterreich)
## 1103 Landmark 2012 Charles Heintz Vineyard Chardonnay (Sonoma Coast)
## 1104 Mercer 2013 Sauvignon Blanc (Yakima Valley)
## 1105 Michel Gassier 2012 Les Piliers Syrah (Costières de Nîmes)
## 1106 Nada Fiorenzo 2011 Nebbiolo (Langhe)
## 1107 Barrage Cellars 2010 Outcast Cabernet Franc (Yakima Valley)
## 1108 Berryessa Gap 2011 California Series Zinfandel (Yolo County)
## 1109 Bonny Doon 2010 Le Cigare Volant Red (Central Coast)
## 1110 Carpineto 2006 Sant'Ercolano (Vino Nobile di Montepulciano)
## 1111 Casajús 2011 Antiguos Viñedos (Ribera del Duero)
## 1112 Castellroig 2010 Reserva Brut Nature Sparkling (Cava)
## 1113 Château d'Or et de Gueules 2010 Les Cimels Red (Costières de Nîmes)
## 1114 Chateau Ste. Michelle 2013 Horse Heaven Vineyard Sauvignon Blanc (Horse Heaven Hills)
## 1115 Citille di Sopra 2012 Rosso di Montalcino
## 1116 Condado de Oriza 2008 Reserva (Ribera del Duero)
## 1117 Cookies & Cream 2010 Merlot (California)
## 1118 Daou 2012 Reserve Zinfandel (Paso Robles)
## 1119 Dei 2012 Rosso di Montepulciano
## 1120 Domaine de Gensac 2011 Quadrille White (Gers)
## 1121 Domaine Rolet Père et Fils 2008 Brut Sparkling (Crémant de Jura)
## 1122 Domaine Rotier NV Noces de Feu Duras (Vin de Liqueur)
## 1123 Three Brothers 2014 Zero Degree Dry Riesling (Seneca Lake)
## 1124 Wilridge 2014 Dessert Wine Estate Wilridge Vineyard Pinot Gris (Naches Heights)
## 1125 Wilridge 2014 Vintage Estate Dessert Wine Wilridge Vineyard Red (Naches Heights)
## 1126 Belden Barns 2013 Estate Grown Pinot Noir (Sonoma Mountain)
## 1127 Château du Retout 2013 Haut-Médoc
## 1128 Château la Gravette Lacombe 2013 Médoc
## 1129 Château Méric 2013 Médoc
## 1130 Apaltagua 2014 Reserva Malbec (Maule Valley)
## 1131 In Re 2011 You be the judge! Cabernet Sauvignon (Napa Valley)
## 1132 Chasing Venus 2014 Sauvignon Blanc (Marlborough)
## 1133 Château les Joyeuses 2014 Bordeaux
## 1134 Château Monfort Bellevue 2012 Médoc
## 1135 Château Vrai Caillou 2013 Bordeaux Supérieur
## 1136 Concha y Toro 2015 Reserva Casillero del Diablo Sauvignon Blanc (Chile)
## 1137 Experience 2012 Red (Napa Valley)
## 1138 Cantine Grasso 2014 Nero d'Avola (Terre Siciliane)
## 1139 Grifalco 2014 Frà Rosato (Basilicata)
## 1140 Madrigal 2012 Las Viñas del Señor Cabernet Sauvignon (Napa Valley)
## 1141 Millbrook 2013 Proprietor's Special Reserve Chardonnay (Hudson River Region)
## 1142 Santa Rita 2014 Medalla Real Gran Reserva Chardonnay (Leyda Valley)
## 1143 Scotto Family Cellars 2012 Chardonnay (Lodi)
## 1144 Spicy Vines 2011 Sacrlet's Flirtation Zinfandel (Mendocino)
## 1145 Kirkland Signature 2012 Meritage (Napa Valley)
## 1146 Les Vignerons Réunis de Monségur 2014 La Tour du Gouverneur (Bordeaux)
## 1147 Nugnes 2014 Rosato (Campania)
## 1148 Barnard Griffin 2013 Merlot (Columbia Valley (WA))
## 1149 Cantine Grasso 2013 Caporosso Nero d'Avola (Sicilia)
## 1150 Château les Lattes 2013 Médoc
## 1151 Concha y Toro 2014 Reserva Casillero del Diablo Carmenère (Central Valley)
## 1152 Ports of New York NV Meleau White Specialty Wine White (New York)
## 1153 Whitman Cellars 2004 Narcissa Red Red (Columbia Valley (WA))
## 1154 Winkler-Hermaden 2007 Steierische Klassik Weissburgunder (Südoststeiermark)
## 1155 Fire Block 2004 Old Vine Shiraz (Clare Valley)
## 1156 Palivou 2006 White Fox Roditis (Corinth)
## 1157 Felsner 2007 Rohrendorfer Leithen Alte Reben Grüner Veltliner (Kremstal)
## 1158 Gemella 2005 L'Anima Petite Sirah (Mendocino)
## 1159 Gunter Triebaumer 2006 Blaufränkisch (Burgenland)
## 1160 Gunter Triebaumer 2006 Spätlese Traminer (Burgenland)
## 1161 Tsantali 2006 Ambelonas at Agios Pavlos White (Halkidiki)
## 1162 Bisol NV Desiderio Jeio Brut (Prosecco del Veneto)
## 1163 Carmina NV Extra Dry (Prosecco di Conegliano)
## 1164 Carpenè Malvolti NV Cuvée Oro Dry (Prosecco di Conegliano)
## 1165 Col Saliz NV Servo Suo Dry Vendemmia Tardiva (Prosecco di Valdobbiadene)
## 1166 Ghost Pines 2005 Cabernet Sauvignon (Napa-Sonoma)
## 1167 Wellington 2004 Estate Merlot (Sonoma Valley)
## 1168 Zonin NV Special Cuvée Brut (Prosecco del Veneto)
## 1169 Lost River 2005 Cedarosa Red (Columbia Valley (WA))
## 1170 Toffoli 2007 Millesimato Extra Brut (Prosecco del Veneto)
## 1171 Trapiche 2007 Broquel Chardonnay (Mendoza)
## 1172 Louis Guntrum 2006 Niersteiner Bergkirche Kabinett Riesling (Rheinhessen)
## 1173 Pali 2006 Durell Vineyard Pinot Noir (Sonoma Coast)
## 1174 Robert Stemmler 2005 Nugent Vineyard Pinot Noir (Russian River Valley)
## 1175 Rutini 2006 Trumpeter Merlot (Mendoza)
## 1176 Schloss Halbturn 2006 Koenigsegg Velt. 1 Grüner Veltliner (Burgenland)
## 1177 Spagnol NV Col del Sas Extra Dry (Prosecco di Valdobbiadene)
## 1178 Wines & Winemakers 2015 Lua Cheia em Vinhas Velhas Rosé (Douro)
## 1179 Zolo 2014 Reserve Estate Grown Cabernet Sauvignon (Valle de Uco)
## 1180 Bailly-Lapierre NV La Burgondie Rosé Brut (Crémant de Bourgogne)
## 1181 Balo 2014 Pinot Gris (Anderson Valley)
## 1182 Bel Colle 2013 Montersino (Barbaresco)
## 1183 Beresford 2014 Beacon Hill Sauvignon Blanc (South Australia)
## 1184 Boasso 2012 Margheria (Barolo)
## 1185 Broccardo 2012 I Tre Pais (Barolo)
## 1186 Casa Agricola Santos Jorge 2012 Herdade dos Machados Reserva Red (Alentejo)
## 1187 Cave des Vignerons de Buxy 2014 Mâcon-Villages
## 1188 Chamlija 2014 Papaskarasi (Thrace)
## 1189 Château de Fuissé 2014 Saint-Véran
## 1190 Château de Santenay 2014 Chassagne-Montrachet
## 1191 Chime 2013 Chardonnay (California)
## 1192 Christophe Cordier 2014 Vers Cras (Pouilly-Fuissé)
## 1193 Famille Laplace 2015 Aramis Rouge Tannat-Syrah Tannat-Syrah (Vin de France)
## 1194 Finca Lalande 2015 Malbec (Mendoza)
## 1195 Altos Las Hormigas 2013 Appellation Gualtallary Malbec (Mendoza)
## 1196 Antucura 2011 Calcura Red (Vista Flores)
## 1197 Aubichon Cellars 2014 Chardonnay (Willamette Valley)
## 1198 Battaglio 2013 Serragrilli (Barbaresco)
## 1199 Ben Haines 2015 B Minor Marsanne-Roussanne (Goulburn Valley)
## 1200 Beresford 2014 Beacon Hill Pinot Grigio (South Australia)
## 1201 Blue Fish 2015 Original Riesling (Pfalz)
## 1202 Bouchard Père & Fils 2014 Pouilly-Fuissé
## 1203 Brennan 2014 Tempranillo (Texas)
## 1204 Cambridge & Sunset 2014 California Series Zinfandel (California)
## 1205 Casca Wines 2015 Cascas Winemaker Selection Red (Lisboa)
## 1206 Cascina Chicco 2012 Rocche di Castelletto (Barolo)
## 1207 Coelho 2014 Apreciação Estate Vineyard Chardonnay (Willamette Valley)
## 1208 Poderi Colla 2013 Bussia Dardi Le Rose (Barolo)
## 1209 Quinta da Foz 2016 Reserva Red (Douro)
## 1210 Roederer Estate NV Estate Bottled Brut Sparkling (Anderson Valley)
## 1211 St. Francis 2014 Reserve Cabernet Sauvignon (Alexander Valley)
## 1212 Tamber Bey 2014 Vermejo Deux Chevaux Vineyard Red (Yountville)
## 1213 Tantara 2015 Dierberg Pinot Noir (Santa Maria Valley)
## 1214 Westerly 2013 Pinot Noir (Sta. Rita Hills)
## 1215 Aesthete 2016 Dry Stack Vineyard Sauvignon Blanc (Bennett Valley)
## 1216 Bacalhôa Wines of Portugal 2014 Quinta dos Quatros Ventos Red (Douro)
## 1217 Barton 2013 Paradise City Syrah (Paso Robles Willow Creek District)
## 1218 Bava 2014 Piano Alto Barbera
## 1219 Bucci 2014 Villa Bucci Riserva (Verdicchio dei Castelli di Jesi Classico)
## 1220 Central Coast Group Project 2013 Fauve Thompson Vineyard Syrah (Santa Barbara County)
## 1221 Château Tour Grand Faurie 2009 Saint-Émilion
## 1222 Fess Parker 2015 Pommard Clone Pinot Noir (Sta. Rita Hills)
## 1223 Hecho por Ruben 2014 Syrah (Ballard Canyon)
## 1224 Iron Horse 2013 Rainbow Cuvée Sparkling (Green Valley)
## 1225 J. Portugal Ramos 2014 Marquês de Borba Reserva Red (Alentejo)
## 1226 Judd's Hill 2014 Charbono (Suisun Valley)
## 1227 Longboard 2015 Rochioli Vineyard Chardonnay (Russian River Valley)
## 1228 Piro 2015 Points West Pinot Noir (Santa Maria Valley)
## 1229 Point & Line 2015 Reserve Pinot Noir (Sta. Rita Hills)
## 1230 Secret Spot Wines 2014 Crooked Vines Colheita Red (Douro)
## 1231 Tantara 2015 La Encantada Pinot Noir (Sta. Rita Hills)
## 1232 White Hart Wine 2014 Vasthoudend Red (Monterey)
## 1233 Artesa 2014 Tempranillo (Alexander Valley)
## 1234 Balletto 2015 Sexton Hill Vineyard Estate Grown Estate Bottled Pinot Noir (Russian River Valley)
## 1235 Bien Nacido 2014 Pinot Noir (Santa Maria Valley)
## 1236 Bodega de Edgar 2014 Toro de Paso Red (Central Coast)
## 1237 Cambria 2015 West Point Chardonnay (Santa Maria Valley)
## 1238 Agricoltori del Chianti Geografico 2007 Geografico (Chianti Classico)
## 1239 Barrière Frères 2006 Jacques Sans Souci (Bordeaux)
## 1240 Castellare di Castellina 2005 Riserva (Chianti Classico)
## 1241 Château la Grande Barthe 2003 Montagne-Saint-Émilion
## 1242 Chateau Ste. Michelle 2007 Chardonnay (Columbia Valley (WA))
## 1243 Danie de Wet 2008 Limestone Hill Chardonnay (Robertson)
## 1244 Dr. Wehrheim 2007 Buntsandstein Weisser Burgunder Kabinett Trocken Pinot Blanc (Pfalz)
## 1245 Erba 2005 Mountainside Vineyards Proprietary Red Wine Red (Napa Valley)
## 1246 Mulderbosch 2006 Noble Late Harvest Sauvignon Blanc (Stellenbosch)
## 1247 Provenance Vineyards 2005 Cabernet Sauvignon (Rutherford)
## 1248 Rietvallei Estate Wine 2008 Sauvignon Blanc (Robertson)
## 1249 Sol Duc 2005 Goose Ridge Estate Vineyard Meritage Red Wine Red (Columbia Valley (WA))
## 1250 Horan Estates 2005 HVH Red Blend Red (Columbia Valley (WA))
## 1251 Lamole di Lamole 2005 Riserva (Chianti Classico)
## 1252 Leo 2007 X-treme Riesling (Pfalz)
## 1253 Villa Wolf 2007 Silvaner (Pfalz)
## 1254 Washington Hills 2006 Chardonnay (Washington)
## 1255 Washington Hills 2007 Summit Reserve Chardonnay (Columbia Valley (WA))
## 1256 Guardian Peak 2007 Merlot (Stellenbosch)
## 1257 Bell 2005 Cabernet Sauvignon (Napa Valley)
## 1258 Cameron Hughes 2004 Lot 93 (Rioja)
## 1259 Caparzo 2004 Vigna La Casa (Brunello di Montalcino)
## 1260 Venta Morales 2010 Tempranillo (La Mancha)
## 1261 Firriato 2010 Santagostino Baglio Sorìa White (Sicilia)
## 1262 Fondo Antico 2009 I Versi Red (Sicilia)
## 1263 Hannah Nicole Vineyards 2010 Viognier (Contra Costa County)
## 1264 Hosmer 2010 Riesling (Cayuga Lake)
## 1265 Ancient Oak Cellars 2007 Siebert Ranch Pinot Noir (Russian River Valley)
## 1266 Barkan 2010 Classic Merlot-Argaman (Dan)
## 1267 Black Star Farms 2010 Arcturos Riesling (Michigan)
## 1268 Cosentino 2007 The Franc Cabernet Franc (California)
## 1269 Cusumano 2010 Insolia (Sicilia)
## 1270 Lusco 2010 Albariño (Rías Baixas)
## 1271 Markham 2008 Cabernet Sauvignon (Napa Valley)
## 1272 Michael David 2009 Earthquake Petite Sirah (Lodi)
## 1273 Maggiovini 2008 Pithoi Nero d'Avola (Sicilia)
## 1274 La Merika 2010 Chardonnay (Russian River Valley)
## 1275 Masseria del Feudo Grottarossa 2009 Haermosa Chardonnay (Sicilia)
## 1276 Napa Family Vineyards 2010 Merlot (Napa Valley)
## 1277 Petroni 2007 Estate Grown Cabernet Sauvignon (Sonoma Valley)
## 1278 Petroni 2010 Estate Grown Sauvignon Blanc (Sonoma Valley)
## 1279 Resonata 2010 Nero d'Avola (Sicilia)
## 1280 Aveleda 2010 Praia White (Vinho Verde)
## 1281 Bodegas Fontana 2010 Mesta Tempranillo (Uclés)
## 1282 Bodegas Peñafiel 2006 Miros de Ribera Crianza (Ribera del Duero)
## 1283 Brotherhood 2010 Riesling (New York)
## 1284 Calatrasi 2010 Terrale Oro Nero d'Avola (Sicilia)
## 1285 Cave de Lugny 2010 L'Aurore (Mâcon-Villages)
## 1286 Dashwood 2009 Pinot Noir (Marlborough)
## 1287 Feudi di San Gregorio 2014 Greco di Tufo
## 1288 Ghost Waltz 2012 Cabernet Sauvignon (Sonoma County)
## 1289 Griesbauerhof 2013 St. Magdalener Classico Red (Alto Adige)
## 1290 Gustav Adolf Schmitt 2012 Niersteiner Auflangen Spätlese Riesling (Rheinhessen)
## 1291 Cantina Produttori San Michele Appiano 2011 Sanct Valentin Pinot Nero (Alto Adige)
## 1292 Cantina Terlano 2013 Pinot Nero (Alto Adige)
## 1293 Cembra 2013 Sauvignon (Trentino)
## 1294 Cliff Lede 2012 Cabernet Sauvignon (Stags Leap District)
## 1295 Clos Figueras 2013 Serras del Priorat Red (Priorat)
## 1296 Consilience 2013 Chardonnay (Santa Barbara County)
## 1297 Domaines Landron 2013 La Louvetrie Sur Lie (Muscadet Sèvre et Maine)
## 1298 Cave du Vin Blanc de Morgex et de la Salle 2013 Tradizionale Blanc de Morgex et de La Salle Prié Blanc (Valle d'Aosta)
## 1299 Cedar Creek 2011 Estate Grown Syrah (Fair Play)
## 1300 Colterenzio 2011 Cornell Villa Nigra Pinot Nero (Alto Adige)
## 1301 Demetria 2012 Chardonnay (Santa Barbara County)
## 1302 Domaine de l'Ermitage 2013 Menetou-Salon
## 1303 Domaine de Rome 2013 Sancerre
## 1304 Domdechant Werner 2013 Hochheimer Hölle Kabinett Trocken Riesling (Rheingau)
## 1305 Dr. Fischer 2013 Ockfener Bockstein Kabinett Riesling (Mosel)
## 1306 Osborne NV Cream Sherry (Jerez)
## 1307 Pinord 2007 Chateldon Reserva Cabernet Sauvignon (Penedès)
## 1308 Purple Hands 2013 Holstein Vineyard Pinot Noir (Dundee Hills)
## 1309 Quintas de Melgaço 2014 Torre de Menagem Escolha White (Vinho Verde)
## 1310 Rosenblum 2011 Monte Rosso Vineyard Zinfandel (Sonoma Valley)
## 1311 Still Waters 2010 Reflections of Still Waters Red (Paso Robles)
## 1312 Summers 2013 Stuhlmuller Vineyards Reserve Chardonnay (Alexander Valley)
## 1313 Tenuta Peter Sölva & Söhne 2013 I Vigneti Pinot Nero (Alto Adige)
## 1314 Terra Valentine 2012 Cabernet Sauvignon (Napa Valley)
## 1315 Tiefenbrunner 2011 Linticlarus Riserva Pinot Nero (Alto Adige)
## 1316 Tramin 2013 Pinot Nero (Alto Adige)
## 1317 Vesevo 2016 Greco di Tufo
## 1318 Viszlay Vineyards 2013 Estate Petite Sirah (Russian River Valley)
## 1319 Viszlay Vineyards 2013 Winemaker's Reserve Estate Cabernet Sauvignon (Russian River Valley)
## 1320 Yealands 2016 Single Vineyard Sauvignon Blanc (Awatere Valley)
## 1321 Zahel 2016 White (Wiener Gemischter Satz)
## 1322 Albet I Noya 2013 Brut Natural Reserva Sparkling (Penedès)
## 1323 Allram 2016 Strassertaler Grüner Veltliner (Kamptal)
## 1324 Alta Alella 2013 Privat Gran Reserva Brut Nature Sparkling (Cava)
## 1325 Ampelos 2013 Ampelos Vineyard Syrah (Sta. Rita Hills)
## 1326 Ascencion 2014 Mayhem Syrah (Paso Robles)
## 1327 Baigorri 2015 Blanco Fermentado en Barrica Viura (Rioja)
## 1328 Carrick 2015 Bannockburn Chardonnay (Central Otago)
## 1329 Challen 2014 Scarlett Pinot Noir (Sta. Rita Hills)
## 1330 Château Coutinel 2015 Red (Fronton)
## 1331 Château Grand Boise 2015 Red (Côtes de Provence Sainte-Victoire)
## 1332 Château le Payral 2015 Red (Bergerac)
## 1333 Clos Fardet 2013 Tannat (Madiran)
## 1334 Crux 2013 Syrah (Russian River Valley)
## 1335 Damiani 2015 Little Lotus Flower Sauvignon Blanc (Finger Lakes)
## 1336 Damiani 2016 Dry Rosé (Finger Lakes)
## 1337 Davis Family 2014 Throne G-S-M (Russian River Valley)
## 1338 Di Meo 2016 Greco di Tufo
## 1339 Domaine Clos Gautier 2016 Oser Rosé (Côtes de Provence)
## 1340 Domaine Harmonie des Arpents 2016 Rosé (Coteaux Varois en Provence)
## 1341 Domaine Sainte-Marie 2016 Paparazzi Rosé (Côtes de Provence)
## 1342 Domäne Wachau 2016 Terrassen Federspiel Grüner Veltliner (Wachau)
## 1343 Doren 2014 Cabernet Sauvignon (Sonoma Valley)
## 1344 Écluse 2014 Rendition Red (Paso Robles)
## 1345 Feudo Montoni 2016 della Timpa Grillo (Sicilia)
## 1346 Grizzly Peak 2015 Viognier (Rogue Valley)
## 1347 Tilia 2011 Bonarda (Mendoza)
## 1348 Villa Mottura 2011 Le Pitre Rosato (Salento)
## 1349 14 Hands 2010 Riesling (Washington)
## 1350 Barraco 2010 Zibibbo (Sicilia)
## 1351 Capolino Perlingieri 2011 Preta Falanghina (Sannio)
## 1352 Château Bois Noir 2009 Bordeaux Supérieur
## 1353 Château du Moulin Rouge 2010 Haut-Médoc
## 1354 Chateau le Grand Verdus 2011 Rosé (Bordeaux Rosé)
## 1355 Dark Hundred 2011 Red (California)
## 1356 Flying Trout 2010 Cutthroat Red Red (Columbia Valley (WA))
## 1357 Horeau-Beylot 2009 Château Grand Martinet (Saint-Émilion)
## 1358 Bodegas Artazu 2008 Santa Cruz de Artazu Garnacha (Navarra)
## 1359 Burgo Viejo 2011 Tinto (Rioja)
## 1360 Toad Hollow 2010 Goldie's Vineyard Pinot Noir (Russian River Valley)
## 1361 Penumbra 2010 Petite Sirah (North Coast)
## 1362 Stemmari 2011 Grillo (Sicilia)
## 1363 Tablas Creek 2011 Côtes de Tablas Blanc White (Paso Robles)
## 1364 Torre Quarto 2009 Sangue Blu Negroamaro (Puglia)
## 1365 Château de Ferrand 2008 Saint-Émilion
## 1366 Saint André de Figuière 2007 Magali Rosé (Côtes de Provence)
## 1367 Santa Alicia 2006 Reserve Cabernet Sauvignon (Maipo Valley)
## 1368 Château d'Esclans 2006 Rosé (Côtes de Provence)
## 1369 Gainey 2006 Chardonnay (Sta. Rita Hills)
## 1370 Banear 2006 Mamàn White (Delle Venezie)
## 1371 Bonterra 2007 Rosé (Mendocino County)
## 1372 Chaddsford 2005 Syrah (Pennsylvania)
## 1373 Di Lenardo 2007 Vigneto Vigne dai Vieris Pinot Bianco (Venezia Giulia)
## 1374 Lava Cap 2005 Reserve Zinfandel (El Dorado)
## 1375 Lavender Ridge 2006 Mourvèdre (Sierra Foothills)
## 1376 Mas de la Dame 2007 Rosé du Mas Rosé (Les Baux de Provence)
## 1377 Montevina 2005 Terra d'Oro Syrah (Amador County)
## 1378 Quinta de Ventozelo 2007 Cister da Ribeira White (Douro)
## 1379 Substance 2006 Cs Cabernet Sauvignon (Columbia Valley (WA))
## 1380 Mas de la Dame 2003 La Stèle Rouge Syrah-Cabernet (Les Baux de Provence)
## 1381 Stevenot 2007 Rosado Rosé (Sierra Foothills)
## 1382 Stonehouse 2006 Tumbas Vineyard Viognier (Shenandoah Valley (CA))
## 1383 TerraMater 2006 Vineyard Reserve Cabernet Sauvignon-Carmenère (Curicó Valley)
## 1384 Fenestra 2006 Silvaspoons Vineyard Verdelho (Lodi)
## 1385 Renato Keber 2012 Pinot Grigio (Collio)
## 1386 S.A. Prüm 2014 Essence Riesling (Mosel)
## 1387 Schmidt 2011 Malbec (Southern Oregon)
## 1388 Tercic 2013 Ribolla Gialla (Collio)
## 1389 August Truth 2013 Pinot Noir (Russian River Valley)
## 1390 Terre Brûlée 2014 Chenin Blanc (Swartland)
## 1391 Delaire Graff 2012 Chenin Blanc (Swartland)
## 1392 Abbazia di Novacella 2014 Müller-Thurgau (Alto Adige Valle Isarco)
## 1393 Apriori 2014 Hicks Family Vineyard Pinot Noir (Santa Cruz Mountains)
## 1394 Bernat 2014 Rosé of Nebbiolo (Santa Ynez Valley)
## 1395 Bodega Norton 2013 Reserva Malbec (Mendoza)
## 1396 Bouchaine 2013 Bacchus Collection Estate Vineyard Pinot Meunier (Carneros)
## 1397 Brys 2012 Estate Grown Cabernet Franc (Old Mission Peninsula)
## 1398 Bulas 2011 Late Bottled Vintage (Port)
## 1399 C. von Nell-Breuning 2014 Kaseler Dominikaner Riesling (Mosel)
## 1400 Caldaro 2014 Sauvignon (Alto Adige)
## 1401 Casa da Passarella 2012 Somontes Colheita Red (Dão)
## 1402 Chateau Grand Traverse 2012 Reserve Cabernet Franc (Old Mission Peninsula)
## 1403 Colterenzio 2014 Puiten Pinot Grigio (Alto Adige)
## 1404 Manincor 2014 Tannenberg Sauvignon (Alto Adige Terlano)
## 1405 Mario Schiopetto 2013 Pinot Grigio (Collio)
## 1406 Martin Ray 2014 The Tower White (Dry Creek Valley)
## 1407 Matchbook 2014 Old Head Chardonnay (Dunnigan Hills)
## 1408 Nals Margreid 2014 Kerner (Alto Adige)
## 1409 Nals Margreid 2014 Sauvignon (Alto Adige)
## 1410 Paratus 2012 Cabernet Sauvignon (Mount Veeder)
## 1411 Peter Mertes 2014 Platinum Riesling (Mosel)
## 1412 Quinta do Vallado 2013 Sousão (Douro)
## 1413 Quinta dos Murças NV 10 Anos Old Tawny (Port)
## 1414 Replica 2014 Pinot Noir (California)
## 1415 Domaine de l'Hermitage 2010 Red (Bandol)
## 1416 Domaine Weinbach 2011 Cuvée Théo Gewurztraminer (Alsace)
## 1417 Domaines Schlumberger 2007 Spiegel Grand Cru Pinot Gris (Alsace)
## 1418 Dry Creek Vineyard 2011 Somers Ranch Zinfandel (Dry Creek Valley)
## 1419 Dunham 2010 XVI Cabernet Sauvignon (Columbia Valley (WA))
## 1420 Tamarack Cellars 2009 Ciel du Cheval Vineyard Reserve Red (Red Mountain)
## 1421 Tamarack Cellars 2012 Viognier (Columbia Valley (WA))
## 1422 Trimbach 2007 Vendanges Tardives Gewurztraminer (Alsace)
## 1423 Krutzler 2011 Reserve Blaufränkisch (Burgenland)
## 1424 Marita's Vineyard 2007 SOMA Cabernet Sauvignon (Napa Valley)
## 1425 Pamplin 2010 Cabernet Sauvignon (Columbia Valley (WA))
## 1426 Prieler 2010 Blaufränkisch (Leithaberg)
## 1427 Rieflé 2010 Steinert Grand Cru Pinot Gris (Alsace)
## 1428 Rieflé 2010 Zinnkoepflé Grand Cru Vendanges Tardives Pinot Gris (Alsace)
## 1429 Rocca 2010 Collinetta Vineyard Cabernet Sauvignon (Coombsville)
## 1430 Buty 2010 Columbia Rediviva Phinny Hill Vineyard Red (Horse Heaven Hills)
## 1431 Caldwell 2011 Silver Red (Napa Valley)
## 1432 Charles Smith 2012 Stoneridge Vineyard Viognier (Columbia Valley (WA))
## 1433 Château Paradis 2010 Terre des Anges Red (Coteaux d'Aix-en-Provence)
## 1434 Château Salettes 2011 Red (Bandol)
## 1435 Kanonkop 2008 Paul Sauer Red (Simonsberg-Stellenbosch)
## 1436 Walla Walla Vintners 2010 Bello Rosso Cabernet Sauvignon-Sangiovese (Columbia Valley (WA))
## 1437 Walla Walla Vintners 2010 Sagemoor Vineyard Cabernet Sauvignon (Columbia Valley (WA))
## 1438 Domaine de Val d'Arenc 2011 Red (Bandol)
## 1439 Domäne Wachau 2012 Achleiten Smaragd Grüner Veltliner (Wachau)
## 1440 Efeste 2010 Upright Klipsun Vineyard Merlot (Red Mountain)
## 1441 Ferrari-Carano 2008 PreVail Back Forty Cabernet Sauvignon (Alexander Valley)
## 1442 Fritsch 2011 'P' Pinot Noir (Wagram-Donauland)
## 1443 Judith Beck 2011 Pannobile Red (Burgenland)
## 1444 Epoch Estate Wines 2013 Authenticity Red (Paso Robles)
## 1445 Z. Alexander Brown 2013 Limited Release Cabernet Sauvignon (Napa Valley)
## 1446 Alain Brumont 2011 Château Bouscassé Red (Madiran)
## 1447 Alex Gambal 2014 La Maltroie Premier Cru (Chassagne-Montrachet)
## 1448 Alves de Sousa 2013 Abandonado Red (Douro)
## 1449 Carlisle 2014 The Derivative White (Sonoma County)
## 1450 Château La Nerthe 2013 Cuvée des Cadettes Red (Châteauneuf-du-Pape)
## 1451 David Duband 2014 Aux Thorey Premier Cru (Nuits-St.-Georges)
## 1452 David Duband 2014 Les Sentiers Premier Cru (Chambolle-Musigny)
## 1453 Le Ragnaie 2012 Fornace (Brunello di Montalcino)
## 1454 Louis Jadot 2014 Clos des Ursules Premier Cru (Beaune)
## 1455 Masi 2009 Campolongo di Torbe (Amarone della Valpolicella Classico)
## 1456 Epoch Estate Wines 2013 Ingenuity Red (Paso Robles)
## 1457 Freemark Abbey 2013 Cabernet Bosché Cabernet Sauvignon (Rutherford)
## 1458 Fritz Haag 2015 Brauneberg Juffer Sonnenuhr Trocken GG Riesling (Mosel)
## 1459 Georges Vigouroux 2014 Château de Haute-Serre Cuvée Géron Dadine de Haute-Serre Malbec (Cahors)
## 1460 Grimm's Bluff 2014 Cliff Hanger Cabernet Sauvignon (Happy Canyon of Santa Barbara)
## 1461 Foradori 2013 Morei Teroldego (Vigneti delle Dolomiti)
## 1462 Joseph Phelps 2015 Estate Grown Sauvignon Blanc (St. Helena)
## 1463 Le Ragnaie 2012 Brunello di Montalcino
## 1464 Louis Jadot 2014 Les Boudots Premier Cru (Nuits-St.-Georges)
## 1465 Mesa Del Sol 2011 Syrah (Arroyo Seco)
## 1466 Mouchão 2012 Ponte das Canas Red (Alentejo)
## 1467 Pine Ridge 2013 Fortis Cabernet Sauvignon (Napa Valley)
## 1468 Sandler 2015 Bien Nacido Vineyard Pinot Noir (Santa Maria Valley)
## 1469 Sixteen by Twenty 2013 Cabernet Sauvignon (Napa Valley)
## 1470 Stone The Crows 2014 Three Twins Vineyard Cabernet Sauvignon (St. Helena)
## 1471 Tolosa 2015 Hollister Edna Ranch Pinot Noir (Edna Valley)
## 1472 Villa Poggio Salvi 2011 Riserva (Brunello di Montalcino)
## 1473 Volker Eisele Family Estate 2013 Sievers Reserve Cabernet Sauvignon (Napa Valley)
## 1474 TerraNoble 2006 Reserva Cabernet Sauvignon (Colchagua Valley)
## 1475 Terre de Trinci 2003 Riserva (Montefalco Rosso)
## 1476 Mosolo Gleni 2006 Pinot Grigio Pinot Grigio (Colli Orientali del Friuli)
## 1477 Arbor Crest 2004 Cabernet Sauvignon (Columbia Valley (WA))
## 1478 Aresti 2005 Reserve Cabernet Sauvignon (Rio Claro)
## 1479 Wolf Blass 2005 Yellow Label Shiraz-Cabernet Sauvignon (South Australia)
## 1480 Chilensis 2006 Reserva Syrah (Maule Valley)
## 1481 Domaines Barons de Rothschild (Lafite) 2007 Los Vascos Chardonnay (Colchagua Valley)
## 1482 Fetzer 2006 Valley Oaks Riesling (California)
## 1483 Finca Sophenia 2006 Altosur Cabernet Sauvignon (Tupungato)
## 1484 Fournier Père et Fils 2006 Fournier (Menetou-Salon)
## 1485 Barker's Marque 2007 Arona Sauvignon Blanc (Marlborough)
## 1486 Beringer 2004 Bancroft Ranch Vineyard Merlot (Napa Valley)
## 1487 Bock 2000 Cuvée Barrique Red (Villány)
## 1488 Carneros Creek 2006 Reserve Pinot Noir (Carneros)
## 1489 Casale Triocco 2003 Sagrantino di Montefalco
## 1490 Castello di Monastero 2004 Sangiovese (Toscana)
## 1491 Konrad 2006 Pinot Noir (Marlborough)
## 1492 Lungarotti 2006 Pinot Grigio Pinot Grigio (Umbria)
## 1493 Mana 2006 Pinot Noir (Marlborough)
## 1494 Michel Torino 2007 Coleccion Chardonnay (Calchaquí Valley)
## 1495 Robert Hall 2005 Vintage Port Port (Paso Robles)
## 1496 Rubissow 2004 Trompettes Red (Mount Veeder)
## 1497 Santa Julia 2007 Organica Chardonnay (Mendoza)
## 1498 Santa Julia 2007 Pinot Grigio (Mendoza)
## 1499 Ronco Blanchis 2006 Pinot Grigio (Collio)
## 1500 San Pedro 2006 Castillo de Molina Reserva Cabernet Sauvignon (Cachapoal Valley)
## 1501 Planeta 2011 Cometa Fiano (Sicilia)
## 1502 Sequana 2010 Pinot Noir (Santa Lucia Highlands)
## 1503 Small Vines 2010 Baranoff Vineyard Pinot Noir (Russian River Valley)
## 1504 Tasca d'Almerita 2009 Cabernet Sauvignon (Sicilia)
## 1505 Bergström 2010 Temperance Hill Pinot Noir (Eola-Amity Hills)
## 1506 Bründlmayer 2011 Steinmassel Erste Lage Riesling (Kamptal)
## 1507 Château d'Aydie 2010 Madiran Laplace Tannat (Madiran)
## 1508 Château de Gaudou 2009 Réserve Caillou Malbec (Cahors)
## 1509 Château des Jacques 2011 Clos de Rochegrès (Moulin-à-Vent)
## 1510 Emiliana 2009 Gê Red (Colchagua Valley)
## 1511 Happy Canyon Vineyard 2007 Barrack Brand Merlot (Santa Ynez Valley)
## 1512 Palari 2009 Faro
## 1513 Pascal Aufranc 2011 Vignes de 1939 (Chénas)
## 1514 Planeta 2010 Chardonnay (Sicilia)
## 1515 Carabella 2010 Inchinnan Pinot Noir (Chehalem Mountains)
## 1516 Charles Krug 2009 Vintage Selection Cabernet Sauvignon (Napa Valley)
## 1517 Château Blaignan 2010 Médoc
## 1518 Château d'Aydie 2009 Tannat (Madiran)
## 1519 Château de Gaudou 2010 Renaissance Malbec (Cahors)
## 1520 Concha y Toro 2009 Terrunyo Vineyard Selection Block Las Terrazas Unfiltered Cabernet Sauvignon (Maipo Valley)
## 1521 Domaine Bru-Baché 2008 La Quintessence (Jurançon)
## 1522 Lagar de Bezana 2010 Aluvion Gran Reserva Ensamblaje Red (Cachapoal Valley)
## 1523 Morgante 2009 Don Antonio Nero d'Avola (Sicilia)
## 1524 Rex Hill 2010 Reserve Pinot Noir (Willamette Valley)
## 1525 Santa Carolina 2009 VSC Red (Cachapoal Valley)
## 1526 Steven Kent 2009 The Premier Cabernet Sauvignon (Livermore Valley)
## 1527 Hauner 2015 Hierà Rosé (Terre Siciliane)
## 1528 Herdade do Esporão 2016 Defesa Branco White (Alentejano)
## 1529 J. Portugal Ramos 2016 Pouca Roupa Rosé (Alentejano)
## 1530 Jack's House 2015 Chardonnay (California)
## 1531 Jean León 2015 3055 Chardonnay (Penedès)
## 1532 Bodegas Luzón 2014 Luzón Red (Jumilla)
## 1533 Volver 2014 Single Vineyard Tempranillo (La Mancha)
## 1534 Cellars 33 2016 Rosé (California)
## 1535 Château de Chaintres 2013 Clos des Oratoriens (Saumur)
## 1536 Château de la Vieille Tour 2016 Bordeaux Blanc
## 1537 Château la France 2016 Bordeaux Blanc
## 1538 Château Lalande Méric 2016 Rosé (Bordeaux Rosé)
## 1539 Château Lauduc 2016 Rosé (Bordeaux Rosé)
## 1540 Cline 2015 Syrah (Sonoma County)
## 1541 Clos de Nit 2015 Red (Montsant)
## 1542 DFJ Vinhos 2016 Bigode Rosé (Lisboa)
## 1543 DFJ Vinhos 2016 Casa do Lago Branco White (Lisboa)
## 1544 Jidvei 2015 Nec Plus Ultra Demisec Sauvignon Blanc (Jidvei)
## 1545 Orion Wines 2016 The Wanted Zin Blush Rosato (Puglia)
## 1546 Raventós de Alella 2015 Tina 20 Pansa Blanca (Alella)
## 1547 Rubus 2016 Chardonnay (Colchagua Valley)
## 1548 Sanguinhal 2016 Cerejeiras Tinto Red (Lisboa)
## 1549 Santa Rita 2016 120 Reserva Especial Carmenère (Central Valley)
## 1550 Valdivieso 2016 Sauvignon Blanc (Central Valley)
## 1551 Villa Cordevigo 2016 Heaven Scent (Bardolino Chiaretto)
## 1552 Wines & Winemakers 2016 Casa Ermelinda Freitas Monte da Baía Branco White (Península de Setúbal)
## 1553 Adega Cooperativa de Borba 2016 Cuvée B Red (Alentejo)
## 1554 Botromagno 2016 Rosé di Lulu Rosato (Murgia)
## 1555 Bowman Cellars 2015 Chardonnay (Russian River Valley)
## 1556 Quinta das Arcas 2016 Arca Nova Branco White (Vinho Verde)
## 1557 Quilceda Creek 2008 Cabernet Sauvignon (Columbia Valley (WA))
## 1558 Williams Selyem 2009 Precious Mountain Vineyard Pinot Noir (Sonoma Coast)
## 1559 Château Margaux 2009 Margaux
## 1560 Château Palmer 2009 Margaux
## 1561 Pirouette 2008 Red Wine Red (Columbia Valley (WA))
## 1562 Marchesi Antinori 2008 Guado al Tasso (Bolgheri Superiore)
## 1563 Château Troplong Mondot 2009 Saint-Émilion
## 1564 Tenuta San Guido 2008 Sassicaia (Bolgheri Sassicaia)
## 1565 Tenuta dell'Ornellaia 2008 Ornellaia (Bolgheri Superiore)
## 1566 JCB 2009 No. 1 Cabernet Sauvignon (Napa Valley)
## 1567 Château La Mission Haut-Brion 2009 Pessac-Léognan
## 1568 Williams Selyem 2009 Allen Vineyard Pinot Noir (Russian River Valley)
## 1569 Château Figeac 2009 Saint-Émilion
## 1570 Château Léoville Poyferré 2009 Saint-Julien
## 1571 Tenuta Argentiera 2008 Argentiera (Bolgheri Superiore)
## 1572 Château Haut-Brion 2009 Pessac-Léognan
## 1573 Château la Fleur-Pétrus 2009 Pomerol
## 1574 Château Lynch-Bages 2009 Pauillac
## 1575 Groth 2008 Reserve Cabernet Sauvignon (Oakville)
## 1576 Château Mouton Rothschild 2009 Pauillac
## 1577 Château Trotanoy 2009 Pomerol
## 1578 Williams Selyem 2009 Rochioli Riverblock Vineyard Pinot Noir (Russian River Valley)
## 1579 Château Beau-Séjour Bécot 2009 Saint-Émilion
## 1580 Williams Selyem 2009 Flax Vineyard Pinot Noir (Russian River Valley)
## 1581 Château Branaire-Ducru 2009 Saint-Julien
## 1582 Château Canon 2009 Saint-Émilion
## 1583 Château Canon la Gaffelière 2009 Saint-Émilion
## 1584 Doyenne 2008 Grand Ciel Vineyard Syrah (Red Mountain)
## 1585 Hanzell 2009 Chardonnay (Sonoma Valley)
## 1586 Balletto 2013 Chardonnay (Russian River Valley)
## 1587 Billsboro 2013 Sawmill Creek Vineyards Syrah (Finger Lakes)
## 1588 C'est Bon 2013 Reserve Selection Chardonnay (Oakville)
## 1589 Ceuso 2014 Scurati Nero d'Avola (Terre Siciliane)
## 1590 Château Balac 2012 Cru Bourgeois (Haut-Médoc)
## 1591 Château des Annereaux 2011 Lalande de Pomerol
## 1592 Château Frank NV Célèbre Crémant Riesling (Finger Lakes)
## 1593 Château Haut-Bergey 2013 Pessac-Léognan
## 1594 Château Larrivet Haut-Brion 2014 Les Hauts de Larrivet Haut-Brion (Pessac-Léognan)
## 1595 Château le Sartre 2013 Pessac-Léognan
## 1596 Château Mancèdre 2013 Pessac-Léognan
## 1597 Château Peyredon Lagravette 2013 Haut-Médoc
## 1598 Château Potensac 2013 Chapelle de Potensac (Médoc)
## 1599 Chateau Ste. Michelle 2012 Indian Wells Red (Columbia Valley (WA))
## 1600 Clos Beauregard 2013 Pomerol
## 1601 Dark Horse 2014 The Original Pinot Noir (California)
## 1602 Domaine Anderson 2013 Walraven Vineyard Chardonnay (Anderson Valley)
## 1603 Dowsett Family 2014 Aunt Diane's Vineyard Riesling (Columbia Gorge (WA))
## 1604 Feudo Antico 2010 Memorie Rosato (Sicilia)
## 1605 Gamache 2012 Cabernet Franc (Columbia Valley (WA))
## 1606 Mills Reef 2014 Reserve Sauvignon Blanc (Hawke's Bay)
## 1607 Paumanok 2014 Semi Dry Riesling (North Fork of Long Island)
## 1608 Broken Clouds 2014 Chardonnay (Sonoma Coast)
## 1609 Browne Family Vineyards 2014 Chardonnay (Columbia Valley (WA))
## 1610 Caruso & Minini 2012 Cutaja Riserva Nero d'Avola (Delia Nivolelli)
## 1611 Castillo De Feliciana 2014 Estate Vineyard Albariño (Walla Walla Valley (WA))
## 1612 Château Amour 2013 Médoc
## 1613 Château de Cruzeau 2013 Pessac-Léognan
## 1614 Château de Paillet-Quancard 2012 Cadillac Côtes de Bordeaux
## 1615 Château de Rochemorin 2013 Pessac-Léognan
## 1616 Gabriel Meffre 2015 La Châsse Sauvignon-Colombard White (Vin de France)
## 1617 Gabriel Meffre 2016 La Châsse Chardonnay (Vin de France)
## 1618 Wines & Winemakers 2016 Samora Rosé (Tejo)
## 1619 Zolo 2017 Sustainably Farmed Estate Grown and Bottled Torrontés (Mendoza)
## 1620 Adega Cooperativa de Borba 2016 Adega de Borba Branco White (Alentejo)
## 1621 Adega Cooperativa de Borba 2016 Brado Branco White (Alentejano)
## 1622 Alta Vista 2016 Malbec Rosé (Mendoza)
## 1623 Aymara 2015 Estate Torrontés (Maipú)
## 1624 Paul Buisse 2016 Sauvignon Blanc (Touraine)
## 1625 Saget la Perrière 2016 La Petite Perrière Pinot Noir (Vin de France)
## 1626 The Williamsburg Winery 2015 A Midsummer Night's White White (Virginia)
## 1627 Valentin Bianchi 2015 Sensual Malbec (Mendoza)
## 1628 Gruet NV Blanc de Blancs Chardonnay (America)
## 1629 Jean-Max Roger 2015 Le Charnay (Menetou-Salon)
## 1630 Magnum Vinhos 2015 Flor de Maio Mayflower Red (Alentejano)
## 1631 Adega Cooperativa de Borba 2016 Brado Red (Alentejano)
## 1632 Blue Valley 2015 Muskat Ottonel (Middleburg)
## 1633 Vinadeis 2016 Le Val Merlot (Vin de France)
## 1634 Wines & Winemakers 2014 Dona Helena Reserva Red (Península de Setúbal)
## 1635 Zolo 2017 Sustainably Farmed Estate Grown and Bottled Rosé (Mendoza)
## 1636 Gnarly Head 2015 Pinot Noir (California)
## 1637 Jacob's Creek 2016 Chardonnay (Australia)
## 1638 Ca' Momi 2015 Chardonnay (Napa Valley)
## 1639 Domaine de Reuilly 2015 Pinot Noir (Reuilly)
## 1640 Enoport 2014 Topázio Reserva Red (Douro)
## 1641 Fiuza 2015 Tinta Miúda Red (Tejo)
## 1642 Tie-Dye 2014 Red (North Coast)
## 1643 Il Chiosso 2010 Gattinara
## 1644 Grayson 2015 Lot 11 Chardonnay (California)
## 1645 Leaping Lizard 2014 Cabernet Sauvignon (California)
## 1646 Portal del Montsant 2014 Bruberry Red (Montsant)
## 1647 Benvenuto de la Serna 2015 Mil Piedras Viognier (Vista Flores)
## 1648 Decoy 2013 Red (Sonoma County)
## 1649 Trapiche 2014 Oak Cask Malbec (Mendoza)
## 1650 Xanadu 2015 Exmoor Sauvignon Blanc-Semillon (Margaret River)
## 1651 Adega Mãe 2015 Pinta Negra Rosé (Lisboa)
## 1652 Aniello 2015 006 Riverside Estate Merlot (Patagonia)
## 1653 Oak Knoll 2014 Cloud Rest Vineyard Pinot Gris (Willamette Valley)
## 1654 Parras Wines 2015 Mula Velha Reserva Red (Lisboa)
## 1655 Parras Wines 2015 Terra Grande Red (Alentejano)
## 1656 Quinta dos Avidagos 2015 Lote 138 Red (Douro)
## 1657 Château Lanscade 2015 Bordeaux
## 1658 Château Troupian 2014 Haut-Médoc
## 1659 Château Vrai Caillou 2015 Entre-Deux-Mers
## 1660 Cliff Creek 2011 Sams Valley Vineyard Claret (Southern Oregon)
## 1661 Del Rio 2013 Claret (Rogue Valley)
## 1662 Delfino 2014 Cabernet Sauvignon (Umpqua Valley)
## 1663 Gru 2015 Montepulciano d'Abruzzo
## 1664 J. Portugal Ramos 2015 Pouca Roupa Branco White (Alentejano)
## 1665 First & Local 2015 Chardonnay (California)
## 1666 Amalaya 2015 Esperanza Por Un Milagro White (Salta)
## 1667 Half Mile Creek 2014 Semillon-Sauvignon Blanc (South Eastern Australia)
## 1668 California Republic 2013 Cabernet Sauvignon (California)
## 1669 Cantina Valle Tritana 2014 Capostrano (Montepulciano d'Abruzzo)
## 1670 Château Doms 2014 Graves
## 1671 Château Pindefleurs 2013 Saint-Émilion
## 1672 Cliff Creek 2012 Sams Valley Vineyard Merlot (Southern Oregon)
## 1673 Quady North 2007 Flagship Syrah (Applegate Valley)
## 1674 Qupé 2010 Marsanne (Santa Ynez Valley)
## 1675 Réserve des Oliviers 2009 White (Châteauneuf-du-Pape)
## 1676 Tardieu-Laurent 2007 Hermitage
## 1677 Sant Agnese dei F.lli Gigli 2006 Libatio Red (Toscana)
## 1678 Bonaccorsi 2008 Julia's Vineyard Pinot Noir (Santa Maria Valley)
## 1679 Chanin 2008 Bien Nacido Vineyard Chardonnay (Santa Maria Valley)
## 1680 Cuda Ridge Wines 2008 Cabernet Franc (Livermore Valley)
## 1681 Doña Silvina 2006 Malbec (Mendoza)
## 1682 Dürnberg 2007 Impetus Select Red (Niederösterreich)
## 1683 Il Veltro 2005 Brunello di Montalcino
## 1684 Lange 2010 Pinot Gris (Willamette Valley)
## 1685 Markus Huber 2010 Grüner Veltliner (Traisental)
## 1686 Massi di Mandorlaia 2007 Colpetroso (Maremma)
## 1687 Melrose 2010 Sauvignon Blanc (Umpqua Valley)
## 1688 Pieve Vecchia 2007 Pieve dei Monaci (Maremma)
## 1689 Piña 2007 Mimbre Cabernet Sauvignon (Napa Valley)
## 1690 Qupé 2009 Sawyer Lindquist Vineyard Grenache (Edna Valley)
## 1691 Qupé 2010 Bien Nacido Cuvée White (Santa Maria Valley)
## 1692 Tardieu-Laurent 2009 Vieilles Vignes White (Châteauneuf-du-Pape)
## 1693 Tessa Marie 2009 Grenache Blanc (Santa Barbara County)
## 1694 Türk 2008 Eiswein 375ml Grüner Veltliner (Niederösterreich)
## 1695 Ugly Duckling 2009 Cabernet Sauvignon (California)
## 1696 Finca Vides 2009 Torcidas Malbec (Mendoza)
## 1697 Petra 2003 Quercegobbe Merlot (Toscana)
## 1698 Recanati 2006 Kosher Chardonnay (Galilee)
## 1699 Terralsole 2005 Solista Syrah (Toscana)
## 1700 Tommasi 2005 Poggio al Tufo Rompicollo (Maremma)
## 1701 Caves Aliança 2006 Galeria Bical (Bairrada)
## 1702 Bodegas Cerrosol 2006 Doña Beatriz Sauvignon (Rueda)
## 1703 Dry Creek Vineyard 2006 Fumé Blanc (Sonoma County)
## 1704 Prejean 2006 Chardonnay (Finger Lakes)
## 1705 Kadesh Barnea 2004 Estate Bottled Reserve Kosher Cabernet Sauvignon (Negev Hills)
## 1706 Antonino Tringali-Casanuova 2005 Patrimonio Sangiovese (Toscana)
## 1707 Tyrrell's 2006 Lost Block Chardonnay (South Eastern Australia)
## 1708 Vasse River 2006 Chardonnay (Margaret River)
## 1709 Vega de la Reina 2006 Verdejo (Rueda)
## 1710 Villa Vignamaggio 2003 Wine Obsession I Miti Red (Toscana)
## 1711 Vinum Cellars 2006 Vista Verde Vineyard Viognier (San Benito County)
## 1712 Analivia 2006 Verdejo (Rueda)
## 1713 Battle of Bosworth 2005 Shiraz-Viognier (McLaren Vale)
## 1714 La Gerla 2003 Birba Sangiovese Grosso (Toscana)
## 1715 Quinta do Grifo 2004 Reserva Red (Douro)
## 1716 Recanati 2004 Kosher Reserve Shiraz (Galilee)
## 1717 St. Clement 2006 Chardonnay (Carneros)
## 1718 Quinta da Alorna 2006 Touriga Nacional (Ribatejano)
## 1719 Torres 2006 Viña Esmeralda Moscatel (Catalunya)
## 1720 Renwood 2006 Pinot Grigio (Lodi)
## 1721 Tapeña 2006 Verdejo (Vino de la Tierra de Castilla)
## 1722 Marqués de Cáceres 2006 Blanco Fermentado en Barrica White (Rioja)
## 1723 Bodegas Campante 2006 Versatus White (Ribeiro)
## 1724 Brick Road 2005 Nine Gums Vineyard Shiraz (McLaren Vale)
## 1725 Chaddsford 2005 Barrel Select Pinot Noir (Pennsylvania)
## 1726 Ventosa 2005 Chardonnay (New York)
## 1727 Bodegas Riojanas 2006 Monte Real Gran Reserva (Rioja)
## 1728 Château de Malle 2011 Sauternes
## 1729 Presqu'ile 2012 Steiner Creek Vineyard Pinot Noir (San Luis Obispo County)
## 1730 Sante Arcangeli 2013 Split Rail Vineyard Chardonnay (Santa Cruz Mountains)
## 1731 Sixto 2012 Uncovered Chardonnay (Washington)
## 1732 Syncline 2013 Subduction Red (Columbia Valley (WA))
## 1733 Lambardi 2010 Brunello di Montalcino
## 1734 Le Carré 2012 Saint-Émilion
## 1735 Two Vintners 2012 Some Days Are Stones Stoney Vine Vineyard Syrah (Walla Walla Valley (WA))
## 1736 Va Piano 2012 Syrah (Columbia Valley (WA))
## 1737 Tenuta San Giorgio 2010 Ugolforte (Brunello di Montalcino)
## 1738 Le P'tit Paysan 2013 Jack's Hill Chardonnay (Monterey County)
## 1739 Lisini 2008 Riserva (Brunello di Montalcino)
## 1740 Mesa Del Sol 2009 Syrah (Arroyo Seco)
## 1741 Ornellaia 2012 Le Serre Nuove (Bolgheri)
## 1742 Analemma 2010 Atavus Vineyard Blanc de Noir Pinot Noir (Columbia Gorge (WA))
## 1743 Bella 2012 Block 10 Zinfandel (Alexander Valley)
## 1744 Centolani 2010 Poggiotondo (Brunello di Montalcino)
## 1745 Château Bouscaut 2012 Pessac-Léognan
## 1746 Château Couhins 2012 Pessac-Léognan
## 1747 Château d'Arche 2011 Sauternes
## 1748 Château Gaudin 2011 Pauillac
## 1749 Château Phélan-Ségur 2012 Saint-Estèphe
## 1750 Darcie Kent Vineyards 2012 De Mayo Block Chardonnay (Livermore Valley)
## 1751 Univitis 2013 Château Les Vergnes (Bordeaux)
## 1752 Volver 2014 Tarima Sparkling (Alicante)
## 1753 Washington Hills 2014 Late Harvest Riesling (Washington)
## 1754 Finca La Pica 2011 Crianza (Rioja)
## 1755 Château Saint-Urban 2013 Blaye Côtes de Bordeaux
## 1756 Conde de Subirats NV Brut Rose Sparkling (Cava)
## 1757 Crayelle Cellars 2013 Bishop's Block Red (Ancient Lakes)
## 1758 Domaine Beausejour 2014 Les Grenettes Sauvignon Blanc (Touraine)
## 1759 Les Rocailles 2014 Pinot Noir (Vin de Savoie)
## 1760 Niel Santofimia 2013 Red (Almansa)
## 1761 Producta Vignobles 2013 Mission St. Vincent (Bordeaux)
## 1762 Silver Thread 2014 Randolph O'Neill Vineyard Riesling (Cayuga Lake)
## 1763 V. Sattui 2012 Malbec (Napa Valley)
## 1764 Ventosa 2013 Riesling (Seneca Lake)
## 1765 Biutiful NV Brut Rose Garnacha (Cava)
## 1766 Cap Royal 2014 Bordeaux Blanc
## 1767 Cave B 2014 Dry Rosé (Ancient Lakes)
## 1768 Château Barreyre 2013 Bordeaux Supérieur
## 1769 Château Laronde Désormes 2013 Bordeaux Supérieur
## 1770 Château Los Boldos 2013 Grand Reserve Syrah (Cachapoal Valley)
## 1771 Château Roquevieille 2013 Castillon Côtes de Bordeaux
## 1772 Cocobon 2013 Red (California)
## 1773 Domaine de la Sanglière 2014 Juliette Rosé (Mediterranée)
## 1774 Doña Isadora 2012 Carmenère (Central Valley)
## 1775 Ehret 2010 Bellarina Meritage (Knights Valley)
## 1776 Château de Belcier 2013 Castillon Côtes de Bordeaux
## 1777 Château des Tourtes 2012 Blaye Côtes de Bordeaux
## 1778 Château Donjon de Bruignac 2013 Premium (Bordeaux Supérieur)
## 1779 Château Godard 2013 Francs Côtes de Bordeaux
## 1780 Château Haut Boilon 2013 Blaye Côtes de Bordeaux
## 1781 Helix by Reininger 2011 Stone Tree SoRhô Red (Columbia Valley (WA))
## 1782 Capanna 2009 Brunello di Montalcino
## 1783 Cellers Unió 2009 Roureda Llicorella Gran Selecció Vitis 60 Red (Priorat)
## 1784 Château Haut Bertinerie 2010 Blaye Côtes de Bordeaux
## 1785 Château Lalande-Borie 2011 Saint-Julien
## 1786 Château Preuillac 2011 Médoc
## 1787 Koenig Vineyards 2011 Ice Wine Riesling
## 1788 Krutz 2011 Soberanes Vineyard Pinot Noir (Santa Lucia Highlands)
## 1789 Loring Wine Company 2012 Aubaine Vineyard Pinot Noir (San Luis Obispo County)
## 1790 Loring Wine Company 2012 Durell Vineyard Chardonnay (Sonoma Coast)
## 1791 Los Vencejos 2010 Malbec (Uco Valley)
## 1792 Manzoni 2011 Estate Reserve Pinot Noir (Santa Lucia Highlands)
## 1793 Amavi 2011 Syrah (Walla Walla Valley (WA))
## 1794 Bolsignano 2009 Grazia (Brunello di Montalcino)
## 1795 Bouchaine 2012 Bouche d'Or Chardonnay (Carneros)
## 1796 Bucher 2012 Pinot Noir (Russian River Valley)
## 1797 Syncline 2011 Mourvèdre (Red Mountain)
## 1798 Uccelliera 2008 Riserva (Brunello di Montalcino)
## 1799 Villadoria 2004 Riserva (Barolo)
## 1800 Château Cos d'Estournel 2011 Les Pagodes de Cos (Saint-Estèphe)
## 1801 Château de Roquebrune 2010 Cuvée Reine (Lalande de Pomerol)
## 1802 Quinta do Casal Branco 2014 Terra de Lobos Tinto Red (Tejo)
## 1803 Real Companhia Velha 2014 Gewurztraminer (Duriense)
## 1804 Jean-Marc Burgaud 2014 Beaujolais-Villages
## 1805 Jean-Marc Burgaud 2014 Les Vignes de Thulon (Beaujolais-Villages)
## 1806 Jewelry Box 2012 Chardonnay (Central Coast)
## 1807 Juvé y Camps 2013 Essential Xarel-lo (Cava)
## 1808 Lanson NV White Label Sec (Champagne)
## 1809 Magnolia Court 2013 Chardonnay (Central Coast)
## 1810 Mamarracho 2014 The Issue of Inexpensive Wines is When They Are Not Good Enough Red (Valencia)
## 1811 Mantel Blanco 2014 Verdejo (Rueda)
## 1812 Red Rock 2013 Reserve Pinot Noir (California)
## 1813 Quinta da Lapa 2014 Selection Branco White (Tejo)
## 1814 Real Companhia Velha 2014 Quinta de Cidrô Sauvignon Blanc (Duriense)
## 1815 Castillo de Liria 2014 Winemaker's Selection White (Valencia)
## 1816 San Felipe 2013 Oak Cask Estate Bottled Malbec (Mendoza)
## 1817 Tarantas 2014 Brut Sparkling (Cava)
## 1818 Decoy 2013 Pinot Noir (Sonoma County)
## 1819 Domaine André Colonge 2014 Beaujolais
## 1820 Domaine du Vissoux 2014 Les Griottes Rosé (Beaujolais Rosé)
## 1821 Domaine Pral 2014 Les Pays de Pierres Dorées (Beaujolais)
## 1822 Espaço Rural 2014 Alves Vieira Branco White (Alentejano)
## 1823 François Lurton 2015 Piedra Negra Pinot Gris Alta Colección Rosado (Uco Valley)
## 1824 Georges Duboeuf 2014 Chiroubles
## 1825 Georges Duboeuf 2014 Domaine du Paradis (Saint-Amour)
## 1826 Limited by Cambridge Cellars 2013 Cabernet Sauvignon (Central Coast)
## 1827 Loron et Fils 2014 Beau! (Beaujolais)
## 1828 Adegas Moure 2013 Tradición Joven Red (Ribeira Sacra)
## 1829 Bocopa 2012 Alcanta Crianza Red (Alicante)
## 1830 Cairdean Estate 2011 Chardonnay (Napa Valley)
## 1831 Cardwell Hill 2014 Blanc de Noir Pinot Noir (Willamette Valley)
## 1832 Viluko 2011 Cabernet Sauvignon (Sonoma County)
## 1833 Alias 2013 Secret Agent Red (California)
## 1834 Bodegas Paniza 2013 Agostón Viura-Chardonnay (Cariñena)
## 1835 Bota Box 2013 Sauvignon Blanc (California)
## 1836 Viña Arnáiz 2010 Crianza (Ribera del Duero)
## 1837 Good Harbor 2011 Dry Riesling (Leelanau Peninsula)
## 1838 Kuehn 2013 Pinot Gris (Alsace)
## 1839 Long Meadow Ranch 2011 Cabernet Sauvignon (Napa Valley)
## 1840 Mario Bazán 2009 Cabernet Sauvignon (Napa Valley)
## 1841 Medlock Ames 2011 Bell Mountain Vineyard Cabernet Sauvignon (Alexander Valley)
## 1842 Peirano 2012 The Other Red (Lodi)
## 1843 Marilyn Sauvignon Blonde 2013 Sauvignon Blanc (Napa Valley)
## 1844 Zudugarai 2013 White (Getariako Txakolina)
## 1845 Cascada Peak 2012 Cabernet Sauvignon (Mendoza)
## 1846 Bouza de Carril 2013 Albariño (Rías Baixas)
## 1847 Eresma 2012 Fermentado en Barrica Verdejo (Rueda)
## 1848 Montevicor 2010 Garnacha (Calatayud)
## 1849 Maximo 2012 Edicion Limitada Garnacha (Vino de la Tierra de Castilla)
## 1850 Witching Stick 2012 Fashauer Vineyard Zinfandel (Anderson Valley)
## 1851 Heritage 2013 Estate Reserve Barrel Fermented Chardonnay (Outer Coastal Plain)
## 1852 Alamos 2013 Red (Mendoza)
## 1853 Dopff Au Moulin 2013 Gewurztraminer (Alsace)
## 1854 EdenVale 2007 Syrah (Rogue Valley)
## 1855 Alto Cinco 2012 Paniza Garnacha (Cariñena)
## 1856 Black Box 2013 Malbec (Mendoza)
## 1857 Hendry 2011 Hendry Vineyard Cabernet Sauvignon (Napa Valley)
## 1858 White Oak 2012 Chardonnay (Russian River Valley)
## 1859 Merrill Cellars 2012 Cotes du Rogue G-S-M (Oregon)
## 1860 Feudi del Pisciotto 2012 Giambattista Valli (Cerasuolo di Vittoria)
## 1861 Château Beausejour-Duffau-Lagarrosse 2009 Saint-Émilion
## 1862 Château Clerc Milon 2009 Pauillac
## 1863 Château Magdelaine 2009 Saint-Émilion
## 1864 Hundred Acre 2008 Few and Far Between Vineyard Cabernet Sauvignon (Napa Valley)
## 1865 Monteverro 2008 Tinata Red (Toscana)
## 1866 Mazzei 2008 Castello di Fonterutoli Siepi Red (Toscana)
## 1867 Nefarious 2009 Cabernet Sauvignon (Wahluke Slope)
## 1868 Prospect 772 2009 The Brawler Syrah-Viognier (Calaveras County)
## 1869 Quilceda Creek 2008 Palengat Red Wine Red (Horse Heaven Hills)
## 1870 Castellare di Castellina 2009 Poggio ai Merli Merlot (Toscana)
## 1871 Castro Pena Alba 2007 Picos de Couto Grande Escolha Red (Dão)
## 1872 Château de Pez 2009 Saint-Estèphe
## 1873 Château Gruaud Larose 2009 Saint-Julien
## 1874 Doyenne 2009 Métier Red (Yakima Valley)
## 1875 Gérard Bertrand 2008 L'Hospitalitas - La Clape Red (Coteaux du Languedoc)
## 1876 Terre del Marchesato 2008 Marchesale Syrah (Toscana)
## 1877 Argiano 2006 L'Orciaia (Brunello di Montalcino)
## 1878 Campo al Noce 2008 Syrah (Toscana)
## 1879 Chandon NV Etoile Rosé Sparkling (Sonoma-Napa)
## 1880 Château du Tertre 2009 Margaux
## 1881 Château La Conseillante 2009 Pomerol
## 1882 Chester Kidder 2007 Red Wine Red (Columbia Valley (WA))
## 1883 Dunham 2008 Syrah (Columbia Valley (WA))
## 1884 Patz & Hall 2009 Hyde Vineyard Chardonnay (Carneros)
## 1885 Quinta de Foz de Arouce 2007 Vinhas Velhas de Santa Maria Baga (Beiras)
## 1886 Tenuta Monteti 2004 Monteti Red (Toscana)
## 1887 Henry's Drive Vignerons 2008 Reserve Shiraz (Padthaway)
## 1888 Volker Eisele Family Estate 2008 Cabernet Sauvignon (Napa Valley)
## 1889 Angel Vine 2009 The Hellion Red (Columbia Valley (WA))
## 1890 La Chablisienne 2005 Les Vénérables (Chablis)
## 1891 Lake Breeze 2003 Follett Family Vineyards Cabernet Sauvignon (Langhorne Creek)
## 1892 Longview 2006 Devils Elbow Single Vineyard Cabernet Sauvignon (Adelaide Hills)
## 1893 Villa Matilde 2003 Red (Falerno del Massico)
## 1894 Williams Selyem 2005 Hawk Hill Vineyard Chardonnay (Russian River Valley)
## 1895 Craneford 2005 Allyson Parsons Cabernet Sauvignon (Barossa Valley)
## 1896 Feudi di San Gregorio 2005 Greco di Tufo
## 1897 Ponzi 2005 Reserve Chardonnay (Willamette Valley)
## 1898 Razor's Edge 2006 Cabernet Sauvignon (McLaren Vale)
## 1899 Torres 2003 Reserva Real Red (Penedès)
## 1900 Carlos Basso 2006 Dos Fincas Cabernet Sauvignon-Merlot (Uco Valley)
## 1901 Daedalus 2006 Pinot Gris (Willamette Valley)
## 1902 La Chablisienne 2005 Côte de Léchet Premier Cru (Chablis)
## 1903 Piattelli 2005 Premium Malbec (Luján de Cuyo)
## 1904 Strathewen Hills 2005 Cabernet Sauvignon (Yarra Valley)
## 1905 Di Meo 2003 Alessandra (Fiano di Avellino)
## 1906 Hendry 2004 Cabernet Sauvignon (Napa Valley)
## 1907 Ànima Negra 2004 Àn Red (Vi de la Terra Illes Balears)
## 1908 Botromagno 2001 Gravisano Passito Malvasia Bianca (Murgia)
## 1909 Nugan Family Estates 2004 Cabernet Sauvignon (South Eastern Australia)
## 1910 Shingleback 2005 Cabernet Sauvignon (McLaren Vale)
## 1911 Alexander Valley Vineyards 2006 Wetzel Family Estate Chardonnay (Alexander Valley)
## 1912 Summerwood 2012 Grenache Blanc (Paso Robles)
## 1913 Steininger 2010 Sekt Pinot Noir (Österreichischer Sekt)
## 1914 AntoLin Cellars 2011 Estate Riesling (Yakima Valley)
## 1915 Calicaro 2010 Les Fauves White Hawk Vineyard Syrah (Santa Barbara)
## 1916 Caliterra 2010 Tribute Edicion Limitada Syrah-Cabernet Sauvignon-Viognier Red (Colchagua Valley)
## 1917 Emiliana 2011 Novas Gran Reserva Made with Organically Grown Grapes Pinot Noir (Casablanca Valley)
## 1918 Errazuriz 2012 Max Reserva Sauvignon Blanc (Aconcagua Valley)
## 1919 Château Belrose 2011 Bordeaux
## 1920 Château de Lestiac 2011 Cadillac Côtes de Bordeaux
## 1921 Château les Mottes Pradier 2011 Côtes de Bourg
## 1922 Cor Cellars 2011 E Cor Si Move Tempranillo 24K Vineyard Tempranillo (Wahluke Slope)
## 1923 Domäne Wachau 2012 Terrassen Gelber Muskateller (Wachau)
## 1924 Happy Canyon Vineyard 2010 Piocho Red (Happy Canyon of Santa Barbara)
## 1925 Viña Bisquertt 2011 La Joya Gran Reserva Merlot (Colchagua Valley)
## 1926 Virna Borgogno 2009 Cannubi Boschis (Barolo)
## 1927 Walla Walla Vintners 2010 Merlot (Walla Walla Valley (WA))
## 1928 Pezat 2011 Bordeaux Supérieur
## 1929 Pico Maccario 2011 Tre Rovere (Barbera d'Asti Superiore)
## 1930 Robert Mondavi 2011 Private Selection Cabernet Sauvignon (Central Coast)
## 1931 Robert Oatley 2011 Finisterre Chardonnay (Margaret River)
## 1932 Shvo 2010 Chenin Blanc (Upper Galilee)
## 1933 Stroppiana 2008 Vigna San Giacomo (Barolo)
## 1934 Château Grand Billard 2011 Bordeaux
## 1935 Mitolo 2009 Reiver Shiraz (Barossa Valley)
## 1936 Anakena 2011 Ona Special Reserve Pinot Noir (Leyda Valley)
## 1937 Cade 2009 Napa Cuvée Cabernet Sauvignon (Napa Valley)
## 1938 Caliterra 2010 Tribute Edicion Limitada Cabernet Franc-Petit Verdot Red (Colchagua Valley)
## 1939 Casa Rivas 2010 Gran Reserva Syrah (Maipo Valley)
## 1940 Waterbrook 2011 Reserve Chardonnay (Columbia Valley (WA))
## 1941 Château Macquin 2011 Saint-Georges-Saint-Émilion
## 1942 Domäne Wachau 2012 Terrassen Federspiel Grüner Veltliner (Wachau)
## 1943 Hawks View 2010 Merlot (Washington)
## 1944 Chime 2012 Chardonnay (Oakville)
## 1945 Clos Troteligotte 2011 K-nom Malbec-Merlot (Cahors)
## 1946 Coghlan 2010 Coghlan Estate Vineyard Block 2 Diamond Cabernet Sauvignon (Santa Ynez Valley)
## 1947 Collier Falls 2010 Hillside Estate Zinfandel (Dry Creek Valley)
## 1948 Dumas Station 2010 Cow Catcher Red (Walla Walla Valley (WA))
## 1949 Laetitia 2011 Clone 113 Pinot Noir (Arroyo Grande Valley)
## 1950 Mancura 2011 Guardián Reserva Cabernet Sauvignon (Maipo Valley)
## 1951 O•S Winery 2009 Red (Columbia Valley (WA))
## 1952 Pezat 2012 Bordeaux Blanc
## 1953 Purlieu 2012 Le Pich Sauvignon Blanc (Napa Valley)
## 1954 SuLei 2010 Les Collines Vineyard Red (Walla Walla Valley (WA))
## 1955 Valle Secreto 2010 First Edition Cabernet Sauvignon (Cachapoal Valley)
## 1956 Binyamina 2010 Yogev Cabernet Sauvignon (Galilee)
## 1957 Wild Horse 2011 Unbridled Chardonnay (Santa Maria Valley)
## 1958 Robert Perroud 2011 L'Enfer des Balloquets (Brouilly)
## 1959 Stephanie 2008 Merlot (Napa Valley)
## 1960 Tarara 2010 Nevaeh White (Virginia)
## 1961 Tenute Soletta 2011 Chimera (Vermentino di Sardegna)
## 1962 Tenute Soletta 2011 Kyanos White (Isola dei Nuraghi)
## 1963 The Gardener 2011 Pinot Noir (Carneros)
## 1964 Turnbull 2009 Leopoldina Cabernet Franc (Oakville)
## 1965 Vignerons de Bel Air 2011 Domaine de la Source (Chiroubles)
## 1966 Laroche 2010 Viña Punto Alto Pinot Noir (Casablanca Valley)
## 1967 Youngberg Hill Vineyards 2009 Natasha Pinot Noir (Willamette Valley)
## 1968 Torre Quarto 2007 Regale (Primitivo di Manduria)
## 1969 Château de Bordes-Quancard 2010 Bordeaux
## 1970 Château de Panigon 2010 Médoc
## 1971 Château de Raousset 2011 Chiroubles
## 1972 Château Tour des Gendres 2011 Cuvée des Contis White (Bergerac Sec)
## 1973 Cottanera 2011 Barbazzale (Etna)
## 1974 Cowhorn 2011 Marsanne-Roussanne (Applegate Valley)
## 1975 Erath 2010 Prince Hill Pommard Pinot Noir (Dundee Hills)
## 1976 Feudi di San Marzano 2010 Sud (Primitivo di Manduria)
## 1977 Georges Vigouroux 2010 Château de Mercuès Le Vassal de Mercuès Malbec (Cahors)
## 1978 Leone de Castris 2010 Elo Veni Negroamaro (Salento)
## 1979 Mastroberardino 2011 Greco di Tufo
## 1980 Pessagno 2010 Intrinity Chardonnay (Santa Lucia Highlands)
## 1981 Pessagno 2010 Pinot Noir (Santa Lucia Highlands)
## 1982 Planeta 2010 Plumbago Nero d'Avola (Sicilia)
## 1983 Potomac Point 2010 Richland Reserve Chardonnay (Virginia)
## 1984 Principi di Spadafora 2007 Schietto Syrah (Sicilia)
## 1985 Renteria 2009 Knittel Vineyard Pinot Noir (Carneros)
## 1986 Robert Hall 2011 Rhône de Robles Red (Paso Robles)
## 1987 Signé Vigneron 2011 Domaine de l'Oseraie (Morgon)
## 1988 Felix Solis 2013 Flirty Bird Syrah (Vino de la Tierra de Castilla)
## 1989 Marionette 2012 Monastrell-Syrah (Jumilla)
## 1990 Wildewood 2013 Chardonnay (Willamette Valley)
## 1991 Wunsch & Mann 2012 Roi Clovis Riesling (Alsace)
## 1992 Ricominciare 2010 Malbec-Tannat (Uco Valley)
## 1993 Ricominciare 2011 Malbec-Cabernet Franc (Uco Valley)
## 1994 Rutini 2012 Trumpeter Cabernet Sauvignon (Mendoza)
## 1995 Chatham 2012 Church Creek Oak Chardonnay (Virginia's Eastern Shore)
## 1996 McIlroy 2013 Chardonnay (Russian River Valley)
## 1997 Wildewood 2013 Guadalupe Vineyard Pinot Noir (Willamette Valley)
## 1998 Vino dei Fratelli 2013 Nero d'Avola (Terre Siciliane)
## 1999 Cave de Beblenheim 2013 Réserve Particulière Pinot Gris (Alsace)
## 2000 Cave de Kientzheim-Kaysersberg 2013 Anne de K Gewurztraminer (Alsace)
## 2001 Feudi del Pisciotto 2013 Baglio del Sole Inzolia (Sicilia)
## 2002 Mureda 2012 Oak Aged Syrah (Vino de la Tierra de Castilla)
## 2003 San Felipe 2012 Oak Cask Estate Bottled Cabernet Sauvignon (Mendoza)
## 2004 Vieil Armand 2013 Tradition Pinot Blanc (Alsace)
## 2005 Wine by Joe 2013 Pinot Noir (Oregon)
## 2006 Wine with Spirit NV Basta Brut Rosé Sparkling (Vinho Espumante)
## 2007 Wines & Winemakers 2014 Azul Portugal Rosé (Península de Setúbal)
## 2008 Wunsch & Mann 2013 Gewurztraminer (Alsace)
## 2009 Murphy-Goode 2012 HomeFront Red (California)
## 2010 Pierre Sparr 2013 Gewurztraminer (Alsace)
## 2011 Rieflé 2013 Bonheur Convivial Gewurztraminer (Alsace)
## 2012 Sands Point 2012 Pinot Noir (Central Coast)
## 2013 Árido 2013 Sustainably Farmed Moscato (Mendoza)
## 2014 Arthur Metz 2013 Gewurztraminer (Alsace)
## 2015 Casa Rojo 2013 El Gordo del Circo Verdejo (Rueda)
## 2016 Cave de Cleebourg 2013 Prestige Pinot Gris (Alsace)
## 2017 Jean-Marc Bernhard 2013 Cuvée Particulière Pinot Gris (Alsace)
## 2018 Fiuza 2013 3 Castas White (Tejo)
## 2019 Rock Wall 2012 Super Alamedan Red (California)
## 2020 Sanglier Cellars 2011 Pinot Noir (Russian River Valley)
## 2021 Santa Barbara Winery 2010 Petite Sirah (Santa Barbara County)
## 2022 Schmidt 2010 Cabernet Sauvignon (Applegate Valley)
## 2023 Selva Capuzza 2012 San Vigilio (Lugana)
## 2024 Tenuta Luisa 2011 Refosco (Venezia Giulia)
## 2025 Willamette Valley Vineyards 2011 Elton Chardonnay (Eola-Amity Hills)
## 2026 Santa Alicia 2010 Anke Blend 2 Carménère-Petit Verdot-Shiraz Red (Maipo Valley)
## 2027 Louis Jadot 2012 Mâcon-Villages
## 2028 Mancura 2010 Gran Reserva Petit Verdot-Carmère-Cabernet Sauvignon Red (Maipo Valley)
## 2029 Mezzacorona 2013 Pinot Grigio (Vigneti delle Dolomiti)
## 2030 Montonale 2012 Montunal (Lugana)
## 2031 Olivi 2008 Memento Red (Toscana)
## 2032 Publix 2012 Premium Limited Edition Pinot Noir (Russian River Valley)
## 2033 Quinta de Porrais 2010 Porrais Red (Douro)
## 2034 Quinta do Casal Branco 2012 Red (Tejo)
## 2035 Rodney Strong 2010 Reserve Cabernet Sauvignon (Alexander Valley)
## 2036 Star Angel by Montes 2009 Aurelio's Selection Red (Paso Robles)
## 2037 Cantina del Castello 2013 Castello (Soave Classico)
## 2038 Castelfeder 2012 Vom Stein Pinot Bianco (Alto Adige)
## 2039 Château Magondeau 2010 Fronsac
## 2040 Deltetto 2006 Sistaglia (Barolo)
## 2041 Drappier 1995 Carte d'Or Brut 1.5 liters (Champagne)
## 2042 Drappier 2002 Millésime Exception Brut (Champagne)
## 2043 Falcone 2008 Syrah (Paso Robles)
## 2044 Fratelli Alessandria 2006 Gramolere (Barolo)
## 2045 G D Vajra 2006 Bricco delle Viole (Barolo)
## 2046 G D Vajra 2006 Luigi Baudana Cerretta (Barolo)
## 2047 Gian Piero Marrone 2006 Pichemej (Barolo)
## 2048 Grimaldi Bruna 2006 Camilla (Barolo)
## 2049 Kollwentz 2008 Tatschler Chardonnay (Burgenland)
## 2050 Zull 2006 Beerenauslese 375ml Riesling (Niederösterreich)
## 2051 Zull 2008 Eiswein 375ml Riesling (Niederösterreich)
## 2052 Norbert Bauer 2008 Eiswein 375ml Grüner Veltliner (Niederösterreich)
## 2053 Sawyer 2007 Cabernet Sauvignon (Rutherford)
## 2054 Sullivan 2007 Estate Cabernet Sauvignon (Rutherford)
## 2055 Tenuta Arnulfo 2006 Costa di Bussia (Barolo)
## 2056 Tenuta Rocca 2006 Barolo
## 2057 Battaglio 2007 Barbaresco
## 2058 Cascina Ballarin 2006 Bricco Rocca (Barolo)
## 2059 Cavalier Bartolomeo 2006 Cannubi San Lorenzo (Barolo)
## 2060 Cavallotto 2004 Bricco Boschis Riserva Vigna San Giuseppe (Barolo)
## 2061 Damilano 2006 Cannubi (Barolo)
## 2062 Giacomo Grimaldi 2006 Le Coste (Barolo)
## 2063 Broman 2008 Sauvignon Blanc (Napa Valley)
## 2064 De Sousa & Fils NV Réserve Blanc de Blancs Brut Chardonnay (Champagne)
## 2065 Dutton-Goldfield 2007 Dutton Ranch-Freestone Hill Vineyard Pinot Noir (Russian River Valley)
## 2066 Dutton-Goldfield 2008 Dutton Ranch-Green Valley Vineyard Gewürztraminer (Green Valley)
## 2067 Twisted Oak 2007 River of Skulls Dalton Vineyard Red (Calaveras County)
## 2068 Waypoint 2006 Beckstoffer Missouri Hopper Vineyard Cabernet Sauvignon (Napa Valley)
## 2069 Whitman Cellars 2005 Cabernet Sauvignon (Walla Walla Valley (WA))
## 2070 Wild Oak by St. Francis 2005 Cabernet Sauvignon (Sonoma County)
## 2071 Alma Rosa 2007 La Encantada Vineyard Pinot Noir (Sta. Rita Hills)
## 2072 Vieux Château Gaubert 2005 Graves
## 2073 Allegrini 2004 Amarone della Valpolicella Classico
## 2074 Balboa 2007 Reserve Red (Columbia Valley (WA))
## 2075 Benanti 2005 Lamorèmio Red (Sicilia)
## 2076 Benanti 2006 Il Monovitigno Nerello Mascalese (Sicilia)
## 2077 Château Pavillon Bel-Air 2006 Lalande de Pomerol
## 2078 Coeur d'Alene 2006 Opulence Syrah (Washington)
## 2079 Concha y Toro 2008 Terrunyo El Triángulo Vineyard Block: 28 Sauvignon Blanc (Casablanca Valley)
## 2080 Deutz 2005 Rosé Brut (Champagne)
## 2081 J Vineyards & Winery 2007 Chardonnay (Russian River Valley)
## 2082 James Family Cellars 2007 Stony Point Vineyards Pinot Noir (Sonoma Coast)
## 2083 Long Meadow Ranch 2005 Cabernet Sauvignon (Napa Valley)
## 2084 Marchiori & Barraud 2007 Cuartel 2 Marchiori Vineyard Malbec (Perdriel)
## 2085 Morandé 2007 Edición Limitada Carmenère (Maipo Valley)
## 2086 Newsome-Harlow 2007 El Portal Petite Sirah (Calaveras County)
## 2087 Pali 2007 Turner Vineyard Pinot Noir (Sta. Rita Hills)
## 2088 Peju 2008 Sauvignon Blanc (Napa Valley)
## 2089 Quivira 2007 Wine Creek Ranch Grenache (Dry Creek Valley)
## 2090 Soutiran NV Brut Grand Cru (Champagne)
## 2091 SuLei 2007 Beet Red Red (Walla Walla Valley (WA))
## 2092 J. Portugal Ramos 2006 Marquês de Borba White (Alentejo)
## 2093 Tolloy 2007 Pinot Grigio (Alto Adige)
## 2094 Pighin 2006 Pinot Grigio (Collio)
## 2095 Quinta de Serrade 2006 Solar de Serrade Alvarinho (Vinho Verde)
## 2096 Racchus 2005 Chardonnay (Central Coast)
## 2097 Ronco del Gelso 2006 Sot Lis Rivis Pinot Grigio (Isonzo del Friuli)
## 2098 Sobon Estate 2006 Cougar Hill Zinfandel (Amador County)
## 2099 Rocca Bernarda 2006 Vineis White (Colli Orientali del Friuli)
## 2100 Stephen's 2005 Encell Vineyard Pinot Noir (San Luis Obispo County)
## 2101 Kenneth Volk 2005 Sierra Madre Vineyard Chardonnay (Santa Maria Valley)
## 2102 Lava Cap 2004 Reserve Cabernet Franc (El Dorado)
## 2103 Masottina 2006 Incrocio Manzoni 6.0.13 Manzoni (Colli Trevigiani)
## 2104 Comelli 2006 Amplius Pinot Grigio (Colli Orientali del Friuli)
## 2105 Cortes de Cima 2005 Aragonez Aragonês (Alentejano)
## 2106 De Martino 2006 Legado Reserva Carmenère (Maipo Valley)
## 2107 Eugenio Collavini 2007 Villa Canlungo Pinot Grigio (Collio)
## 2108 Fenestra 2005 Pinot Noir (Livermore Valley)
## 2109 Folonari 2007 Chardonnay Chardonnay (Delle Venezie)
## 2110 Brimstone 2006 Red Wine Red (Columbia Valley (OR))
## 2111 Castello di Porcìa 2006 Pinot Bianco Pinot Bianco (Friuli Grave)
## 2112 Château Calissanne 2006 Clos Victoire White (Coteaux d'Aix-en-Provence)
## 2113 Château du Galoupet 2005 Tibur Rosé (Côtes de Provence)
## 2114 Château Beauvillage 2009 Médoc
## 2115 Château Cap Léon Veyrin 2009 Listrac-Médoc
## 2116 Gerovassiliou 2007 Evangelo Red (Epanomi)
## 2117 Firestone 2008 Merlot (Santa Ynez Valley)
## 2118 Gård 2010 Lawrence Vineyards Dry Riesling (Columbia Valley (WA))
## 2119 Alexandria Nicole 2009 Quarry Butte Destiny Ridge Vineyards Estate Grown Red (Horse Heaven Hills)
## 2120 Andis 2010 Barbera (Amador County)
## 2121 Anthony Nappa 2010 Bordo Cabernet Franc (North Fork of Long Island)
## 2122 Château au Pont de Guitres 2009 Lalande de Pomerol
## 2123 Château Bellegrave du Poujeau 2006 Haut-Médoc
## 2124 Château Haut-Goujon 2008 La Rose Saint-Vincent (Lalande de Pomerol)
## 2125 Château La Fleur Plaisance 2009 Montagne-Saint-Émilion
## 2126 Justin 2008 Isoceles Reserve Red (Paso Robles)
## 2127 Leese-Fitch 2010 Chardonnay (California)
## 2128 Martin Ray 2010 Reserve Merlot (Oak Knoll District)
## 2129 Obelisco Estate 2009 Reserve Merlot (Red Mountain)
## 2130 Ponchione Maurizio 2009 Monfrini (Roero)
## 2131 Fournier Père et Fils 2010 Côtes de Morogues (Menetou-Salon)
## 2132 Freeman 2010 Ryo-Fu Chardonnay (Russian River Valley)
## 2133 Horeau-Beylot 2010 Château la Fleur Poitou (Lussac Saint-Émilion)
## 2134 Bersano 2009 Costalunga (Barbera d'Asti)
## 2135 Carletto 2015 Montepulciano d'Abruzzo
## 2136 Codorníu NV Reserva Cuvée Barcelona 1872 Sparkling (Cava)
## 2137 2Plank 2014 Zinfandel (Amador County)
## 2138 Angove 2014 Family Crest Chardonnay (McLaren Vale)
## 2139 Bodegas Riojanas 2015 Canchales Vino Joven (Rioja)
## 2140 La Fiera 2015 Montepulciano d'Abruzzo
## 2141 Gorrebusto 2015 Rioja
## 2142 Trapiche 2014 Oak Cask Cabernet Sauvignon (Mendoza)
## 2143 Château Kalon Nodoz 2012 Carpe Diem (Côtes de Bourg)
## 2144 L. Tramier & Fils 2015 Collection (Moulin-à-Vent)
## 2145 Oak Knoll 2011 Goose Ridge Vineyard Barbera (Columbia Valley (WA))
## 2146 Sonsierra 2015 Selección Tempranillo Rosé (Rioja)
## 2147 South Stage 2012 Carmenère (Rogue Valley)
## 2148 Umani Ronchi 2015 Podere (Montepulciano d'Abruzzo)
## 2149 Barba 2015 Vasari (Montepulciano d'Abruzzo)
## 2150 Quinta da Padrela 2013 Premium Red (Douro)
## 2151 La Catrina NV Pinot Grigio (California)
## 2152 Venta Morales 2015 Made With Organic Grapes Tempranillo (Vino de la Tierra de Castilla)
## 2153 Grayson 2015 Lot 6 Merlot (California)
## 2154 Bodegas Isidro Milagro 2015 SPÑ Red (Vino de la Tierra de Castilla)
## 2155 Campos de Risca 2013 Estate Wine Organic Monastrell-Syrah (Jumilla)
## 2156 Casa Montes 2015 Ampakama Viognier (San Juan)
## 2157 Kestrel 2015 Falcon Series Estate Viognier (Yakima Valley)
## 2158 L. Tramier & Fils 2014 Collection (Beaujolais-Villages)
## 2159 Adega Mãe 2015 Pinta Negra Tinto Red (Lisboa)
## 2160 Valori 2014 Montepulciano d'Abruzzo
## 2161 Castorani 2014 Le Paranze (Montepulciano d'Abruzzo)
## 2162 Bota Box 2015 Riesling (California)
## 2163 Lo Nuevo 2015 Covello Albariño (Rías Baixas)
## 2164 Wetzel Estate 2012 Premier Cuvée Pinot Noir (Willamette Valley)
## 2165 Keuka Spring 2016 Humphrey's Vineyard Riesling (Finger Lakes)
## 2166 Keuka Spring 2016 Semi Dry Riesling (Finger Lakes)
## 2167 Kintonis 2012 Agiorgitiko (Nemea)
## 2168 Kokomo 2016 Pauline's Vineyard Grenache Rosé (Dry Creek Valley)
## 2169 La Crema 2015 Chardonnay (Russian River Valley)
## 2170 La Folia Winery 2015 Vermentino (Sierra Foothills)
## 2171 Malat 2016 Ried am Zaum Hefeabzug Pinot Blanc (Wachau)
## 2172 Marchesi di Barolo 2013 Cannubi (Barolo)
## 2173 Matthews 2016 Reserve Sauvignon Blanc (Columbia Valley (WA))
## 2174 Monchiero 2013 Rocche di Castiglione (Barolo)
## 2175 Mt. Konocti Winery 2015 Vin de Glace Muscat (Lake County)
## 2176 Muga 2016 Flor de Muga Rosé (Rioja)
## 2177 Paraduxx 2016 Rosé (Napa Valley)
## 2178 Peter Paul Wines 2014 Frere Vineyard Pinot Noir (Russian River Valley)
## 2179 Pratsch 2016 Ried Kittel Sauvignon Blanc (Niederösterreich)
## 2180 Maria Casanovas NV Glaç Brut Nature Sparkling (Cava)
## 2181 E. Guigal 2015 Tavel
## 2182 Eduardo Garrido García 2011 Reserva (Rioja)
## 2183 Hart 2 Hart 2014 Ryker Red; Pilot Ridge Vineyard; Estate Grown Red (El Dorado)
## 2184 Kintonis 2015 M Malagousia (Peloponnese)
## 2185 Leonetti Cellar 2014 Sangiovese (Walla Walla Valley (WA))
## 2186 Lyrarakis 2015 Vóila Vineyard Assyrtiko (Crete)
## 2187 Mirafiore 2015 Barbera d'Alba Superiore
## 2188 Muddy Boot 2015 Chenin Blanc (Clarksburg)
## 2189 Osprey's Dominion 2016 Dry Rosé (North Fork of Long Island)
## 2190 Parducci 2015 True Grit Reserve Cabernet Sauvignon (Mendocino)
## 2191 Qupé 2015 Y Block Chardonnay (Santa Barbara County)
## 2192 Record Family Wines 2014 Reserve Syrah (Paso Robles)
## 2193 Sculpterra 2014 Estate Cabernet Sauvignon (Paso Robles)
## 2194 Syncline 2016 McKinley Springs Vineyard Rosé (Horse Heaven Hills)
## 2195 Casa Silva 2013 Los Lingues Vineyard Carmenère (Colchagua Valley)
## 2196 Red C 2014 Allan Nelson Vineyard Sauvignon Blanc (Dry Creek Valley)
## 2197 Rock Wall 2012 Heringer Vineyard Teroldego (Yolo County)
## 2198 Santa Barbara Winery 2012 Curtis Vineyard Petit Verdot (Santa Ynez Valley)
## 2199 Santi 2010 Amarone della Valpolicella Classico
## 2200 Sipp Mack 2014 Tradition Riesling (Alsace)
## 2201 Terlato 2012 Cabernet Sauvignon (Rutherford)
## 2202 Thomas Fogarty 2012 Henry Ayrton's Block Rapley Trail Vineyard Pinot Noir (Santa Cruz Mountains)
## 2203 Tines 2013 Petite Sirah (Paso Robles)
## 2204 14 Hands 2013 Hot to Trot Red (Columbia Valley (WA))
## 2205 14 Hands 2014 Moscato (Columbia Valley (WA))
## 2206 Arboleda 2014 Chardonnay (Aconcagua Costa)
## 2207 Lone Madrone 2013 Oveja Negra Red (Paso Robles Willow Creek District)
## 2208 Lucien Albrecht 2014 Cuvée Romanus Pinot Gris (Alsace)
## 2209 Merryvale 2012 Malbec (Napa Valley)
## 2210 Mesa Del Sol 2011 Sangiovese (Arroyo Seco)
## 2211 Murphy-Goode 2012 Reserve Zinfandel (Alexander Valley)
## 2212 Myka 2014 Mitzi Chardonnay (Monterey County)
## 2213 Paul Blanck 2014 Gewurztraminer (Alsace)
## 2214 Pieropan 2011 Le Colombare (Recioto di Soave)
## 2215 Henri de Villamont 2012 Les Champs Claude (Santenay)
## 2216 Jason-Stephens 2012 Estate Reserve Chardonnay (Santa Clara Valley)
## 2217 Kim Crawford 2014 Pinot Gris (Marlborough)
## 2218 Kuentz-Bas 2014 Collection Riesling (Alsace)
## 2219 Las Casas de Vacquería 2012 Sucesor Red (Maule Valley)
## 2220 William Fèvre 2013 Espino Pinot Noir (Maipo Valley)
## 2221 Zinke 2013 Viognier (Santa Barbara County)
## 2222 Hahn 2014 Pinot Noir (Monterey County)
## 2223 Columbia Crest 2013 Grand Estates Merlot (Columbia Valley (WA))
## 2224 Fulkerson 2012 Cabernet Sauvignon (Finger Lakes)
## 2225 Fornacina 2006 Riserva (Brunello di Montalcino)
## 2226 San Polino 2006 Riserva (Brunello di Montalcino)
## 2227 Tenuta di Sesta 2007 Brunello di Montalcino
## 2228 Louis Jadot 2009 Petite Chapelle Premier Cru (Gevrey-Chambertin)
## 2229 Máté 2007 Brunello di Montalcino
## 2230 Merry Edwards 2009 Pinot Noir (Sonoma Coast)
## 2231 Molino di Sant'Antimo 2007 Brunello di Montalcino
## 2232 Native 9 2009 Rancho Ontiveros Vineyards Pinot Noir (Santa Maria Valley)
## 2233 Podere Brizio 2006 Riserva (Brunello di Montalcino)
## 2234 Poggio Antico 2009 Madre Red (Toscana)
## 2235 Mocali 2006 Riserva (Brunello di Montalcino)
## 2236 Pessagno 2009 Four Boys Vineyard Pinot Noir (Santa Lucia Highlands)
## 2237 Pietranera 2007 Brunello di Montalcino
## 2238 Quattroventi 2006 Riserva (Brunello di Montalcino)
## 2239 Samsara 2009 Kessler-Haak Vineyard Pinot Noir (Sta. Rita Hills)
## 2240 Tenimenti Angelini 2006 Vigna Spuntali Val di Suga (Brunello di Montalcino)
## 2241 Uccelliera 2007 Brunello di Montalcino
## 2242 Chronicle 2009 Cerise Vineyard Pinot Noir (Anderson Valley)
## 2243 Coghlan 2009 Diopside Pinot Noir (Sta. Rita Hills)
## 2244 Collosorbo 2006 Riserva (Brunello di Montalcino)
## 2245 Domaine Leflaive 2009 Les Combettes Premier Cru (Puligny-Montrachet)
## 2246 Domaine Leflaive 2009 Les Pucelles Premier Cru (Puligny-Montrachet)
## 2247 Dutton Estate 2010 Dutton Palms Vineyard Dutton Ranch Chardonnay (Russian River Valley)
## 2248 Verbena 2007 Brunello di Montalcino
## 2249 Castello Romitorio 2007 Brunello di Montalcino
## 2250 Il Poggiolo E. Cosimi 2006 Il Mio Brunello Riserva (Brunello di Montalcino)
## 2251 Kazmer & Blaise 2009 Primo's Hill Pinot Noir (Carneros)
## 2252 Kirkland Signature 2007 Series Cabernet Sauvignon (Napa Valley)
## 2253 Mantra 2006 Reserve Cabernet Sauvignon (Alexander Valley)
## 2254 Turn Four 2007 Cabernet Sauvignon (Napa Valley)
## 2255 Viña Cobos 2007 Felino Cabernet Sauvignon (Mendoza)
## 2256 X 2007 Cabernet Sauvignon (Napa Valley)
## 2257 Ballast Stone Estate Wines 2006 Shiraz (McLaren Vale)
## 2258 Cantine Sant'Agata 2007 Pro Nobis (Ruché di Castagnole Monferrato)
## 2259 Château la Tour de By 2008 Barrel sample (Médoc)
## 2260 Château Larrivet Haut-Brion 2008 Barrel sample (Pessac-Léognan)
## 2261 Colle dei Venti 2006 Barbera d'Asti
## 2262 La Chapelle de Potensac 2008 Barrel sample (Médoc)
## 2263 Salis 1637 2002 Canua (Valtellina Superiore)
## 2264 La Scolca 2004 Pinot Nero (Oltrepò Pavese)
## 2265 Château Malescasse 2008 Barrel sample (Haut-Médoc)
## 2266 Proidl 2008 Senftenberger Freiheit Grüner Veltliner (Niederösterreich)
## 2267 Seventy Five Wine Co. 2006 Amber Knolls Vineyard Cabernet Sauvignon (Red Hills Lake County)
## 2268 St. Francis 2007 Rowe Vineyard Old Vines Zinfandel (Sonoma Valley)
## 2269 Stephen's 2006 Stromsoe Vineyard Pinot Noir (San Luis Obispo County)
## 2270 Adobe Road 2006 Zinfandel (Dry Creek Valley)
## 2271 Arrowood 2007 Chardonnay (Sonoma County)
## 2272 Cameron Hughes 2005 Lot 119 Meritage (Alexander Valley)
## 2273 Vino z Czech 2011 Welschriesling (Moravia)
## 2274 Wines & Winemakers 2012 Azul Portugal Escolha White (Vinho Verde)
## 2275 Banshee Wines 2012 Sauvignon Blanc (Sonoma County)
## 2276 Bindi Sergardi 2010 Chianti Classico
## 2277 Corte alla Flora 2011 Rosso di Montepulciano
## 2278 Alpamanta 2009 Estate Malbec (Mendoza)
## 2279 Buena Vista 2011 The Count Founder's Red (Sonoma County)
## 2280 Domaine Robert Klingenfus 2010 Signature Pinot Noir (Alsace)
## 2281 Dominican Oaks 2010 Zinfandel (Napa Valley)
## 2282 Emerson 2012 Viognier (Willamette Valley)
## 2283 Fattoria di Montecchio 2010 Chianti Classico
## 2284 Girardet 2011 Chardonnay (Umpqua Valley)
## 2285 Lusco 2011 Albariño (Rías Baixas)
## 2286 Damalisco 2008 Crianza (Toro)
## 2287 Hill Wine Company 2010 Black Dog Series Cabernet Sauvignon (Napa Valley)
## 2288 Vignavecchia 2011 Chianti Classico
## 2289 Vino z Czech NV Cabernet Moravia (Moravia)
## 2290 Martin Ranch 2011 J.D. Hurley Sauvignon Blanc (Santa Clara Valley)
## 2291 Cameron Hughes 2010 Lot 362 Red (California)
## 2292 Casarena 2011 Estate Bottled Malbec (Mendoza)
## 2293 Ciringa 2011 Fosilni Breg Sauvignon Blanc (Slovenia)
## 2294 La Calonica 2006 Vino Nobile di Montepulciano
## 2295 Lingenfelder 2007 Freinsheimer Musikantenbuckel Kabinett Riesling (Pfalz)
## 2296 Marchesi Antinori 2004 Pian delle Vigne (Brunello di Montalcino)
## 2297 Mazzei 2007 Fonterutoli (Chianti Classico)
## 2298 Novy 2006 Parsons' Vineyard Syrah (Russian River Valley)
## 2299 Edmonds Winery 2007 Solstice Red (Horse Heaven Hills)
## 2300 Fitz-Ritter 2006 Beerenauslese Rieslaner (Pfalz)
## 2301 Georg Mosbacher 2007 Forster Musenhang Spätlese Trocken Riesling (Pfalz)
## 2302 Highlands 2006 Reserve Cabernet Sauvignon (Howell Mountain)
## 2303 Vergelegen 2005 Mill Race Cabernet Sauvignon-Merlot (Stellenbosch)
## 2304 Arbor Crest 2006 Conner Lee Vineyard Chardonnay (Columbia Valley (WA))
## 2305 Cameron Hughes 2006 Lot 113 Syrah (Mount Veeder)
## 2306 Camigliano 2004 Brunello di Montalcino
## 2307 Château Dutruch Grand Poujeaux 2005 Moulis-en-Médoc
## 2308 Ciacci Piccolomini d'Aragona 2004 Brunello di Montalcino
## 2309 Crane Brothers 2005 Crane Ranch Vineyard Merlot (Napa Valley)
## 2310 García Figuero 2004 Tinto Figuero 15 Reserva (Ribera del Duero)
## 2311 Geh. Rat Dr. von Bassermann-Jordan 2007 Forster Jesuitengarten Grosses Gewachs Trocken Riesling (Pfalz)
## 2312 Georg Mosbacher 2007 Forster Elster Kabinett Trocken Riesling (Pfalz)
## 2313 Picardy 2006 Chardonnay (Pemberton)
## 2314 Tenimenti Angelini 2005 San Leonino Riserva (Chianti Classico)
## 2315 Tenuta La Fuga 2004 Brunello di Montalcino
## 2316 Tiezzi 2004 Brunello di Montalcino
## 2317 Trinchero 2005 Chicken Ranch Vineyard Cabernet Sauvignon (Rutherford)
## 2318 Borgo Scopeto 2005 Vigna Misciano Riserva (Chianti Classico)
## 2319 Canalicchio Franco Pacenti 2004 Brunello di Montalcino
## 2320 Château de la Roulerie 2014 La Camélias (Rosé de Loire)
## 2321 Château la Croix de Roche 2013 Bordeaux Supérieur
## 2322 Château Les Hauts de Palette 2012 Côtes de Bordeaux
## 2323 Château Montlanderie 2013 Castillon Côtes de Bordeaux
## 2324 Château Roc Montalon 2013 Bordeaux Supérieur
## 2325 Château Saint-Pierre NV Saint-Pierre Rosé Brut Sparkling (Vin Mousseux)
## 2326 Gnarly Head 2013 Authentic White (California)
## 2327 14 Hands 2014 Sauvignon Blanc (Washington)
## 2328 Alias 2013 Cabernet Sauvignon (California)
## 2329 Angel's Cup 2013 Vineyard Selection Chardonnay (California)
## 2330 Arbéta 2013 Barbera d'Alba Superiore
## 2331 Atwater 2013 Dry Riesling (Seneca Lake)
## 2332 Balduzzi 2012 Grand Reserve Red (Maule Valley)
## 2333 Cave de Saumur 2014 Les Pouches (Saumur)
## 2334 Hawk Watch Winery 2012 Syrah (South Coast)
## 2335 La Purísima 2013 Alphabet Wines Monastrell (Yecla)
## 2336 Two Vines 2014 Gewürztraminer (Washington)
## 2337 Viña Casas Patronales 2012 Reserva Privada Cabernet Sauvignon (Maule Valley)
## 2338 Ministry of the Vinterior 2013 Chardonnay (Russian River Valley)
## 2339 Montes 2012 La Finca Clos D'Angel Malbec (Colchagua Valley)
## 2340 One Leaf 2012 Chardonnay (California)
## 2341 Sagelands 2013 Merlot (Columbia Valley (WA))
## 2342 Santa Luz 2014 Reserva Encinos Malbec (Colchagua Valley)
## 2343 Johnson Estate 2013 Freelings Creek Reserve Sparkling Traminette (Lake Erie)
## 2344 Koz 2012 Chardonnay (California)
## 2345 Le Roi des Pierres 2014 Rosé (Sancerre)
## 2346 McFadden 2014 Blue Quail Pinot Gris (Potter Valley)
## 2347 McFadden 2014 Chardonnay (Potter Valley)
## 2348 Ardiri Winery and Vineyards 2012 Pinot Noir (California)
## 2349 Canoe Ridge 2013 The Expedition Merlot (Horse Heaven Hills)
## 2350 Kendall-Jackson 2011 Vintner's Reserve Zinfandel (Mendocino County)
## 2351 Villa Rinaldi 2000 Corpus (Amarone della Valpolicella)
## 2352 Valentin Bianchi 2010 Famiglia Bianchi Malbec (Mendoza)
## 2353 Jefferson Vineyards 2008 Reserve Merlot (Monticello)
## 2354 Michael Pozzan 2011 Annabella Special Selection Chardonnay (Sonoma County-Napa County)
## 2355 Ancient Oak Cellars 2010 Forty-Seven Friends Pinot Noir (Sonoma County)
## 2356 Canihan 2009 Exuberance Syrah (Sonoma Valley)
## 2357 Finca Albret 2009 Crianza Red (Navarra)
## 2358 Cline 2012 Ancient Vine Zinfandel (Contra Costa County)
## 2359 Collection 35 2012 Rancho Arroyo Perdido Grüner Veltliner (Santa Barbara County)
## 2360 Domaines Devillard 2011 Château de Chamirey (Mercurey)
## 2361 Domaines Devillard 2011 Château de Chamirey (Mercurey)
## 2362 Domaines Devillard 2011 Domaine de la Ferté Premier Cru Servoisine (Givry)
## 2363 Domenico Fraccaroli 2008 Grotta del Ninfeo (Amarone della Valpolicella)
## 2364 Foyt Family 2009 No. 77 Cabernet Sauvignon (Mount Veeder)
## 2365 Georges Vigouroux 2010 Château Tournelles Red (Buzet)
## 2366 Giefing 2011 Traminer (Burgenland)
## 2367 Novelty Hill 2010 Stillwater Creek Vineyard Malbec (Columbia Valley (WA))
## 2368 Scarborough 2010 The Main Event Cabernet Sauvignon (Columbia Valley (WA))
## 2369 Signé Vigneron 2012 Domaine de la Croix Rouge (Juliénas)
## 2370 Trabucchi d'Illasi 2007 Amarone della Valpolicella
## 2371 Hogue 2012 Late Harvest Riesling (Columbia Valley (WA))
## 2372 Kuentz-Bas 2011 Tradition Riesling (Alsace)
## 2373 Lionel Osmin & Cie 2012 Red (Gaillac)
## 2374 Manara 2010 Le Morete (Valpolicella Classico Superiore Ripasso)
## 2375 Mario Schiopetto 2011 Blanc des Rosis White (Collio)
## 2376 Mercer 2010 Cavalie Reserve Red (Columbia Valley (WA))
## 2377 Montecariano 2009 Valpolicella Classico Superiore Ripasso
## 2378 Airfield Estates 2012 Unoaked Chardonnay (Yakima Valley)
## 2379 Antica Corte 2010 Amarone della Valpolicella
## 2380 Fabbioli Cellars 2013 Chambourcin (Virginia)
## 2381 Biltmore Estate NV Blanc de Noir Brut Sparkling (America)
## 2382 Casa de Vilacetinho 2016 Avesso & Azal White (Vinho Verde)
## 2383 Casa Santos Lima 2015 Fortissimo Red (Alentejano)
## 2384 Caves Transmontanas 2013 Vertice Grande Reserva Red (Douro)
## 2385 Caves Velhas 2014 D. Fuas Reserva Red (Terras do Dão)
## 2386 Deaver 2013 Ten Zin Zinfandel (Amador County)
## 2387 Dion 2015 Pinot Noir (Chehalem Mountains)
## 2388 Domaine Bousquet 2016 Finca Lalande Malbec (Mendoza)
## 2389 Domaine Campu Vecchiu 2016 Rosé (Corse)
## 2390 Domaine Girard 2016 Benoît Girard (Sancerre)
## 2391 Domaine les Hautes Noëlles 2016 Les Parcelles Sur Lie (Muscadet Côtes de Grandlieu)
## 2392 Quinta da Ribeirinha 2015 Ardósia Tinto Red (Tejo)
## 2393 Quinta de Porrais 2015 Porrais Red (Douro)
## 2394 Quinta do Vale Meão 2015 Vintage (Port)
## 2395 Quinta Nova de Nossa Senhora do Carmo 2016 Rosé (Douro)
## 2396 Ransom 2013 Selection Pinot Noir (Eola-Amity Hills)
## 2397 Rui Roboredo Madeira 2015 Beyra Colheita Red (Beira Interior)
## 2398 Rui Roboredo Madeira 2016 Castello d'Alba Branco White (Douro)
## 2399 Secret Spot Wines 2016 Vale da Poupa Rosé (Douro)
## 2400 Simple Machine 2013 Leverage White (Rogue Valley)
## 2401 Ten Sisters 2015 Pinot Noir (Marlborough)
## 2402 Tenuta Rapitalà 2016 Campo Reale Nero d'Avola (Sicilia)
## 2403 Uptick Vineyards 2014 Estate Chardonnay (Russian River Valley)
## 2404 Vinadeis 2016 Le Val Chardonnay (Vin de France)
## 2405 Wild Thing 2015 Chardonnay (Sonoma County)
## 2406 Dashwood 2015 Pinot Noir (Marlborough)
## 2407 Gruet 2011 Sauvage Sparkling (America)
## 2408 L. Tramier & Fils 2016 Tramier Chardonnay (Vin de France)
## 2409 Souverain 2010 Chardonnay (North Coast)
## 2410 Tasca d'Almerita 2011 Sallier de la Tour Grillo (Sicilia)
## 2411 Tres Palacios 2011 Reserve Pinot Noir (Maipo Valley)
## 2412 Torrevento 2009 Torre del Falco Nero di Troia (Murgia)
## 2413 Cantine di Dolianova 2010 Dolia (Monica di Sardegna)
## 2414 Château de Sours 2011 La Fleur d'Amélie (Bordeaux Blanc)
## 2415 Corvo 2010 Rosso Red (Sicilia)
## 2416 Derby 2010 Fifteen 10 White White (Paso Robles)
## 2417 Di Majo Norante 2011 Sangiovese (Terra degli Osci)
## 2418 Envolve 2008 Cabernet Sauvignon (Sonoma Valley)
## 2419 Arboleda 2011 Sauvignon Blanc (Aconcagua Valley)
## 2420 Arrowood 2008 Cabernet Sauvignon (Sonoma County)
## 2421 Bonavita 2009 Faro
## 2422 Château de Pizay 2011 Rosé d'Une Nuit Gamay (Beaujolais Rosé)
## 2423 Château Marac 2010 Bordeaux Supérieur
## 2424 Chehalem 2011 Stoller Vineyards Pinot Blanc (Dundee Hills)
## 2425 Cono Sur 2010 Visión El Recurso Single Vineyard Cabernet Sauvignon (Maipo Valley)
## 2426 Corvo 2011 Bianco White (Sicilia)
## 2427 Corvo 2011 Glicine Red (Sicilia)
## 2428 Domaine du Vissoux 2011 Les Griottes (Beaujolais)
## 2429 Envolve 2011 Rosé (Sonoma Mountain)
## 2430 Erath 2010 Dion Pinot Noir (Chehalem Mountains)
## 2431 Erath 2011 Dion Vineyard Rosé Pinot Gris (Chehalem Mountains)
## 2432 Georges Duboeuf 2012 Nouveau (Beaujolais)
## 2433 Georges Vigouroux 2011 Pigmentum Malbec (Cahors)
## 2434 Lomas del Valle 2011 Coastal Cool Climate Merlot (Casablanca Valley)
## 2435 Miali 2011 Ametys Rosato (Puglia)
## 2436 Newman's Own 2010 Pinot Noir (California)
## 2437 Pearmund 2011 Vinecroft Vineyard Viognier (Virginia)
## 2438 Pratsch 2009 Erdpress Red (Niederösterreich)
## 2439 Di Filippo 2012 Montefalco Rosso
## 2440 Domaine Carneros 2012 Clonal Series Swan Pinot Noir (Carneros)
## 2441 J. Lohr 2013 Flume Crossing Sauvignon Blanc (Arroyo Seco)
## 2442 Jamieson Ranch 2012 Double Lariat Cabernet Sauvignon (Napa Valley)
## 2443 Knudsen 2012 Pinot Noir (Dundee Hills)
## 2444 Buena Vista 2012 Private Reserve Pinot Noir (Sonoma County)
## 2445 Cantina della Volta 2010 Rosé Metodo Classico (Lambrusco di Modena)
## 2446 Cantina Fratelli Pardi 2011 Montefalco Rosso
## 2447 Rancho Zabaco 2012 Sonoma Heritage Vines Zinfandel (Sonoma County)
## 2448 Romanelli 2010 Montefalco Sagrantino
## 2449 Principe Pallavicini 2012 Amarasco Cesanese (Lazio)
## 2450 Red Newt Cellars 2013 Circle Riesling (Finger Lakes)
## 2451 Ruffino 2010 Greppone Mazzi (Brunello di Montalcino)
## 2452 Sanglier Cellars 2012 Left Tusque Cabernet Sauvignon (Alexander Valley)
## 2453 Sextant 2012 Caverio G-S-M (Paso Robles)
## 2454 Thurston Wolfe 2010 The Geologist Red (Columbia Valley (WA))
## 2455 Two Mountain 2012 Copeland Vineyard Syrah (Yakima Valley)
## 2456 14 Hands 2011 The Reserve Merlot (Horse Heaven Hills)
## 2457 Alder Springs 2013 Signature Chardonnay (Mendocino)
## 2458 Andis 2011 Goedeck-Liu Vineyard Meritage (Sierra Foothills)
## 2459 Borra 2012 Markus Nimmo White (California)
## 2460 Capanne Ricci 2010 Brunello di Montalcino
## 2461 Chalk Hill 2011 Botrytised Semillon (Chalk Hill)
## 2462 Château Giscours 2012 Le Haut-Médoc de Giscours (Haut-Médoc)
## 2463 Château Laforge 2012 Saint-Émilion
## 2464 Château Larrivaux 2011 Haut-Médoc
## 2465 Château Picque Caillou 2012 Pessac-Léognan
## 2466 Château Rollan de By 2012 Médoc
## 2467 Château Teyssier 2012 Montagne-Saint-Émilion
## 2468 Château Tour de Pez 2012 Saint-Estèphe
## 2469 Collosorbo 2009 Riserva (Brunello di Montalcino)
## 2470 Delgado Zuleta NV Premium Fino Sherry (Jerez)
## 2471 Eduardo Garrido García 2004 Gran Reserva (Rioja)
## 2472 Hansen Cellars 2012 Viognier (Lodi)
## 2473 Heron Hill 2011 Eclipse Red (New York)
## 2474 Line 39 2013 Pinot Noir (California)
## 2475 Lone Madrone 2011 Bailey Ranch Dry Farmed Zinfandel (Paso Robles)
## 2476 McGrail 2011 Reserve Cabernet Sauvignon (Livermore Valley)
## 2477 Mesa Del Sol 2010 Zinfandel (Arroyo Seco)
## 2478 Clos Pegase 2012 Cabernet Sauvignon (Napa Valley)
## 2479 Comartin 2013 Cuvee Cassidy G-S-M (Santa Ynez Valley)
## 2480 Covenant 2013 Lavan Chardonnay (Sonoma Mountain)
## 2481 Domaine Degher 2010 Mojo Estate Red (Paso Robles)
## 2482 14 Hands 2014 Riesling (Columbia Valley (WA))
## 2483 Airfield Estates 2012 Merlot (Yakima Valley)
## 2484 Airfield Estates 2013 Bombshell Red Vineyard Salute Red (Yakima Valley)
## 2485 Chateau Ste. Michelle 2014 Harvest Select Riesling (Columbia Valley (WA))
## 2486 Columbia Crest 2013 Limited Release Gold Red (Columbia Valley (WA))
## 2487 Davino 2013 Domaine Ceptura White (Dealu Mare)
## 2488 Domaines Barons de Rothschild (Lafite) 2014 Los Vascos Cabernet Sauvignon (Colchagua Valley)
## 2489 Finn Hill 2012 Bon Mot Cabernet Franc (Wahluke Slope)
## 2490 Hidden Jewel 2014 Unoaked Chardonnay (Santa Barbara County)
## 2491 Jean-Baptiste Adam 2013 Réserve Riesling (Alsace)
## 2492 Jean-Marc Bernhard 2014 Vieilles Vignes Gewurztraminer (Alsace)
## 2493 Joseph Drouhin 2012 Chorey-lès-Beaune
## 2494 Koyle 2013 Gran Reserva Cabernet Sauvignon (Colchagua Valley)
## 2495 Koyle 2013 Gran Reserva Carmenère (Colchagua Valley)
## 2496 Kuleto Estate 2012 Frog Prince Red (Napa Valley)
## 2497 La Cappuccina 2013 Monte Stelle (Soave Classico)
## 2498 Lis Neris 2010 Tal Lùc White (Venezia Giulia)
## 2499 Lone Madrone 2012 Barbera (Paso Robles)
## 2500 McGregor 2014 Semi Dry Riesling (Finger Lakes)
## 2501 Domaine Zinck 2013 Terroir Pinot Gris (Alsace)
## 2502 Domeniile Panciu 2012 Feteasca Neagra (Panciu)
## 2503 Waterbrook 2013 Syrah (Columbia Valley (WA))
## 2504 Altvs 2011 Cabernet Sauvignon (Napa Valley)
## 2505 Apaltagua 2013 Envero Gran Reserve Carmenère (Colchagua Valley)
## 2506 Archium 2013 Faction Syrah (Santa Ynez Valley)
## 2507 Asuncion Ridge 2012 Nefarious Red (Paso Robles)
## 2508 Paul Hobbs 2012 Ellen Lane Estate Chardonnay (Russian River Valley)
## 2509 Artadi 2011 Viña El Pison (Rioja)
## 2510 Aurelio Settimo 2010 Rocche dell'Annunziata (Barolo)
## 2511 Giacomo Fenocchio 2010 Villero (Barolo)
## 2512 Giovanni Rosso 2010 Cerretta (Barolo)
## 2513 Rizzi 2009 Boito Riserva (Barbaresco)
## 2514 Trisaetum 2013 Estates Reserve Riesling (Willamette Valley)
## 2515 Le Strette 2010 Bergera Pezzole (Barolo)
## 2516 Marimar Estate 2011 Don Miguel Vineyard Bonita's Hill Unfiltered Chardonnay (Russian River Valley)
## 2517 Roccheviberti 2010 Rocche di Castiglione (Barolo)
## 2518 Torbreck 2010 RunRig Shiraz-Viognier (Barossa Valley)
## 2519 Cascina Ballarin 2010 Tre Ciabot (Barolo)
## 2520 Comm. G. B. Burlotto 2010 Cannubi (Barolo)
## 2521 Cordero di Montezemolo 2010 Bricco Gattera (Barolo)
## 2522 Barale Fratelli 2010 Castellero (Barolo)
## 2523 Brezza 2010 Barolo
## 2524 Paolo Scavino 2010 Carobric (Barolo)
## 2525 Pio Cesare 2010 Barolo
## 2526 Rivetto 2010 del Comune di Serralunga d'Alba (Barolo)
## 2527 Castelfeder 2013 Rieder Lagrein (Alto Adige)
## 2528 Matanzas Creek 2012 Merlot (Sonoma County)
## 2529 Nastl 2015 Klassik Grüner Veltliner (Niederösterreich)
## 2530 Nigl 2015 Gelber Muskateller (Niederösterreich)
## 2531 Patland 2012 Proprietary Red (Napa Valley)
## 2532 Proelio 2012 Crianza (Rioja)
## 2533 Quartz Reef 2013 Bendigo Single Vineyard Pinot Noir (Central Otago)
## 2534 Jekel 2014 Riesling (Monterey)
## 2535 Trus 2012 Crianza (Ribera del Duero)
## 2536 Gunter Triebaumer 2014 Trie Rot Red (Burgenland)
## 2537 Jaffurs 2013 Syrah (Santa Barbara County)
## 2538 Tiefenbrunner 2013 Turmhof Lagrein (Alto Adige)
## 2539 Gérard Bertrand 2014 Kosmos Organic Grapes Red (Vin de France)
## 2540 Gibbs 2012 Crossed Paths Dusty Red (Napa Valley)
## 2541 Le Senate 2012 Cacinello Red (Marche)
## 2542 Michel & Stéphane Ogier 2012 d'Ogier Syrah (Vin de France)
## 2543 Apriori 2014 Chardonnay (Mendocino)
## 2544 Bernard Magrez 2015 Les Muraires Douce Vie Rosé (Côtes de Provence)
## 2545 Betwixt 2014 Chardonnay (Santa Cruz Mountains)
## 2546 Billsboro 2014 Sawmill Creek Vineyards Dry Riesling (Finger Lakes)
## 2547 Brancott 2015 Pinot Grigio (Marlborough)
## 2548 The Dot 2014 Austrian Plum St. Laurent (Niederösterreich)
## 2549 Ramón Bilbao 2015 Albariño (Rías Baixas)
## 2550 Salcis 2010 Crianza (Ribera del Duero)
## 2551 San Simeon 2012 St. Eva Hill Vineyard Petite Sirah (Paso Robles)
## 2552 Terrazas de Los Andes 2013 Reserva Malbec (Mendoza)
## 2553 Avant 2014 Fresh Crisp Clean Chardonnay (California)
## 2554 Barton 2014 The River White (Central Coast)
## 2555 Brick & Mortar 2013 La Perla Vineyard Pinot Noir (Spring Mountain District)
## 2556 One 2011 Cabernet Sauvignon (Yountville)
## 2557 Pace 2013 Sebastiano Vineyard Pinot Noir (Sta. Rita Hills)
## 2558 Jason-Stephens 2010 Estate Merlot (Santa Clara Valley)
## 2559 Las Positas 2014 Estate Rosé (Livermore Valley)
## 2560 In Re 2010 You be the judge! Cabernet Sauvignon (Napa Valley)
## 2561 Waipara Hills 2014 Sauvignon Blanc (Marlborough)
## 2562 Two Moons 2013 Aporia White (Paso Robles)
## 2563 Valle dell'Acate 2012 Cerasuolo di Vittoria Classico
## 2564 Volatus 2008 Reserve Red (Paso Robles)
## 2565 Zocker 2014 Paragon Vineyard Grüner Veltliner (Edna Valley)
## 2566 Hannes Reeh 2014 Rohstoff Chardonnay (Burgenland)
## 2567 Hightower 2012 Reserve Red (Red Mountain)
## 2568 Full Pull & Friends 2009 Cabernet Sauvignon (Columbia Valley (WA))
## 2569 Gamache 2011 Estate Grown Malbec (Columbia Valley (WA))
## 2570 Genoa 2012 Flying Colors Super Tuscan-Style Red (Columbia Valley (WA))
## 2571 Pala 2013 Assoluto White (Isola dei Nuraghi)
## 2572 14 Hands 2013 Reserve M-S-G-V Red (Horse Heaven Hills)
## 2573 Amavi 2014 Semillon (Walla Walla Valley (WA))
## 2574 Basilisco 2011 Teodosio (Aglianico del Vulture)
## 2575 Bontzu 2013 Malbec (Walla Walla Valley (WA))
## 2576 Burrell School Vineyards 2011 Honor Roll Estate Reserve Merlot (Santa Cruz Mountains)
## 2577 Stottle 2012 Big Eddie Red (Columbia Valley (WA))
## 2578 Stottle 2012 Elerding 6 Prong Malbec (Horse Heaven Hills)
## 2579 àMaurice 2013 Fred Estate Syrah (Walla Walla Valley (WA))
## 2580 àMaurice 2014 Boushey Vineyard Syrah (Yakima Valley)
## 2581 àMaurice 2014 Boushey Vineyard Marsanne-Viognier (Yakima Valley)
## 2582 Amavi 2013 Syrah (Walla Walla Valley (WA))
## 2583 Brian Carter Cellars NV One Upland Vineyard Touriga Nacional (Snipes Mountain)
## 2584 Charthia 2013 Pinot Noir (Carneros)
## 2585 Château de Chantegrive 2013 Graves
## 2586 Château Mayne Vieil 2011 Cuvée Aliénor (Fronsac)
## 2587 F X Pichler 2012 Loibner Klostersatz Federspiel Grüner Veltliner (Wachau)
## 2588 Frankland Estate 2012 Poison Hill Vineyard Riesling (Frankland River)
## 2589 Graf Hardegg 2010 Steinbügel Grüner Veltliner (Niederösterreich)
## 2590 A. Christmann 2010 Gimmeldinger Biengarten Trocken Riesling (Pfalz)
## 2591 àMaurice 2010 Gamache Vineyard Malbec (Columbia Valley (WA))
## 2592 Barale Fratelli 2009 Bussia (Barolo)
## 2593 Barale Fratelli 2009 Castellero (Barolo)
## 2594 Gamache 2009 Merlot (Columbia Valley (WA))
## 2595 Hope Estate 2010 The Ripper Shiraz (Geographe)
## 2596 Hirsch 2012 Zöbing Riesling (Kamptal)
## 2597 Pelter 2010 Cabernet Sauvignon-Shiraz (Galilee)
## 2598 Peter Nicolay 2011 Bernkasteler Badstube Spätlese Riesling (Mosel)
## 2599 Plantagenet 2010 Omrah Shiraz (Western Australia)
## 2600 Rheingraf 2011 Trocken Riesling (Rheinhessen)
## 2601 Robert Oatley 2009 Finisterre Cabernet Sauvignon (Margaret River)
## 2602 Iron Horse 2011 Unoaked Chardonnay (Green Valley)
## 2603 La Clarine Farm 2012 Rosé (Sierra Foothills)
## 2604 La Playa 2010 Axel Primero Red (Colchagua Valley)
## 2605 Maldonado 2011 Los Olivos Pinot Noir (Napa Valley)
## 2606 Medlock Ames 2008 Bell Mountain Vineyard Cabernet Sauvignon (Alexander Valley)
## 2607 Morandé 2009 Edición Limitada Carmenère (Maipo Valley)
## 2608 Ochagavia 2010 Raices Nobles Cabernet Sauvignon (Maipo Valley)
## 2609 Barnard Griffin 2011 Syrah (Columbia Valley (WA))
## 2610 Barrister 2009 Bacchus Vineyard Syrah (Columbia Valley (WA))
## 2611 Bougetz 2012 Sauvignon Blanc (Napa Valley)
## 2612 West Cape Howe 2009 Book Ends Cabernet Sauvignon (Western Australia)
## 2613 William Church 2010 2 Spires Syrah-Cabernet Sauvignon (Columbia Valley (WA))
## 2614 Karl Kaspar 2010 Kabinett Riesling (Mosel)
## 2615 Chateau Ste. Michelle 2012 Sauvignon Blanc (Columbia Valley (WA))
## 2616 Michel Torino 2006 Coleccion Chardonnay (Calchaquí Valley)
## 2617 Pillitteri 2004 Fusion Gewürztraminer-Riesling (Niagara Peninsula)
## 2618 Black Swan 2006 Cabernet Sauvignon (South Eastern Australia)
## 2619 Funky Llama 2007 Tempranillo (Mendoza)
## 2620 Borgo di Colloredo 2005 Gironia Biferno Rosato Red (Molise)
## 2621 Alba 2005 Dry Riesling (New Jersey)
## 2622 Congress Springs 2005 Cabernet Sauvignon (California)
## 2623 Congress Springs 2006 Viognier (Lodi)
## 2624 Jenica Peak 2006 Coastal Series Pinot Grigio (California)
## 2625 Norman 2006 Reserve Chardonnay (Edna Valley)
## 2626 Pride Mountain 2005 Sangiovese (Sonoma County)
## 2627 Mazzocco 2005 Stone Zinfandel (Alexander Valley)
## 2628 Congress Springs 2006 Chardonnay (California)
## 2629 Emerson 2006 Pinot Gris (Willamette Valley)
## 2630 Four Vines 2005 Maverick Zinfandel (Amador County)
## 2631 Four Vines 2005 Old Vine Cuvée Zinfandel (California)
## 2632 Hesketh 2008 Usual Suspects Shiraz (McLaren Vale)
## 2633 Avignonesi 2007 Desiderio Merlot (Cortona)
## 2634 Borges 2009 Touriga Nacional (Dão)
## 2635 Caccia al Piano 1868 2009 Ruit Hora (Bolgheri)
## 2636 Château Haut-Peyrous 2009 Graves
## 2637 Château Lafleur-Gazin 2009 Pomerol
## 2638 Château Lieujean 2009 Haut-Médoc
## 2639 Château Liversan 2009 Haut-Médoc
## 2640 J. Rickards 2009 Brown Barn Vineyard Petite Sirah (Alexander Valley)
## 2641 Jansz NV Premium Brut Rosé Sparkling (Tasmania)
## 2642 Antiyal 2009 Kuyen Red (Maipo Valley)
## 2643 Jacob's Creek 2009 Reserve Chardonnay (Adelaide Hills)
## 2644 Le Buche 2008 Olivi Cantine Pugnitello (Toscana)
## 2645 Leonesse Cellars 2008 Vista Del Monte Vineyard Syrah (Temecula Valley)
## 2646 Liberty School 2010 Chardonnay (Central Coast)
## 2647 Marchesi Antinori 2009 Guado al Tasso il Bruciato (Bolgheri)
## 2648 Millbrook 2010 25th Anniversary Pinot Noir (Hudson River Region)
## 2649 Nefarious 2009 Cabernet Franc (Wahluke Slope)
## 2650 O•S Winery 2009 The Tusk Elephant Mountain Vineyard Merlot (Yakima Valley)
## 2651 Owen Roe 2009 Ex Umbris Syrah (Columbia Valley (WA))
## 2652 Quinta de Foz de Arouce 2009 Branco Cerceal (Beiras)
## 2653 Quinta do Cavalinho 2009 Templários Colheita Seleccionada Red (Tejo)
## 2654 Rozes 2008 Quinta do Grifo Grande Reserva Red (Douro)
## 2655 Casa di Terra 2010 Moreccio (Bolgheri)
## 2656 Château d'Angludet 2009 Margaux
## 2657 Château Laforge 2009 Saint-Émilion
## 2658 Château Soutard 2009 Saint-Émilion
## 2659 Château Tour de Lagarde 2009 Saint-Émilion
## 2660 Conte Ferdinando Guicciardini 2008 Massi di Mandorlaia Riserva (Morellino di Scansano)
## 2661 Donna Olimpia 1898 2009 Tageto Red (Toscana)
## 2662 Zymè 2006 Amarone della Valpolicella Classico
## 2663 Howell Mountain Vineyards 2010 Old Vine Zinfandel (Howell Mountain)
## 2664 J. Bookwalter 2010 Conner Lee Vineyard Conflict Red (Columbia Valley (WA))
## 2665 Januik 2011 Cold Creek Vineyard Chardonnay (Columbia Valley (WA))
## 2666 Umathum 2011 Beerenauslese White (Burgenland)
## 2667 Venturini Massimino 2009 Semonte Alto (Valpolicella Classico Superiore Ripasso)
## 2668 Chandon 2008 Vintage Brut Sparkling (Yountville)
## 2669 Frazier 2009 Cabernet Franc (Napa Valley)
## 2670 Domaine Cabirau 2011 Serge & Nicolas Red (Maury Sec)
## 2671 Frias 2010 Cabernet Sauvignon (Spring Mountain District)
## 2672 Georges Duboeuf 2011 Domaine des Pontheux (Chiroubles)
## 2673 Orentano 2009 Pinot Noir (Russian River Valley)
## 2674 Riglos 2010 Gran Las Divas Vineyard Cabernet Franc (Tupungato)
## 2675 Les Villages de Terroir Catalan 2010 Red (Côtes du Roussillon Villages Caramany)
## 2676 J. Bookwalter 2010 Foreshadow Cabernet Sauvignon (Columbia Valley (WA))
## 2677 Keller Estate 2010 La Cruz Vineyard Pinot Noir (Sonoma Coast)
## 2678 L'Ecole No. 41 2012 Sémillon (Columbia Valley (WA))
## 2679 L'Ecole No. 41 2012 Seven Hills Vineyard Estate Luminesce Semillon-Sauvignon Blanc (Walla Walla Valley (WA))
## 2680 Lionel Osmin & Cie 2011 Donibane Red (Irrouléguy)
## 2681 Melville 2012 Clone 76 Inox Estate Chardonnay (Sta. Rita Hills)
## 2682 Bravium 2011 Signal Ridge Vineyard Pinot Noir (Mendocino Ridge)
## 2683 Antonin Rodet 2010 Givry
## 2684 Bodegas Muriel 2004 Viña Muriel Gran Reserva (Rioja)
## 2685 Zenato 2007 Sergio Zenato Riserva (Amarone della Valpolicella Classico)
## 2686 Heidi Schröck 2010 Ruster Ausbruch White (Burgenland)
## 2687 Chateau Ste. Michelle 2010 Canoe Ridge Estate Cabernet Sauvignon (Horse Heaven Hills)
## 2688 Damien et Romain Bouchard 2011 Montée de Tonnerre Premier Cru (Chablis)
## 2689 Eponymous 2009 Cabernet Sauvignon (Spring Mountain District)
## 2690 Gloria Ferrer 2005 Royal Cuvée Sparkling (Carneros)
## 2691 Hall 2010 Cabernet Sauvignon (Stags Leap District)
## 2692 Geretto 2001 Pinot Grigio (Delle Venezie)
## 2693 L.A. Cetto 1996 Private Reserve Cabernet Sauvignon (Valle de Guadalupe)
## 2694 La Playa 2002 Estate Reserve Chardonnay (Colchagua Valley)
## 2695 Undurraga 2001 Reserva Merlot (Maipo Valley)
## 2696 Lane Tanner 2000 Pinot Noir (Santa Maria Valley)
## 2697 Lolonis 2001 Fumé Blanc (Redwood Valley)
## 2698 River Road 2001 Pinot Noir (Russian River Valley)
## 2699 Santa Ines 2001 Legado de Armida Reserva Sauvignon Blanc (Maipo Valley)
## 2700 Sebastiani 1996 Cherryblock Cabernet Sauvignon (Sonoma Valley)
## 2701 Signorello 2001 Seta Semillon-Sauvignon Blanc (Napa Valley)
## 2702 Silver 2000 Julia's Vineyard Pinot Noir (Santa Barbara County)
## 2703 Bortoluzzi 2001 Pinot Grigio (Isonzo del Friuli)
## 2704 Château La Joya 2000 Estate Bottled Reserve Merlot (Colchagua Valley)
## 2705 Two Brothers 2001 Big Tattoo Red Red (Colchagua Valley)
## 2706 Viña Santa Monica 2001 Chardonnay (Rapel Valley)
## 2707 Wolff 2001 Dijon Clones Selection Pinot Noir (Edna Valley)
## 2708 Errazuriz 2001 Cabernet Sauvignon (Aconcagua Valley)
## 2709 Girolamo Dorigo 2000 Chardonnay (Colli Orientali del Friuli)
## 2710 Iron Horse 2002 Rose de Pinot Noir Pinot Noir (Green Valley)
## 2711 Opolo 2000 Pinot Noir (Central Coast)
## 2712 Savannah-Chanelle 2000 Sleepy Hollow Vineyard Pinot Noir (Santa Lucia Highlands)
## 2713 Merk 2001 Tocai (Friuli Aquileia)
## 2714 Morandé 2001 Edicion Limitada - 66 Barricas Cabernet Franc (Maipo Valley)
## 2715 J Vineyards & Winery 2002 Pinot Gris (Russian River Valley)
## 2716 Pradio 1999 Teraje Chardonnay (Friuli Grave)
## 2717 Masi 2002 Colbaraca Classico (Soave)
## 2718 Masottina 2001 Vigneto Ai Palazzi Pinot Grigio (Piave)
## 2719 Montes 2001 Alpha Syrah (Curicó Valley)
## 2720 Concha y Toro 2002 Xplorador Merlot (Rapel Valley)
## 2721 Dopff & Irion 2014 Cuvée René Dopff Pinot Blanc (Alsace)
## 2722 Union de Vignerons de l'Île de Beauté 2015 Rosé (Ile de Beauté)
## 2723 Van Ruiten 2015 Chardonnay (Lodi)
## 2724 Vignobles Bonhur 2015 Château Terres Douces Rosé (Bordeaux Rosé)
## 2725 Viña Otano 2014 Viura (Rioja)
## 2726 MandraRossa 2015 Urra di Mare Sauvignon (Sicilia)
## 2727 Mastroberardino 2013 Neroametà Aglianico (Campania)
## 2728 Joseph Filippi 2009 Old Vine Zinfandel (Cucamonga Valley)
## 2729 Le Petit Cochonnet 2015 Cabernet Sauvignon (Pays d'Oc)
## 2730 Leon Beyer 2014 Pinot Blanc (Alsace)
## 2731 Terredora 2012 Campore (Fiano di Avellino)
## 2732 Tortoise Creek 2014 Jam's Blend Chardonnay (Lodi)
## 2733 Undurraga 2014 Gran Reserva Sibaris Pinot Noir (Leyda Valley)
## 2734 Vermeil 2013 Frediani Vineyard Cabernet Franc (Calistoga)
## 2735 Viña Maipo 2015 Vitral Chardonnay (Chile)
## 2736 Woodbridge by Robert Mondavi 2013 Merlot (California)
## 2737 Viñedos y Bodegas Pablo 2014 Menguante Garnacha (Cariñena)
## 2738 Concha y Toro 2014 Reserva Casillero del Diablo Cabernet Sauvignon (Central Valley)
## 2739 Echeverria 2014 Reserva Merlot (Central Valley)
## 2740 Famille Hauller 2015 Pinot Blanc (Alsace)
## 2741 Black Stallion 2015 Sauvignon Blanc (Napa Valley)
## 2742 Bodega Volcanes de Chile 2013 Tectonia Pinot Noir (Bío Bío Valley)
## 2743 Bota Box 2014 Cabernet Sauvignon (California)
## 2744 Campellares 2014 Rioja
## 2745 Château Côte Montpezat 2015 Le Canon de Côte Montpezat Rosé (Bordeaux Rosé)
## 2746 Château Léon 2015 Rosé (Bordeaux Rosé)
## 2747 Agricola Bellaria 2014 Oltre (Greco di Tufo)
## 2748 Cramele Recas 2014 Legendary Estate Series Cabernet Sauvignon (Romania)
## 2749 Cramele Recas 2014 Legendary Estate Series Pinot Grigio (Romania)
## 2750 Cramele Recas 2015 Dreambird Merlot (Romania)
## 2751 Nica 2012 Chardonnay (California)
## 2752 Producta Vignobles 2015 Cabane aux Oiseaux Rosé (Bordeaux Rosé)
## 2753 Rio Madre 2014 Rioja
## 2754 Rios de Chile 2015 Chardonnay (Central Valley)
## 2755 Le Petit Cochonnet 2015 Merlot (Pays d'Oc)
## 2756 Le Petit Cochonnet 2015 Pinot Noir (Pays d'Oc)
## 2757 Loma Larga 2013 Unfiltered Pinot Noir (Casablanca Valley)
## 2758 Los Portales 2013 Garnacha (Shenandoah Valley (CA))
## 2759 Maison Nicolas 2015 Rosé (Gard)
## 2760 Montebuena 2014 Cuvée KPF (Rioja)
## 2761 Montes 2014 Classic Series Merlot (Colchagua Costa)
## 2762 Rayun 2014 Cabernet Sauvignon (Central Valley)
## 2763 Rios de Chile 2015 Sauvignon Blanc (Central Valley)
## 2764 River Road 2015 Un-Oaked Chardonnay (Sonoma County)
## 2765 Greenwood Ridge 2013 Hundred Point, Estate Bottled Pinot Noir (Anderson Valley)
## 2766 Housley's Century Oak 2013 Judy's Vineyard Cabernet Sauvignon (Lodi)
## 2767 Twisted 2014 Cabernet Sauvignon (California)
## 2768 Valtravieso 2011 Vendimia Seleccionada (Ribera del Duero)
## 2769 Château Lamothe-Vincent 2015 Rosé (Bordeaux Rosé)
## 2770 Château Laubès 2015 Rosé (Bordeaux Rosé)
## 2771 Four Sisters Ranch 2011 Serena's Private Reserve Cabernet Sauvignon (Paso Robles)
## 2772 Frei Brothers 2014 Reserve Chardonnay (Russian River Valley)
## 2773 G7 2013 The 7th Generation Reserva Carmenère (Loncomilla Valley)
## 2774 Albamar 2015 Estate Bottled Chardonnay (Casablanca Valley)
## 2775 Indomita 2015 Gran Reserva Chardonnay (Casablanca Valley)
## 2776 Loft 2014 Cabernet Sauvignon (California)
## 2777 Loft 2014 Chardonnay (Monterey)
## 2778 Santa Alicia 2015 Reserva Sauvignon Blanc (Maipo Valley)
## 2779 Jekel 2014 Pinot Noir (Monterey)
## 2780 Kunza 2012 Reserve Cabernet Sauvignon (Maule Valley)
## 2781 Herdade dos Machados 2009 Morgado da Canita Red (Alentejano)
## 2782 Pazzo 2009 Red (Napa Valley)
## 2783 Quinta de Gomariz 2011 Espadeiro Rosé (Vinho Verde)
## 2784 Sean Minor 2010 Pinot Noir (Carneros)
## 2785 Kirkland Signature 2009 Pinot Noir (Carneros)
## 2786 Lost Angel 2009 Ruckus White (California)
## 2787 Matchbook 2010 Old Head Chardonnay (Dunnigan Hills)
## 2788 Monte Seis Reis 2010 Boa Memória Branco White (Alentejano)
## 2789 Aveleda 2011 Casal Garcia Tinto Red (Portuguese Table Wine)
## 2790 Barton & Guestier 2011 Bistro Pinot Noir (Ile de Beauté)
## 2791 Black Box 2010 Sweet Red (California)
## 2792 Black Box 2011 Chardonnay (California)
## 2793 Caves Aliança 2009 Vista Tinta Roriz (Beiras)
## 2794 Twisted Sisters 2009 Matriarch Red (Paso Robles)
## 2795 Twisted Sisters 2010 Zinfandel (Paso Robles)
## 2796 Valentin Bianchi 2011 Elsa Chardonnay (Mendoza)
## 2797 Vignobles Garrigae 2010 Seigneurie de Peyrat Tradition Chardonnay-Viognier (Pays d'Oc)
## 2798 Walt 2010 Hein Family Vineyard Pinot Noir (Anderson Valley)
## 2799 Plungerhead 2010 Old Vine Zinfandel (Dry Creek Valley)
## 2800 Quinta do Portal 2011 Trevo White (Vinho Verde)
## 2801 Rare NV 4 Grape Blend Red (California)
## 2802 Stephen Ross 2010 Pinot Noir (Central Coast)
## 2803 L. Tramier & Fils 2010 Bourricot Pinot Noir (Vin de France)
## 2804 LoveThisLife 2009 White (California)
## 2805 Agricola Pugliano 2013 Chianti
## 2806 Atwater NV Bubble Pinot Noir Rosé Sparkling (Seneca Lake)
## 2807 Bodegas Ribón 2012 Tinto Ribón Crianza (Ribera del Duero)
## 2808 Boudreaux Cellars 2011 Wallula Vineyard Syrah (Horse Heaven Hills)
## 2809 Kirkland Signature 2013 Signature Series Merlot (Oakville)
## 2810 Le Casalte 2012 Quercetonda (Vino Nobile di Montepulciano)
## 2811 Maryhill 2013 Chardonnay (Columbia Valley (WA))
## 2812 :Nota Bene 2011 Verhey Vineyard Malbec (Yakima Valley)
## 2813 Oakville Winery 2013 Estate Grown and Produced Zinfandel (Oakville)
## 2814 Kennedy Shah 2011 Tempranillo (Columbia Valley (WA))
## 2815 Kennedy Shah 2012 La Vie en Rouge Red (Columbia Valley (WA))
## 2816 Le Fonti a San Giorgio 2011 Chianti Montespertoli
## 2817 Andis 2014 Belle en Rosé (Amador County)
## 2818 Astorre Noti 2011 Vino Nobile di Montepulciano
## 2819 Attis 2013 Albariño (Rías Baixas)
## 2820 Barlow 2012 Unfiltered Merlot (Calistoga)
## 2821 Bindi Sergardi 2013 Al Canapo (Chianti Colli Senesi)
## 2822 Bodegas Riolanc 2012 Vendimia Seleccionada (Rioja)
## 2823 Bonacchi 2013 Casalino (Chianti Classico)
## 2824 Castello di Querceto 2013 Chianti Classico
## 2825 Cave du Marmandais 2014 Murets de Mez (Bordeaux)
## 2826 Charles & Charles 2014 Rosé (Columbia Valley (WA))
## 2827 Château Anniche 2014 Bordeaux Blanc
## 2828 Château Bel Air 2012 Château Ouvrard (Bordeaux Supérieur)
## 2829 Château de l'Aubrade 2014 Bordeaux Blanc
## 2830 Château de Parenchère 2014 Bordeaux Clairet
## 2831 Château Guichot 2014 Bordeaux Blanc
## 2832 Château Lary 2014 Bordeaux Blanc
## 2833 Château Maison Noble 2013 Bordeaux Supérieur
## 2834 Coli 2013 Pratale (Chianti Classico)
## 2835 Bench 2014 Merlot (Knights Valley)
## 2836 Campo di Sasso 2014 Insoglio del Cinghiale Red (Toscana)
## 2837 Château de la Terrière 2015 Brouilly
## 2838 Cottesbrook 2016 Sauvignon Blanc (Marlborough)
## 2839 Disruption 2014 Cabernet Sauvignon (Washington)
## 2840 Fattoria La Striscia 2014 Sangiovese (Toscana)
## 2841 Fattoria Sardi 2015 Le Cicale Rosato (Toscana)
## 2842 Georges Duboeuf 2015 Domaine du Paradis (Saint-Amour)
## 2843 Georges Duboeuf 2015 Domaine Mont Chavy (Morgon)
## 2844 Georges Duboeuf 2015 Flower Label (Chiroubles)
## 2845 Georges Duboeuf 2015 Flower Label (Fleurie)
## 2846 Great American Wine Company 2014 Cabernet Sauvignon (California)
## 2847 Guicciardini Strozzi 2012 Vignarè Red (Toscana)
## 2848 Happy Camper 2015 Chardonnay (California)
## 2849 Hawkins Cellars 2015 Barrel Select Viognier (Columbia Valley (WA))
## 2850 Il Palagio 2012 Sister Moon Red (Toscana)
## 2851 Marietta Cellars NV Arme Lot Number 3 Red (North Coast)
## 2852 McGregor 2013 Reserve Cabernet Franc (Finger Lakes)
## 2853 Pessagno 2013 Pinot Noir (Santa Lucia Highlands)
## 2854 Val delle Rose 2015 Morellino di Scansano
## 2855 Valle Hermoso 2014 Elegido Gran Reserva Malbec (Colchagua Valley)
## 2856 Baccinetti 2011 Saporaia (Brunello di Montalcino)
## 2857 Rideau 2014 Estate Grenache
## 2858 Ryan Patrick 2013 Reserve Northridge Vineyard Grenache (Wahluke Slope)
## 2859 San Pedro 2014 1865 Single Vineyard Cabernet Sauvignon (Maipo Valley)
## 2860 Sangervasio 2011 I Renai Merlot (Toscana)
## 2861 Scaranto 2013 Red (Toscana)
## 2862 Ste. Chapelle 2015 Special Harvest Riesling
## 2863 Tolaini 2011 Valdisanti Red (Toscana)
## 2864 Vanderbilt 2013 Reserve Merlot (Dry Creek Valley)
## 2865 Protos 2006 Reserva (Ribera del Duero)
## 2866 Purple Hands 2011 Stoller Vineyard Pinot Noir (Dundee Hills)
## 2867 Quinta do Casal Branco 2011 Falcoaria Fernão Pires (Tejo)
## 2868 RN Estate 2010 Harmonie des Cepages Red (Paso Robles)
## 2869 RN Estate 2011 Fiddlestix Vineyard Pinot Noir (Sta. Rita Hills)
## 2870 Écluse 2010 Lock Vineyard Cabernet Sauvignon (Paso Robles)
## 2871 Elena Walch 2009 Riserva Castel Ringberg Chardonnay (Alto Adige)
## 2872 Fournier Père et Fils 2010 Cuvée Silex (Sancerre)
## 2873 Gini 2010 Contrada Salvarenza Vecchie Vigne (Soave Classico)
## 2874 W.H. Smith 2010 Pinot Noir (Sonoma Coast)
## 2875 Bjornstad 2009 Van der Kamp Vineyard Pinot Meunier (Sonoma Mountain)
## 2876 Chase 2009 Petite Sirah (Calistoga)
## 2877 Château la Varière 2010 Vieilles Vignes Cabernet Franc-Cabernet Sauvignon (Anjou Villages Brissac)
## 2878 Contadi Castaldi 2008 Brut Satèn Chardonnay (Franciacorta)
## 2879 Ken Wright 2011 Shea Vineyard Pinot Noir
## 2880 Market Vineyards 2009 Benchmark Merlot (Columbia Valley (WA))
## 2881 MCV 2011 Rosewynn Vineyard Petite Sirah (Paso Robles)
## 2882 Terre Rouge 2011 Viognier (Fiddletown)
## 2883 V. Sattui 2009 Paradiso Red (Napa Valley)
## 2884 Westerly 2010 Pinot Noir (Sta. Rita Hills)
## 2885 Whitcraft 2011 Pence Ranch Pinot Noir (Santa Ynez Valley)
## 2886 Nicora 2010 Euphoric La Vista Vineyard Grenache-Syrah (Paso Robles)
## 2887 Nicora 2010 G-S-M (Paso Robles)
## 2888 Black Kite 2010 Redwood's Edge Pinot Noir (Anderson Valley)
## 2889 Bunnell 2009 Grenache (Columbia Valley (WA))
## 2890 Château la Varière 2009 Les Melleresses (Bonnezeaux)
## 2891 Château Lagrézette 2010 Château Chevaliers Lagrézette Malbec (Cahors)
## 2892 Château Saint-Didier-Parnac 2011 Prieuré de Cénac Malbec (Cahors)
## 2893 Contadi Castaldi 2008 Zero Sparkling (Franciacorta)
## 2894 Domaine de Cause 2009 Notre Dame de Champs Malbec (Cahors)
## 2895 Losada 2013 El Pájaro Rojo Mencía (Bierzo)
## 2896 Manuel Olivier 2012 Vieilles Vignes (Bourgogne Hautes Côtes de Nuits)
## 2897 Windy Bay 2012 Pinot Noir (Oregon)
## 2898 Vignerons de Buxy 2012 Buissonnier (Mercurey)
## 2899 Villa Girardi 2010 Amarone della Valpolicella Classico
## 2900 Wines & Winemakers 2013 Lua Cheia em Vinhas Velhas Album Antão Vaz (Alentejano)
## 2901 Clos La Chance 2010 Amber's Cuvee Sparkling (Santa Cruz Mountains)
## 2902 Pagos del Rey 2008 Arnegui Reserva (Rioja)
## 2903 Quinta de Covela 2013 Covela Rosé (Minho)
## 2904 Ricci Curbastro 2009 Extra Brut Sparkling (Franciacorta)
## 2905 Ruhlmann NV Signature Brut Sparkling (Crémant d'Alsace)
## 2906 Dopff & Irion NV Brut Rosé Sparkling (Crémant d'Alsace)
## 2907 Foris 2012 Maple Ranch Estate Pinot Noir (Rogue Valley)
## 2908 Vega Sindoa 2012 El Chaparral Old Vines Garnacha (Navarra)
## 2909 Il Mosnel 2010 Brut Satèn Chardonnay (Franciacorta)
## 2910 Jaffelin 2013 Les Villages de Jaffelin (Mâcon-Péronne)
## 2911 Jean-Luc and Paul Aegerter 2012 Clos des Rois Premier Cru (Maranges)
## 2912 Lealtanza 2011 Crianza (Rioja)
## 2913 Maximin Grünhäuser 2012 Herrenberg Alte Reben Trocken Riesling (Mosel)
## 2914 Aldonia 2012 Vendimia (Rioja)
## 2915 Altemasi 2010 Brut Chardonnay (Trento)
## 2916 Ancient Oak Cellars 2011 Siebert Ranch Pinot Noir (Russian River Valley)
## 2917 Cellers Baronia del Montsant 2010 Englora Red (Montsant)
## 2918 Benziger 2012 Appellation Series Pinot Noir (Sonoma Coast)
## 2919 Herdade do Rocim 2013 Olho de Mocho Rosé (Alentejano)
## 2920 Le Bertarole 2010 Podere Cariano (Amarone della Valpolicella Classico)
## 2921 Poças NV Poças Pink (Port)
## 2922 Quintas de Melgaço 2013 QM Blue White (Vinho Verde)
## 2923 Augusta Winery 2008 Seyval Blanc (Augusta)
## 2924 Bella 2007 Lily Hill Estate Syrah (Dry Creek Valley)
## 2925 Carmen 2009 Sauvignon Blanc (Curicó Valley)
## 2926 Pulenta Estate 2008 La Flor Cabernet Sauvignon (Mendoza)
## 2927 Simonnet-Febvre 2007 Sauvignon de Saint-Bris (Saint-Bris)
## 2928 Williamson Wines 2006 Clarissa Vin Rouge Red (Dry Creek Valley)
## 2929 Mendocino Farms 2005 Heart Arrow Ranch Cabernet Sauvignon (Mendocino)
## 2930 Messina Hof 2009 Muscat Canelli (Texas)
## 2931 Morandé 2008 Pionero Merlot (Rapel Valley)
## 2932 La Chiripada 2007 Artist Series 1 Dolcetto (New Mexico)
## 2933 Howling Moon 2008 Chardonnay (Lodi)
## 2934 La Storia 2006 Cuvee 32 Red (Alexander Valley)
## 2935 Luigi Bosca 2009 Finca la Linda Chardonnay (Luján de Cuyo)
## 2936 O. Fournier 2007 Urban Uco Tempranillo (Uco Valley)
## 2937 Pahrump Valley Winery 2005 Nevada Ridge First Crush Zinfandel (Nevada)
## 2938 Sobon Estate 2008 Viognier (Amador County)
## 2939 Terre Rouge 2007 Tete-a-Tete Red (Sierra Foothills)
## 2940 Three Fox 2007 Il Volpe Sangiovese (Virginia)
## 2941 Castello di Borghese 2006 Founder's Field Reserve Sauvignon Blanc (North Fork of Long Island)
## 2942 Chateau Ste. Michelle 2006 Syrah (Columbia Valley (WA))
## 2943 Doña Paula 2009 Los Cardos Sauvignon Blanc (Mendoza)
## 2944 Easton 2007 Cooper Ranch Barbera (Shenandoah Valley (CA))
## 2945 Gilbert Cellars 2007 Cabernet Franc (Wahluke Slope)
## 2946 Glenora 2007 Mason Vineyard Cabernet Sauvignon (Finger Lakes)
## 2947 Glenora 2008 Riesling (Finger Lakes)
## 2948 Finca Sophenia 2009 Altosur Sauvignon Blanc (Tupungato)
## 2949 Gilbert Cellars 2007 Estate Malbec (Wahluke Slope)
## 2950 Woolundry Rd 2006 Cabernet Sauvignon (South Australia)
## 2951 Anam Cara 2005 Nicholas Estate Pinot Noir (Willamette Valley)
## 2952 Archery Summit 2004 Premier Cuvée Pinot Noir (Dundee Hills)
## 2953 Cartlidge & Browne 2005 Cabernet Sauvignon (California)
## 2954 Ceravolo 2006 Cabernet Sauvignon (Adelaide Plains)
## 2955 Doña Paula 2006 Los Cardos Syrah (Luján de Cuyo)
## 2956 Kenwood 2004 Reserve Merlot (Sonoma County)
## 2957 Leeuwin Estate 2003 Prelude Vineyards Cabernet Merlot (Margaret River)
## 2958 Parkers Estate 2005 Riverside Crossing Syrah (Sonoma County)
## 2959 Pearson Vineyards 2005 Cabernet Sauvignon (Clare Valley)
## 2960 Simonnet-Febvre 2006 Chablis
## 2961 Campos Góticos 2003 Crianza (Ribera del Duero)
## 2962 Frostwatch 2005 Chardonnay (Bennett Valley)
## 2963 Vinos Sanz 2006 Montesol Verdejo (Rueda)
## 2964 Abbazia Santa Anastasia 2006 Sinestesìa White (Sicilia)
## 2965 Pascual Toso 2007 Maipu Vineyards Sauvignon Blanc (Mendoza)
## 2966 Red Mud 2004 Cabernet Sauvignon (South Australia)
## 2967 Abbazia Santa Anastasia 2006 Baccante White (Sicilia)
## 2968 Archery Summit 2004 Renegade Ridge Estate Pinot Noir (Dundee Hills)
## 2969 Castoro Cellars 2005 Cobble Creek Zinfandel (Paso Robles)
## 2970 French Hill 2005 Grand Reserve Barbera (Sierra Foothills)
## 2971 Vitis Terrarum 2003 Tempranillo-Cabernet Sauvignon (Vino de la Tierra de Castilla)
## 2972 Vasse River 2004 Cabernet Sauvignon-Merlot (Margaret River)
## 2973 Kaleidos 2004 Morpheus Red (Paso Robles)
## 2974 Lovingston 2005 Josie's Knoll Merlot (Monticello)
## 2975 Sonoma Crest 2004 Cabernet Sauvignon (Sonoma County)
## 2976 Château Haut Cabut 2014 Blaye Côtes de Bordeaux
## 2977 Château le Pey 2014 Médoc
## 2978 Château Montlandrie 2014 Castillon Côtes de Bordeaux
## 2979 Clos Puy Arnaud 2014 Castillon Côtes de Bordeaux
## 2980 Closerie du Bailli 2014 Grande Réserve (Blaye Côtes de Bordeaux)
## 2981 Domaine François Schmitt NV Blanc de Noirs Brut Pinot Noir (Alsace)
## 2982 Penley Estate 2012 Special Select Shiraz (Coonawarra)
## 2983 Penley Estate 2013 Hyland Shiraz (Coonawarra)
## 2984 Miro 2014 Orsi Vineyard Pinot Noir (Russian River Valley)
## 2985 Murrieta's Well 2013 The Spur Red (Livermore Valley)
## 2986 Obsidian Ridge 2012 Half Mile 2640' Red (Red Hills Lake County)
## 2987 Opolo 2014 Summit Creek Zinfandel (Paso Robles)
## 2988 Paltrinieri 2013 Grosso Metodo Classico (Lambrusco di Modena)
## 2989 Reichsgraf von Kesselstatt 2015 RK Riesling (Mosel)
## 2990 Rex Hill 2015 Pinot Noir Rosé (Willamette Valley)
## 2991 Robert Biale 2014 Founding Farmers Zinfandel (Napa Valley)
## 2992 Spell 2014 Umino Vineyard Pinot Noir (Russian River Valley)
## 2993 Gruber Röschitz 2015 Trockenbeerenauslese Chardonnay (Niederösterreich)
## 2994 Henry's Drive Vignerons 2013 Pillar Box Shiraz (Padthaway)
## 2995 Jayson 2013 Pahlmeyer Chardonnay (North Coast)
## 2996 Joseph Carr 2014 Cabernet Sauvignon (Paso Robles)
## 2997 La Prevostura 2012 Lessona
## 2998 Lallier NV R.012 Brut (Champagne)
## 2999 Le Marchesine 2007 Secolo Novo Giovanni Biatta Metodo Classico Chardonnay (Franciacorta)
## 3000 Domaine Zinck NV Brut Sparkling (Crémant d'Alsace)
## 3001 Dr. Heidemanns-Bergweiler 2015 Dry Mineral Riesling (Mosel)
## 3002 Dubl NV Rosé Brut Metodo Classico Aglianico (Vino Spumante)
## 3003 Ferrer Bobet 2012 Vieilles Velles Red (Priorat)
## 3004 Granbazán 2015 Etiqueta Ámbar Albariño (Rías Baixas)
## 3005 Vallana 2007 Boca
## 3006 Krupp Brothers 2009 Stagecoach Vineyard Synchrony Red (Napa Valley)
## 3007 Pamplin 2009 Proprietary Red Red (Columbia Valley (WA))
## 3008 Pepper Bridge 2009 Cabernet Sauvignon (Walla Walla Valley (WA))
## 3009 Forgeron 2009 Merlot (Columbia Valley (WA))
## 3010 Sterling 2009 Reserve Cabernet Sauvignon (Napa Valley)
## 3011 Domaine Cazes 1996 Ambré Grenache Blanc (Rivesaltes)
## 3012 Capannelle 2007 Riserva (Chianti Classico)
## 3013 Pictor 2008 Toro
## 3014 Amavi 2010 Les Collines Vineyard Syrah (Walla Walla Valley (WA))
## 3015 André Blanck et ses Fils 2010 Schlossberg Grand Cru Gewurztraminer (Alsace)
## 3016 Castello di Querceto 2008 Il Querciolaia Red (Colli della Toscana Centrale)
## 3017 Charles Ellner 2002 Millésime Brut (Champagne)
## 3018 Scheiblhofer 2010 Andau Zweigelt (Burgenland)
## 3019 Spring Valley Vineyard 2009 Uriah Estate Grown Red Wine Red (Walla Walla Valley (WA))
## 3020 Jean-Marc Bernhard 2010 Furstentum Grand Cru Pinot Gris (Alsace)
## 3021 MacPhail 2010 Gap's Crown Pinot Noir (Sonoma Coast)
## 3022 Matarromera 2006 Reserva (Ribera del Duero)
## 3023 Nefarious 2010 Rx-3 Red Wine Red (Columbia Valley (WA))
## 3024 DeLille 2011 Chaleur Estate Blanc Sauvignon Blanc-Semillon (Columbia Valley (WA))
## 3025 Doyenne 2009 Aix Red (Red Mountain)
## 3026 Dürnberg 2011 Rabenstein Grüner Veltliner (Weinviertel)
## 3027 Forgeron 2009 Cabernet Sauvignon (Columbia Valley (WA))
## 3028 Alidis 2009 VS (Ribera del Duero)
## 3029 Turley 2010 Library Vineyard Petite Sirah (Napa Valley)
## 3030 Turley 2010 Pesenti Vineyard Petite Sirah (Paso Robles)
## 3031 Whitehall Lane 2009 Reserve Cabernet Sauvignon (Napa Valley)
## 3032 Coteaux da Murta 2013 Quinta da Murta Arinto (Bucelas)
## 3033 Fillaboa 2015 Estate Grown/Viñedo Propio Albariño (Rías Baixas)
## 3034 Franciscan 2013 Merlot (Napa Valley)
## 3035 Jasci & Marchesani 2013 Rudhir (Montepulciano d'Abruzzo)
## 3036 Kestrel 2012 Falcon Series Estate Syrah (Yakima Valley)
## 3037 Kestrel 2012 Falcon Series Merlot (Yakima Valley)
## 3038 La Valentina 2012 Spelt Riserva (Montepulciano d'Abruzzo)
## 3039 Lavradores de Feitoria 2014 Très Bagos Reserva Red (Douro)
## 3040 Manzwine 2014 Penedo do Lexim Red (Lisboa)
## 3041 Mas Pere NV Rosado Sparkling (Cava)
## 3042 Milbrandt 2015 Traditions Evergreen Vineyard Riesling (Ancient Lakes)
## 3043 Monte Volpe 2013 Sangiovese (Mendocino County)
## 3044 Nine Hats 2015 Riesling (Columbia Valley (WA))
## 3045 Pascal Aufranc 2015 En Rémont Vignes de 1939 (Chénas)
## 3046 Ricominciare 2010 Altísimo Malbec (Mendoza)
## 3047 Robert Perroud 2015 L'Enfer des Balloquets (Brouilly)
## 3048 Rôtie Cellars 2015 Grenache Blanc (Washington)
## 3049 San Simeon 2015 Stefano Vineyard Viognier (Paso Robles)
## 3050 Sanguinhal 2010 Aragonez (Lisboa)
## 3051 Nino Negri 2013 Quadrio (Valtellina Superiore)
## 3052 Pflüger 2014 Dürkheimer Trocken Pinot Noir (Pfalz)
## 3053 Picket Fence 2014 Top Rail Red (Sonoma County)
## 3054 South Stage 2012 Grenache (Rogue Valley)
## 3055 Taken Wine Co. 2014 Taken Red (Napa Valley)
## 3056 Terra d'Oro 2014 Barbera (Amador County)
## 3057 Trapiche 2014 Broquel Cabernet Sauvignon (Mendoza)
## 3058 Viña Cobos 2015 Felino Malbec (Mendoza)
## 3059 Yohan Lardy 2015 Les Michelons (Moulin-à-Vent)
## 3060 Analemma 2014 Atavus Vineyard Gewürztraminer (Columbia Gorge (WA))
## 3061 Argyle 2014 Nuthouse Pinot Noir (Eola-Amity Hills)
## 3062 Flora Springs 2008 Hillside Reserve Cabernet Sauvignon (Rutherford)
## 3063 Hirsch 2007 San Andreas Pinot Noir (Sonoma Coast)
## 3064 Joseph Drouhin 2008 Charmes-Chambertin
## 3065 DeLille 2009 Chaleur Estate Blanc White (Columbia Valley (WA))
## 3066 Benanti 2006 Serra della Contessa Red (Sicilia)
## 3067 Maison Bleue 2009 Soleil Roussanne (Yakima Valley)
## 3068 Pax 2007 Kobler Family Vineyard Syrah (Green Valley)
## 3069 Chanson Père et Fils 2008 Charmes-Chambertin
## 3070 Chanson Père et Fils 2008 Clos de Vougeot
## 3071 Domaine de la Terre Rouge 2008 Ascent Syrah (Sierra Foothills)
## 3072 Domaine Leflaive 2008 Clavoillon Premier Cru (Puligny-Montrachet)
## 3073 Joseph Drouhin 2008 Clos des Mouches Premier Cru (Beaune)
## 3074 Tyler 2008 Clos Pepe Pinot Noir (Sta. Rita Hills)
## 3075 Trefethen 2007 Dragon's Tooth Red Wine Red (Napa Valley)
## 3076 Trefethen 2008 Dragon's Tooth Red Wine Red (Napa Valley)
## 3077 Alexandria Nicole 2008 Destiny Ridge Vineyard Destiny Red Red (Horse Heaven Hills)
## 3078 Lineage 2007 Red (Livermore Valley)
## 3079 Buty 2009 Merlot-Cabernet Franc (Columbia Valley (WA))
## 3080 McCrea 2006 Boushey Grande Côte Vineyard Syrah (Yakima Valley)
## 3081 Torbreck 2007 Descendant Shiraz-Viognier (Barossa Valley)
## 3082 Beringer 2008 Alluvium Blanc Sauvignon Blanc-Semillon (Knights Valley)
## 3083 Corte Sant' Alda 2007 Campi Magri (Valpolicella Superiore)
## 3084 Corteforte 2007 Podere Bertarole (Valpolicella Classico Superiore Ripasso)
## 3085 Fabiano 2008 Valpolicella Classico Superiore Ripasso
## 3086 Gamba 2007 Le Quare (Valpolicella Classico Superiore Ripasso)
## 3087 Hogue 2009 Pinot Grigio (Columbia Valley (WA))
## 3088 Bell 2007 Claret Cabernet Sauvignon (Napa Valley)
## 3089 Brigaldara 2007 Il Vegro (Valpolicella Classico Superiore Ripasso)
## 3090 Cadence 2008 Coda Red (Red Mountain)
## 3091 Latium di Morini 2005 Campo Leòn (Amarone della Valpolicella)
## 3092 Luigi Righetti 2006 Capitel de' Roari (Amarone della Valpolicella Classico)
## 3093 Marquee 2008 Signature Chardonnay (Yarra Valley)
## 3094 Miguel Torres 2007 Manso de Velasco Viejas Viñas Old Vines Cabernet Sauvignon (Central Valley)
## 3095 Mittnacht Frères 2009 Terre d'Etoiles Pinot Blanc (Alsace)
## 3096 Monte del Frá 2005 Tenuta Lena di Mezzo (Amarone della Valpolicella Classico)
## 3097 Montresor 2006 Giacomo Montresor (Amarone della Valpolicella)
## 3098 Musella 2005 Riserva (Amarone della Valpolicella)
## 3099 Paso a Paso 2009 Verdejo (La Mancha)
## 3100 Penfolds 2007 Bin 128 Shiraz (Coonawarra)
## 3101 Qupé 2008 Purisima Mountain Vineyard Syrah (Santa Ynez Valley)
## 3102 Ridge 2007 California Monte Bello Red (Santa Cruz Mountains)
## 3103 Santa Ema 2007 Catalina Red (Peumo)
## 3104 Cono Sur 2008 20 Barrels Pinot Noir (Casablanca Valley)
## 3105 Cono Sur 2009 Visión Viognier (Colchagua Valley)
## 3106 Corte San Benedetto 2003 Amarone della Valpolicella Classico
## 3107 Domìni Veneti 2006 Verjago (Valpolicella Classico Superiore)
## 3108 Dopff & Irion NV Cuvée Prestige Brut Sparkling (Crémant d'Alsace)
## 3109 Falezza 2005 Amarone della Valpolicella
## 3110 Rieflé 2006 Pinot Gris Bonheur Convivial Pinot Gris (Alsace)
## 3111 Casa Silva 2005 Microterroir de los Lingues Carmenère (Colchagua Valley)
## 3112 Château Lamothe-Vincent 2011 Le Grand Rossignol du Château Lamothe Vincent (Bordeaux Supérieur)
## 3113 Château Pey la Tour 2011 Bordeaux
## 3114 Clayhouse 2011 Red Cedar Vineyard Estate Syrah-Petite Sirah (Paso Robles)
## 3115 Dilecta 2011 The Tiller Caliza Vineyard Russell Family Vineyards Grenache-Syrah (Paso Robles)
## 3116 Grayson 2012 Lot 10 Cabernet Sauvignon (California)
## 3117 Vinemark 2011 Pinot Noir (Napa Valley)
## 3118 Wetzel Estate 2010 Estate Reserve Pinot Noir (Willamette Valley)
## 3119 Magnolia Court 2012 Cabernet Sauvignon (Central Coast)
## 3120 Picket Fence 2012 Pinot Noir (Russian River Valley)
## 3121 Recuerdo 2011 Malbec (Uco Valley)
## 3122 Adanti 2009 Montefalco Rosso
## 3123 Château Haut Nadeau 2011 Réserve du Propriétaire (Bordeaux Supérieur)
## 3124 un4seen 2011 Chardonnay (Lodi)
## 3125 Vinemark 2010 Touriga Nacional (Paso Robles)
## 3126 Wetzel Estate 2011 Estate Pinot Blanc (Willamette Valley)
## 3127 Del Rio 2010 Claret (Rogue Valley)
## 3128 Grayson 2012 Pinot Noir (California)
## 3129 Guenoc 2012 Chardonnay (California)
## 3130 Vinemark 2009 Primitivo (Paso Robles)
## 3131 Woodbridge by Robert Mondavi 2012 Zinfandel (California)
## 3132 Barton & Guestier NV Partager Red
## 3133 Bodegas Tobía 2012 Viña Tobía White (Rioja)
## 3134 Univitis 2012 Grand Théatre (Bordeaux Blanc)
## 3135 Château Gréteau Médeville 2011 Bordeaux Supérieur
## 3136 Wildberry Estate 2005 Shiraz (Margaret River)
## 3137 Salentein 2005 Reserve Malbec (Uco Valley)
## 3138 Sattlerhof 2006 Steirische Klassik Sauvignon Blanc (Südsteiermark)
## 3139 Steininger 2006 Brut Grüner Veltliner (Kamptal)
## 3140 Summerer 2007 Steinhaus Grüner Veltliner (Kamptal)
## 3141 Robert Stemmler 2005 Ferguson Block Pinot Noir (Carneros)
## 3142 Tamarack Cellars 2005 Syrah (Columbia Valley (WA))
## 3143 Murrieta's Well 2004 Meritage (Livermore Valley)
## 3144 Coeur d'Alene 2005 Switchback Red Red (Washington)
## 3145 Bouchard Aîné & Fils 2005 Les Marconnets Premier Cru (Beaune)
## 3146 Whitman Cellars 2005 Syrah (Walla Walla Valley (WA))
## 3147 Zull 2006 Aussere Bergen Grüner Veltliner (Niederösterreich)
## 3148 Helix by Reininger 2005 Merlot (Columbia Valley (WA))
## 3149 Tomero 2007 Torrontés (Salta)
## 3150 Trivento 2005 Golden Reserve Malbec (Mendoza)
## 3151 Breggo 2006 Ferrington Vineyard Sauvignon Blanc (Anderson Valley)
## 3152 Bründlmayer 2004 Pinot Noir Cécile Pinot Noir (Kamptal)
## 3153 Schug 2004 Heritage Reserve Cabernet Sauvignon (Sonoma Valley)
## 3154 Tagaris 2006 Alice Vineyard Malbec (Wahluke Slope)
## 3155 Torres 2005 Celeste Crianza (Ribera del Duero)
## 3156 Beaulieu Vineyard 2010 Coastal Estates Chardonnay (California)
## 3157 Stoneburn 2009 Pinot Noir (Marlborough)
## 3158 Trivento 2010 Reserve Malbec (Mendoza)
## 3159 Verum 2010 Malbec (Alto Valle del Río Negro)
## 3160 Viña Alicia 2008 Morena Red (Luján de Cuyo)
## 3161 Bott Frères 2010 Cuvée Particulière Muscat (Alsace)
## 3162 Ca' dei Zago 2010 Col Fondo (Prosecco)
## 3163 Carpenè Malvolti NV Cuvée Brut (Conegliano Valdobbiadene Prosecco Superiore)
## 3164 Dopff & Irion 2010 Tradition Pinot Gris (Alsace)
## 3165 Galaxy 2008 Syrah-Merlot-Cabernet Sauvignon Red (Sonoma-Napa)
## 3166 Gardel 2010 Vendimia Especial Malbec (Mendoza)
## 3167 Giavi 2011 Prima Volta Millesimato Dry (Conegliano Valdobbiadene Prosecco Superiore)
## 3168 Anna Spinato NV Mini (Prosecco)
## 3169 Bellenda 2011 Miraval Millesimato Extra Dry (Conegliano Valdobbiadene Prosecco Superiore)
## 3170 Bianca Vigna 2011 Millesimato Brut (Conegliano Valdobbiadene Prosecco Superiore)
## 3171 Canella NV Conegliano Valdobbiadene Prosecco Superiore
## 3172 Caposaldo NV Brut (Prosecco)
## 3173 Carpenè Malvolti NV Extra Dry (Conegliano Valdobbiadene Prosecco Superiore)
## 3174 Coelho 2010 Atração Pinot Noir (Willamette Valley)
## 3175 Coho 2009 Headwaters Red (Napa Valley)
## 3176 Cupcake 2010 Cabernet Sauvignon (Central Coast)
## 3177 Domaine Ostertag 2010 Vignoble d'Epfig Riesling (Alsace)
## 3178 Domaine Rieflé 2008 Steinert Grand Cru Riesling (Alsace)
## 3179 Donati 2008 Ezio Red (Paicines)
## 3180 Andeluna 2010 Malbec (Mendoza)
## 3181 Georges Duboeuf 2015 Château de Juliénas (Juliénas)
## 3182 Georges Duboeuf 2015 Château des Capitans (Juliénas)
## 3183 Georges Duboeuf 2015 Domaine de Javernière Côte du Py (Morgon)
## 3184 Georges Duboeuf 2015 Domaine des Quatres Vents (Fleurie)
## 3185 Hess Collection 2013 19 Block Mountain Cuvée Red (Mount Veeder)
## 3186 Il Borro 2013 Red (Toscana)
## 3187 Iron Horse 2011 Russian Cuvée Sparkling (Green Valley)
## 3188 Lackner Tinnacher 2015 Sauvignon Blanc (Südsteiermark)
## 3189 Lauren Ashton Cellars 2013 Proprietor's Cuvée Red (Columbia Valley (WA))
## 3190 Now Presenting... 2014 Red (Paso Robles)
## 3191 On Point 2014 Christina's Cuvée Pinot Noir (North Coast)
## 3192 Pardon et Fils 2015 Les Mouilles (Juliénas)
## 3193 Paumanok 2014 Cabernet Franc (North Fork of Long Island)
## 3194 Jean-Luc Colombo 2013 Amour de Dieu (Condrieu)
## 3195 Acacia 2013 Thornton Vineyard Pinot Noir (Sonoma Coast)
## 3196 Alain Jaume et Fils 2014 Haut de Brun Red (Côtes du Rhône)
## 3197 San Carlo 2011 Brunello di Montalcino
## 3198 Sean Minor 2013 Cabernet Sauvignon (Napa Valley)
## 3199 Steininger 2015 Grand Grü Reserve Grüner Veltliner (Kamptal)
## 3200 Stift Klosterneuburg 2014 Ausstich St. Laurent (Thermenregion)
## 3201 Terroirs et Talents 2015 Clos de la Brosse (Saint-Amour)
## 3202 Tua Rita 2013 Redigaffi Merlot (Toscana)
## 3203 Unger 2015 Oberfeld Alte Reben Reserve Grüner Veltliner (Kremstal)
## 3204 Vino La Monarcha 2014 Sangiovese (Wahluke Slope)
## 3205 Vino La Monarcha 2015 Riesling (Ancient Lakes)
## 3206 Whiplash 2015 Red (California)
## 3207 Bell 2013 Cabernet Sauvignon (Napa Valley)
## 3208 Cerbaia 2011 Brunello di Montalcino
## 3209 Gibbs 2014 Bacigalupi Vineyard Chardonnay (Russian River Valley)
## 3210 Gloria Ferrer NV Sonoma Brut Sparkling (Sonoma County)
## 3211 Bodegas Valdemar 2005 Inspiración (Rioja)
## 3212 Bula 2010 Red (Montsant)
## 3213 Bunchgrass 2009 Syrah (Walla Walla Valley (WA))
## 3214 Can Blau 2010 Blau Red (Montsant)
## 3215 Cantina Produttori San Michele Appiano 2011 Sanct Valentin Gewürztraminer (Alto Adige)
## 3216 Carol Shelton 2009 Monga Zin, Lopez Vineyard Zinfandel (Cucamonga Valley)
## 3217 Casa Rojo 2009 Fauno Organic Grapes Garnacha (Priorat)
## 3218 Castello di Montegiove 2008 Elicius Red (Umbria)
## 3219 Château de la Croix 2009 Médoc
## 3220 Château d'Esclans 2012 Whispering Angel Rosé (Côtes de Provence)
## 3221 Château Dupeyrat Plouget 2010 Cru de Plouget (Côtes de Bourg)
## 3222 Chelsea Goldschmidt 2011 Merlot (Dry Creek Valley)
## 3223 Peju 2009 Merlot (Napa Valley)
## 3224 Pope Valley Winery 2010 Eakle Ranch Cabernet Sauvignon (Napa Valley)
## 3225 Real Sitio de Ventosilla 2004 RSV 1601 El Duque de Lerma (Ribera del Duero)
## 3226 Stryker Sonoma 2010 Cabernet Sauvignon (Alexander Valley)
## 3227 Talamonti 2012 Trabocchetto Pecorino (Colline Pescaresi)
## 3228 The Eyrie Vineyards 2011 Estate Chardonnay (Dundee Hills)
## 3229 The Farm Winery 2009 Touchy-Feely G-S-M (Paso Robles)
## 3230 Tre Monti 2009 Thea Riserva (Sangiovese di Romagna Superiore)
## 3231 Trueheart 2010 Truehart Vineyard Petite Sirah (Sonoma Valley)
## 3232 Val do Sosego 2011 Albariño (Rías Baixas)
## 3233 J. Christopher 2010 Nuages Pinot Noir (Chehalem Mountains)
## 3234 J. Lohr 2010 Gesture G-S-M (Paso Robles)
## 3235 Johanneshof Reinisch 2012 Rotgipfler (Thermenregion)
## 3236 Lynmar 2011 Monastery Chardonnay (Russian River Valley)
## 3237 Matetic 2011 EQ Chardonnay (San Antonio)
## 3238 Oliver Conti 2011 Treyu White (Empordà)
## 3239 Parcel 41 2011 Merlot (Napa Valley)
## 3240 Drei Donà Tenuta La Palazza 2009 Pruno Riserva (Sangiovese di Romagna Superiore)
## 3241 401K 2012 Cabernet Sauvignon (California)
## 3242 Barnard Griffin 2014 Fumé Blanc Dry Sauvignon Blanc (Columbia Valley (WA))
## 3243 Cana's Feast 2013 Northridge Vineyard Primitivo (Columbia Valley (WA))
## 3244 Cantine Leonardo Da Vinci 2010 Da Vinci Riserva (Chianti)
## 3245 Hill Family Estate 2012 Cabernet Sauvignon (Napa Valley)
## 3246 James Wyatt 2013 Untamed Cuvée Red (Yakima Valley)
## 3247 Liebart-Régnier NV Brut (Champagne)
## 3248 Vinum 2013 White Elephant White (California)
## 3249 Viticoltori Senesi Aretini 2009 Riserva (Chianti)
## 3250 Wise Villa 2013 Estate Grown Sangiovese (Placer County)
## 3251 MacPhail 2014 Rosé of Pinot Noir (Sonoma Coast)
## 3252 Maison Bouey 2012 Château Lestruelle (Médoc)
## 3253 Maison Bouey 2014 Le Rosé Gourmand de Lestruelle Rosé (Bordeaux Rosé)
## 3254 Mannucci Droandi 2009 Ceppeto Riserva (Chianti Classico)
## 3255 Rosenblum 2012 Winemaker Selection Zinfandel (Sonoma County)
## 3256 Travignoli 2013 Chianti Rufina
## 3257 Hanaiali'i 2013 Merlot (Napa Valley)
## 3258 Lagana 2013 Breezy Slope Vineyard Pinot Noir (Walla Walla Valley (WA))
## 3259 Lagana 2013 Minnick Hills Vineyard Syrah (Walla Walla Valley (WA))
## 3260 Loft 2013 Merlot (Monterey)
## 3261 Matsu 2013 El Picaro (Toro)
## 3262 Nadler 2014 Grüner Veltliner (Carnuntum)
## 3263 :Nota Bene 2011 Ciel du Cheval Red (Red Mountain)
## 3264 Oyster Bay 2014 Sauvignon Blanc (Marlborough)
## 3265 Piot-Sévillano NV Tradition Brut (Champagne)
## 3266 Quai de la Lune 2014 Rosé (Bordeaux Rosé)
## 3267 Bodegas Berceo 2013 Viñadrian (Rioja)
## 3268 Cennatoio 2011 O'Leandro Riserva (Chianti Classico)
## 3269 Château Buisson-Redon 2014 Bordeaux Blanc
## 3270 St. Supéry 2014 Estate Grown Moscato (Napa Valley)
## 3271 Clos de Gamot 2002 Cuvée des Vignes Centenaires Malbec (Cahors)
## 3272 Companhia das Quintas 2007 Prova Régia Arinto (Bucelas)
## 3273 Cusumano 2007 Cubìa Insolia (Sicilia)
## 3274 DFJ Vinhos 2007 Casa do Lago Rosé Touriga Nacional (Estremadura)
## 3275 Tasca d'Almerita 2006 Lamùri Nero d'Avola (Sicilia)
## 3276 Tenuta delle Terre Nere 2007 Etna
## 3277 Tolosa 2007 Edna Ranch Rosé (Edna Valley)
## 3278 Turkey Flat 2005 The Turk Shiraz-Grenache-Cabernet-Mourvèdre Red (Barossa Valley)
## 3279 J. Portugal Ramos 2007 Marquês de Borba Red (Alentejo)
## 3280 J Vineyards & Winery 2006 Pinot Noir (Russian River Valley)
## 3281 J. Wilkes 2006 Bien Nacido Vineyard Hillside Pinot Noir (Santa Barbara County)
## 3282 La Posta 2006 Cocina Blend Red (Mendoza)
## 3283 Leone de Castris 2005 Maiana Rosso Red (Salice Salentino)
## 3284 Mastroberardino 2007 Greco di Tufo
## 3285 Melipal 2006 Reserve Malbec (Mendoza)
## 3286 Morrison Lane 2005 Syrah (Walla Walla Valley (WA))
## 3287 Morrison Lane 2006 Viognier (Walla Walla Valley (WA))
## 3288 Fazio 2005 Torre dei Venti Nero d'Avola (Sicilia)
## 3289 Gemtree 2006 Uncut Shiraz (McLaren Vale)
## 3290 Adamant Cellars 2006 Spofford Station Vineyard Syrah (Walla Walla Valley (WA))
## 3291 Alberto Longo 2007 Le Fossette Falanghina (Puglia)
## 3292 X 2006 ES Vineyard Sauvignon Blanc (Lake County)
## 3293 Godwin 2005 Floral Clone Chardonnay (Russian River Valley)
## 3294 Hagafen 2006 Ripken Vineyard Roussanne (Lodi)
## 3295 Herdade da Malhadinha Nova 2006 Monte da Peceguina Red (Alentejano)
## 3296 Bucklin 2005 Old Hill Ranch Zinfandel (Sonoma Valley)
## 3297 Corley 2004 Proprietary Red Wine Red (Oak Knoll District)
## 3298 DFJ Vinhos 2004 Tinta Roriz and Merlot Red (Estremadura)
## 3299 DFJ Vinhos 2006 Monte Alentejano White (Alentejano)
## 3300 El Nido 2003 Clio Monastrell-Cabernet Sauvignon Red (Jumilla)
## 3301 Backsberg 2005 Pinotage (Coastal Region)
## 3302 Bonny Doon 2005 Le Cigar Blanc White (California)
## 3303 Codorníu NV Brut Rosé Pinot Noir (Cava)
## 3304 Conte Collalto NV Extra Dry (Prosecco di Conegliano e Valdobbiadene)
## 3305 Schug 2006 Pinot Noir (Sonoma Coast)
## 3306 St. Clement 2004 Star Vineyard Cabernet Sauvignon (Rutherford)
## 3307 Arbios 2003 Cabernet Sauvignon (Alexander Valley)
## 3308 Adami NV Vigneto Giardino Dry (Prosecco di Valdobbiadene)
## 3309 Alentex 2006 Antão Vaz-Arinto White (Alentejo)
## 3310 Bortolomiol 2005 Brut Millesimato Motus Vitae (Prosecco di Valdobbiadene)
## 3311 Bortolotti NV Brut (Prosecco di Valdobbiadene)
## 3312 Castle 2005 Sangiacomo Vineyards Pinot Noir (Carneros)
## 3313 Codorníu NV Reserva Raventós Brut Sparkling (Cava)
## 3314 Ortman Family 2008 Turner Vineyard Pinot Noir (Sta. Rita Hills)
## 3315 Recanati 2009 Yasmin Kosher Red Red (Galilee)
## 3316 Tenuta di Vignole 2007 Chianti Classico
## 3317 Two Vintners 2007 Lola Red Red (Columbia Valley (WA))
## 3318 X 2009 Truchard Vineyard Pinot Noir (Carneros)
## 3319 Albet I Noya 2009 Petit Albet White (Penedès)
## 3320 Avignonesi 2008 Rosso di Montepulciano
## 3321 Binyamina 2009 Reserve Unoaked Kosher Chardonnay (Judean Hills)
## 3322 Valserrano 2004 Rioja
## 3323 Mt. Beautiful 2009 Sauvignon Blanc (Canterbury)
## 3324 Poggio Nardone 2008 Morellino di Scansano
## 3325 Château Ramafort 2008 Médoc
## 3326 Mana 2008 Pinot Noir (Marlborough)
## 3327 Drew 2009 Morning Dew Vineyard Pinot Noir (Anderson Valley)
## 3328 Giuliano Tiberi 2007 Le Vespe Sangiovese (Toscana)
## 3329 Greater Purpose NV White Label Red (Dry Creek Valley)
## 3330 Reina de Castilla 2009 Isabelino Verdejo-Viura (Rueda)
## 3331 Rocca delle Macìe 2007 Chianti Classico
## 3332 Joseph Drouhin 2012 Pouilly-Fuissé
## 3333 Vino Vargas 2013 Olé Chardonnay (Central Coast)
## 3334 Demessey 2012 Château de Messey Les Crets (Mâcon-Chardonnay)
## 3335 Four Degrees of Riesling 2012 0 Degree Dry Riesling (Seneca Lake)
## 3336 Joseph Drouhin 2011 Chorey-lès-Beaune
## 3337 Knapp 2013 Dry Rosé (Finger Lakes)
## 3338 Armosa 2008 Curma Nero d'Avola (Sicilia)
## 3339 Fulkerson 2012 William Vigne Grüner Veltliner (Seneca Lake)
## 3340 Stomping Ground 2012 Chardonnay (California)
## 3341 L. Tramier & Fils 2012 Linteau Red (Côtes du Rhône)
## 3342 Lo Nuevo 2012 Covello Albariño (Rías Baixas)
## 3343 Pierre André 2011 Ladoix
## 3344 Suvla 2012 Kinali Yapincak (Thrace)
## 3345 Swedish Hill 2012 Reserve Chardonnay (Finger Lakes)
## 3346 Chanson Père et Fils 2012 Viré-Clessé
## 3347 Coto de Hayas 2013 Chardonnay (Campo de Borja)
## 3348 Demessey 2011 Les Hâtes (Santenay)
## 3349 Jean-Marie Challand 2012 Vieilles Vignes (Viré-Clessé)
## 3350 Domaine Sophie Cinier 2012 Mâcon-Fuissé
## 3351 Fazeli Cellars 2009 Khayyam Cabernet Sauvignon (Temecula Valley)
## 3352 Four Degrees of Riesling 2012 2nd Degree Medium Sweet Riesling (Finger Lakes)
## 3353 Pierre André 2012 Saint-Véran
## 3354 Jean-Marie Challand 2012 Les Tilles (Mâcon-Villages)
## 3355 Joseph Burrier 2012 Château de Beauregard (Saint-Véran)
## 3356 King's Garden Vineyards 2010 Cabernet Franc (Finger Lakes)
## 3357 Laird 2011 Jillian's Blend Red (Napa Valley)
## 3358 McGregor 2010 Reserve Cabernet Sauvignon (Finger Lakes)
## 3359 Bodegas Valdemar 2010 Conde de Valdemar Old Vines (Rioja)
## 3360 Protos 2011 Reserva (Ribera del Duero)
## 3361 Schloss Vollrads 2015 Spätlese Riesling (Rheingau)
## 3362 Sojourn 2013 Cabernet Sauvignon (Oakville)
## 3363 Stag's Leap Wine Cellars 2013 Cask 23 Estate Cabernet Sauvignon (Napa Valley)
## 3364 Thorn Clarke 2014 Eden Trail Riesling (Eden Valley)
## 3365 Aratás 2011 Shake Ridge Ranch Petite Sirah (Amador County)
## 3366 Santos & Seixo 2013 Santos da Casa Grande Reserva Red (Douro)
## 3367 Spicy Vines 2014 Joie de Vivre Chardonnay (Mendocino Ridge)
## 3368 Terra d'Oro 2014 Teroldego (Amador County)
## 3369 The Eyrie Vineyards 2015 Original Vines Pinot Gris (Dundee Hills)
## 3370 Tongue Dancer 2014 Putnam Vineyard Pinot de Ville Pinot Noir (Sonoma Coast)
## 3371 Uvaggio 2015 Secco Moscato (Lodi)
## 3372 WillaKenzie Estate 2014 Triple Black Slopes Pinot Noir
## 3373 WillaKenzie Estate 2015 Estate Grown Pinot Blanc
## 3374 William Harrison 2014 Sangiacomo Family Vineyards Chardonnay (Carneros)
## 3375 Yohan Lardy 2015 Le Vivier (Fleurie)
## 3376 Avennia 2014 Arnaut Boushey Vineyard Syrah (Yakima Valley)
## 3377 Bella 2013 Big River Ranch Vineyard Series Zinfandel (Alexander Valley)
## 3378 Brian Carter Cellars 2012 Solesce Red (Columbia Valley (WA))
## 3379 Bulas 2010 Grande Reserva Red (Douro)
## 3380 Cadaretta 2013 Syrah (Columbia Valley (WA))
## 3381 Raptor Ridge 2015 Pinot Gris (Willamette Valley)
## 3382 Dr. Heidemanns-Bergweiler 2015 Bernkasteler Badstube Auslese Riesling (Mosel)
## 3383 Dr. Loosen 2012 Ürziger Würzgarten GG Réserve Alte Reben Erste Lage Dry Riesling (Mosel)
## 3384 Meyer Family Cellars 2012 Petite Sirah (Yorkville Highlands)
## 3385 Ovum 2015 Memorista Tradition Riesling (Eola-Amity Hills)
## 3386 Perelada 2012 Finca Malaveïna Red (Empordà)
## 3387 Proper 2014 Estate Syrah (Walla Walla Valley (WA))
## 3388 Quinta da Zaralhôa 2008 Reserva Red (Douro)
## 3389 Ramos-Pinto 2014 Duas Quintas Reserva Red (Douro)
## 3390 Wyncroft 2013 Wren Song Riesling (Lake Michigan Shore)
## 3391 Vicente Gandia 2014 Hoya de Cadenas Organic Verdejo (Spain)
## 3392 Casa Montes 2014 Ampakama Chardonnay (San Juan)
## 3393 Albet I Noya 2014 XA Xarel-lo (Penedès)
## 3394 Gustafson Family 2012 Mountain Cuvée Estate Zinfandel (Dry Creek Valley)
## 3395 JAQK Cellars 2013 High Roller Pinot Noir (Sonoma Coast)
## 3396 Gracianna 2014 Suzanne's Blend Chardonnay (Russian River Valley)
## 3397 Angulo Innocenti 2013 Cabernet Sauvignon (La Consulta)
## 3398 Cable Car 2013 Cabernet Sauvignon (Lodi)
## 3399 Michael-Scott 2013 Zinfandel (Napa County-Sonoma County)
## 3400 Luis Segundo Correas 2013 Valle Las Acequias Cabernet Sauvignon (Mendoza)
## 3401 Parras Vinhos 2014 Montaria Tinto Red (Alentejano)
## 3402 Quinta do Casal Branco 2014 Quartilho Branco White (Tejo)
## 3403 Quinta do Casal Monteiro 2015 White (Tejo)
## 3404 Schmidt 2012 Pinot Noir (Applegate Valley)
## 3405 Three Fires 2013 Unoaked Chardonnay (Lake Michigan Shore)
## 3406 Verterra 2014 Dry Gewurztraminer (Leelanau Peninsula)
## 3407 Wine with Spirit 2013 Bastardo! Black Edition Tinto Red (Tejo)
## 3408 Wine with Spirit 2014 Seafood & Co White (Vinho Verde)
## 3409 Finca Salazar 2014 Sauvignon Blanc (Vino de la Tierra de Castilla)
## 3410 Buena Vista 2013 Private Reserve Zinfandel (Sonoma County)
## 3411 Pazo de Barrantes 2012 La Comtesse Albariño (Rías Baixas)
## 3412 Cooperativa Reguengos de Monsaraz 2014 Monsaraz Branco White (Alentejo)
## 3413 Armanino Family Cellars 2013 The Pintail Pinot Noir (Napa Valley)
## 3414 Parras Vinhos 2014 Castelo do Sulco Colheita White (Lisboa)
## 3415 Lechthaler 2014 Drago Pinot Grigio (Trentino)
## 3416 Coast 2013 Chardonnay (California)
## 3417 Pagos del Rey 2014 Altos de Tamaron (Ribera del Duero)
## 3418 Pat Paulsen Vineyards 2013 England-Shaw Vienyard Syrah (Solano County)
## 3419 Mossback 2013 Pinot Noir (Russian River Valley)
## 3420 Peachy Canyon 2012 Especial Zinfandel (Paso Robles)
## 3421 Quinta de Porrais 2012 Porrais Red (Douro)
## 3422 Quintas de Melgaço 2014 QM Terra Antiga White (Vinho Verde)
## 3423 Tricky Rabbit 2012 Reserva Cabernet Franc-Carmenère (Maule Valley)
## 3424 Bradford Mountain 2012 Grist Vineyard Syrah (Dry Creek Valley)
## 3425 Consilience 2012 Petite Sirah (Santa Barbara County)
## 3426 Domaine de la Pepière 2009 Cuvée 3 (Muscadet Sèvre et Maine)
## 3427 Falua 2013 Tagus Creek Tinto Red (Alentejano)
## 3428 Quinta da Rede 2013 Rede Branco White (Douro)
## 3429 Reustle 2013 Winemaker's Reserve Pinot Noir (Umpqua Valley)
## 3430 Silverado 2011 Estate Grown Mt. George Vineyard Merlot (Napa Valley)
## 3431 Stag's Leap Wine Cellars 2013 Aveta Sauvignon Blanc (Napa Valley)
## 3432 Yohan Lardy 2015 Les Michelons (Moulin-à-Vent)
## 3433 Analemma 2014 Atavus Vineyard Gewürztraminer (Columbia Gorge (WA))
## 3434 Argyle 2014 Nuthouse Pinot Noir (Eola-Amity Hills)
## 3435 Chopo 2014 Monastrell-Syrah (Jumilla)
## 3436 Meyer Family Cellars 2013 Syrah (Yorkville Highlands)
## 3437 Milbrandt 2012 Vineyard Series Clifton Vineyards Grenache (Wahluke Slope)
## 3438 MooBuzz 2015 G-S-M (Central Coast)
## 3439 Opolo 2012 Reserve Cabernet Sauvignon (Paso Robles)
## 3440 Palma Real 2015 Verdejo-Viura (Rueda)
## 3441 Parras Wines 2015 Evidência Red (Dão)
## 3442 Proulx 2014 The Wah Syrah (Paso Robles)
## 3443 Quinta do Vale Meão 2014 Meandro do Vale Meão Red (Douro)
## 3444 Quinta Dona Matilde 2013 Dona Matilde Reserva Red (Douro)
## 3445 Quinta dos Poços 2013 Reserva Red (Douro)
## 3446 Robert Mondavi 2014 Reserve Pinot Noir (Carneros)
## 3447 Roco 2014 Gravel Road Pinot Noir (Willamette Valley)
## 3448 Tenuta Duecorti 2012 Castelletto (Barolo)
## 3449 Podere ai Valloni 2014 Gratus Bio Red (Colline Novaresi)
## 3450 Jamieson Ranch 2014 Whiplash Malbec (California)
## 3451 Leaping Lizard 2014 Merlot (California)
## 3452 Wirra Wirra 2015 Scrubby Rise White (Adelaide)
## 3453 Zolo 2015 Sustainably Farmed Estate Grown and Bottled Cabernet Sauvignon (Mendoza)
## 3454 Greystone Cellars 2014 Petite Sirah (California)
## 3455 Hill-Smith Estate 2014 Chardonnay (Adelaide Hills)
## 3456 Balletto 2015 Estate Grown Sauvignon Blanc (Russian River Valley)
## 3457 Cadus 2014 Cabernet Sauvignon (Agrelo)
## 3458 Cadus 2014 Gualtallary Malbec (Mendoza)
## 3459 Casto Oaks 2014 Syrah (Sierra Foothills)
## 3460 Riposte 2015 The Dagger Pinot Noir (Adelaide Hills)
## 3461 Spann Vineyards 2015 Betsy's Backacher White (California)
## 3462 Siduri 2008 Pinot Noir (Chehalem Mountains)
## 3463 Thema 2006 Red (Drama)
## 3464 Moletto 2001 Colmello Rosso Red (Veneto Orientale)
## 3465 Domaine de Gournier 2008 Viognier (Vin de Pays des Cévennes)
## 3466 Fratelli Berlucchi 2005 Brut Rosé Millesimato Sparkling (Franciacorta)
## 3467 Hahn Estates 2007 Cabernet Sauvignon (Central Coast)
## 3468 Herdade da Malhadinha Nova 2008 Monte da Peceguina Tinto Red (Alentejano)
## 3469 Hunt Cellars 2004 Maestro Red (Paso Robles)
## 3470 Kings Mountain 2006 Meritage (Santa Cruz Mountains)
## 3471 Vinchio-Vaglio Serra 2003 Cantina Tre Serre (Barbaresco)
## 3472 Marqués de Vargas 2005 Reserva Privada (Rioja)
## 3473 Marrenon 2008 Grand Cuvée White (Luberon)
## 3474 Real Companhia Velha 2007 Porca de Murça Tinto Red (Douro)
## 3475 Recanati 2006 Reserve Kosher Merlot (Ella Valley)
## 3476 Bishop Creek Cellars 2007 Whole Cluster Reserve Pinot Noir
## 3477 Château Couhins-Lurton 2007 Pessac-Léognan
## 3478 Château Fonréaud 2007 Listrac-Médoc
## 3479 Château Lieujean 2007 Haut-Médoc
## 3480 Château Lynch-Moussas 2007 Pauillac
## 3481 Château Vray Croix de Gay 2007 Pomerol
## 3482 Churchill's 2007 Churchill Estates Touriga Nacional (Douro)
## 3483 Jean Albrecht 2010 Pinot Gris (Alsace)
## 3484 La Cave des Vignerons de Pfaffenheim 2009 Pinot Blanc (Alsace)
## 3485 Lakewood 2009 Dry Riesling (Finger Lakes)
## 3486 Left Coast Cellars 2008 Suzanne's Estate Reserve Pinot Noir (Willamette Valley)
## 3487 Lucien Albrecht 2009 Cuvée Marie Gewurztraminer (Alsace)
## 3488 Ravines 2008 Chardonnay (Finger Lakes)
## 3489 Monte del Frá 2008 Tenuta Lena di Mezzo (Valpolicella Classico Superiore Ripasso)
## 3490 Naggiar 2009 Estate Sangiovese (Sierra Foothills)
## 3491 Novaia 2008 Valpolicella Classico Superiore Ripasso
## 3492 Parkers Estate 2010 Blue Ash Road Chardonnay (Sonoma County)
## 3493 Santa Ema 2009 Reserve Barrel Select Carmenère (Cachapoal Valley)
## 3494 Sparkling Pointe 2007 Topaz Imperial Sparkling (North Fork of Long Island)
## 3495 Vaona 2007 Paverno (Amarone della Valpolicella Classico)
## 3496 Dr. Loosen 2009 Ürziger Würzgarten Alte Reben GG Trocken Riesling (Mosel)
## 3497 Echeverria 2009 Reserva Syrah (Maipo Valley)
## 3498 Emile Beyer 2009 Tradition Gewurztraminer (Alsace)
## 3499 Giuseppe Lonardi 2007 Amarone della Valpolicella Classico
## 3500 Heron Hill 2009 Unoaked Ingle Vineyard Chardonnay (Finger Lakes)
## 3501 Korbel NV Sweet Cuvée Sparkling (California)
## 3502 Lété-Vautrain NV Brut Royal Rosé (Champagne)
## 3503 Lone Birch 2015 Cabernet Sauvignon (Yakima Valley)
## 3504 Montevina 2014 Cracked Earth Red (California)
## 3505 Nicora 2014 Euphoric La Vista Vineyard Grenache (Adelaida District)
## 3506 Ocelli 2012 Grenache (Columbia Valley (WA))
## 3507 One Iron 2012 Meritage (Napa Valley)
## 3508 Owl Ridge 2012 Tyto Red (Alexander Valley)
## 3509 Eola Hills 2015 Pinot Noir (Oregon)
## 3510 Fattoria La Vialla 2014 Riserva (Vernaccia di San Gimignano)
## 3511 Ferrocinto 2015 Pollino Magliocco (Calabria)
## 3512 Gersing 2015 Madrona Hill Vineyard Pinot Noir (Chehalem Mountains)
## 3513 Guicciardini Strozzi 2015 Principe Strozzi (Vernaccia di San Gimignano)
## 3514 Hunnicutt 2014 Luvisi Vineyard Zinfandel (Napa Valley)
## 3515 Acacia 2014 Lone Tree Vineyard Estate Grown Pinot Noir (Carneros)
## 3516 Angel Vine 2013 Stonetree Vineyard Zinfandel (Columbia Valley (WA))
## 3517 Baron-Fuenté NV Grande Réserve Brut (Champagne)
## 3518 Beaulieu Vineyard 2014 Maestro Collection Ranch No. 5 Pinot Noir (Carneros)
## 3519 Bodegas Carballal 2015 Floreano e Punto Albariño (Rías Baixas)
## 3520 Brimoncourt NV Brut Régence (Champagne)
## 3521 Casa Nuestra 2013 Tinto Red (St. Helena)
## 3522 Cass 2013 Malbec (Paso Robles)
## 3523 Cass 2015 Oasis Rosé (Paso Robles)
## 3524 Celli 2013 Bron& Ruseval Riserva Sangiovese (Romagna)
## 3525 Collet NV Blanc de Blancs Brut Chardonnay (Champagne)
## 3526 Collet NV Brut Art Déco (Champagne)
## 3527 D'Aione 2010 Taurasi
## 3528 D'Angelo 2014 Aglianico del Vulture
## 3529 Dark Horse NV Big Red Blend No 33-1 Red (California)
## 3530 Schlink Haus 2015 Made With Organic Grapes Riesling (Rheinhessen)
## 3531 Poderi Luigi Einaudi 2009 Costa Grimaldi (Barolo)
## 3532 Schloss Gobelsburg 2011 Auslese Riesling (Niederösterreich)
## 3533 Vasse Felix 2009 Cabernet Sauvignon (Margaret River)
## 3534 Woodinville Wine Cellars 2012 Sauvignon Blanc (Columbia Valley (WA))
## 3535 D'Arenberg 2009 The Coppermine Road Cabernet Sauvignon (McLaren Vale)
## 3536 Freeman 2011 Ryo-Fu Chardonnay (Russian River Valley)
## 3537 Glatzer 2011 Rubin Carnuntum Zweigelt (Carnuntum)
## 3538 Château Lamothe-Cissac 2011 Vieilles Vignes (Haut-Médoc)
## 3539 Domäne Wachau 2012 Terrassen Smaragd Riesling (Wachau)
## 3540 Giuseppe Rinaldi 2009 Brunate Le Coste (Barolo)
## 3541 Nada Giuseppe 2010 Casot (Barbaresco)
## 3542 Negro Angelo e Figli 2010 Cascinotta (Barbaresco)
## 3543 Januik 2010 Champoux Vineyard Cabernet Sauvignon (Horse Heaven Hills)
## 3544 L'Ecole No. 41 2010 Cabernet Sauvignon (Columbia Valley (WA))
## 3545 Brezza 2009 Bricco Sarmassa (Barolo)
## 3546 Bella 2010 Block 10 Zinfandel (Russian River Valley)
## 3547 Benovia 2010 Bella Una Pinot Noir (Russian River Valley)
## 3548 Frankland Estate 2012 Isolation Ridge Vineyard Riesling (Frankland River)
## 3549 Guido Porro 2009 Vigna Lazzairasco (Barolo)
## 3550 Joseph Swan Vineyards 2011 Kent the Younger Chardonnay (Russian River Valley)
## 3551 Manfred Tement 2010 Zieregg Grosse Lage Sauvignon Blanc (Südoststeiermark)
## 3552 Convergence Zone 2012 Bacchus Vineyard Dewpoint Riesling (Columbia Valley (WA))
## 3553 Dr. Heidemanns-Bergweiler 2011 Graacher Himmelreich Spätlese Riesling (Mosel)
## 3554 Freeman 2011 Pinot Noir (Russian River Valley)
## 3555 Thorn Clarke 2010 William Randell Shiraz (Barossa)
## 3556 Schloss Gobelsburg 2012 Steinsetz Reserve Grüner Veltliner (Kamptal)
## 3557 Walla Walla Vintners 2010 Sagemoor Vineyard Malbec (Columbia Valley (WA))
## 3558 Kollwentz 2009 Leithagebirge Blaufränkisch (Burgenland)
## 3559 L'Ecole No. 41 2010 Cabernet Sauvignon (Walla Walla Valley (WA))
## 3560 Château de Sancerre 2015 Sancerre
## 3561 Chateau Dereszla 2015 Dry (Tokaji)
## 3562 Chehalem 2015 Ridgecrest Vineyards Gamay Noir (Ribbon Ridge)
## 3563 Clos La Chance 2013 Reserve Grenache (Central Coast)
## 3564 Colosi 2016 Nero d'Avola (Terre Siciliane)
## 3565 Curto 2014 Nero d'Avola (Eloro)
## 3566 Delaforce 2011 Late Bottled Vintage (Port)
## 3567 Domaine de l'Hermitage 2015 Première Lune (Menetou-Salon)
## 3568 Domaine de Rome 2015 Sancerre
## 3569 Santos & Seixo 2015 Santos da Casa Reserva Sem Barrica Unoaked Red (Alentejano)
## 3570 St. Christopher 2016 Piesporter Goldtröpfchen Spätlese Riesling (Mosel)
## 3571 Tasca d'Almerita 2015 Lamùri Nero d'Avola (Sicilia)
## 3572 Viña Cobos 2016 Felino Chardonnay (Mendoza)
## 3573 Walnut City WineWorks 2014 Carlton Hill Vineyard Pinot Noir
## 3574 Lamadrid 2016 Single Vineyard Bonarda (Agrelo)
## 3575 Magnum Vinhos 2015 Ribeiro Santo Red (Dão)
## 3576 Domaine Philippe Gilbert 2015 Menetou-Salon
## 3577 Domaines Vinsmoselle NV Pinot Luxembourg White (Moselle Luxembourgeoise)
## 3578 Falkner 2014 Cabernet Sauvignon (Temecula Valley)
## 3579 Fullerton 2015 Five Faces Pinot Noir (Willamette Valley)
## 3580 Humberto Canale 2014 Gran Reserva Malbec (Patagonia)
## 3581 Amalie Robert 2012 The Uncarved Block Pinot Noir (Willamette Valley)
## 3582 Au Jus 2015 Chardonnay (Monterey County)
## 3583 Authentique 2014 Keeler Estate Vineyard Pinot Noir (Eola-Amity Hills)
## 3584 Bastgen 2015 Kestener Paulinsberg Kabinett Riesling (Mosel)
## 3585 Blue Valley 2015 Sauvignon Blanc (Middleburg)
## 3586 Caves Transmontanas 2014 Vertice Grande Reserva Branco White (Douro)
## 3587 Ceuso 2012 Red (Terre Siciliane)
## 3588 Château de Parnay 2014 Le Clos du Château de Parnay (Saumur-Champigny)
## 3589 Dalton 2014 Estate Shiraz (Galilee)
## 3590 Vignavecchia 2008 Chianti Classico
## 3591 Vignobles Jeanjean 2010 Mas Fenouillet Rosé (Faugères)
## 3592 Château le Pape 2007 Pessac-Léognan
## 3593 Château Tour Rozier 2007 Fronsac
## 3594 Coquerel Family Wine Estates 2009 Merlot (Calistoga)
## 3595 De Bortoli NV Emeri Moscato Sparkling (South Eastern Australia)
## 3596 De Bortoli NV Emeri Pink Moscato Sparkling (South Eastern Australia)
## 3597 Domaine Ste. Michelle NV Brut Sparkling (Columbia Valley (WA))
## 3598 Domaines Barons de Rothschild (Lafite) 2010 Sélection Prestige (Bordeaux Blanc)
## 3599 Henry's Drive Vignerons NV The Scarlet Letter Sparkling Shiraz (Padthaway)
## 3600 James Family Cellars 2010 Chardonnay (Sonoma Coast)
## 3601 Jamesport 2007 Sarah's Hill Pinot Noir (North Fork of Long Island)
## 3602 Kokomo 2009 Zinfandel (Dry Creek Valley)
## 3603 La Croix de Renaud 2009 Bordeaux
## 3604 Le Mas de Bertrand 2008 Le Cinq Montpeyroux Red (Coteaux du Languedoc)
## 3605 Mercer 2008 Spice Cabinet Vineyard Malbec (Horse Heaven Hills)
## 3606 Mulini di Segalari 2009 Ai Confini del Bosco (Bolgheri)
## 3607 Real Companhia Velha 2010 Evel Branco White (Douro)
## 3608 Riverbench 2009 Estate Pinot Noir (Santa Maria Valley)
## 3609 Rock Hollow 2010 Vintner's Selection Sauvignon Blanc (Santa Barbara County)
## 3610 Thurston Wolfe 2008 Petite Sirah (Horse Heaven Hills)
## 3611 Viu Manent 2010 Secreto Carmenère (Colchagua Valley)
## 3612 Zina Hyde Cunningham 2010 Sauvignon Blanc (Russian River Valley)
## 3613 Quinta do Cavalinho 2009 Templários Colheita Seleccionada Touriga Nacional (Tejo)
## 3614 San Pedro 2009 Castillo de Molina Reserva Cabernet Sauvignon (Central Valley)
## 3615 Sembro 2009 Vendimia Seleccionada (Ribera del Duero)
## 3616 Sieur d'Arques 2007 Toques et Clochers Brut Sparkling (Crémant de Limoux)
## 3617 Terra d'Alter 2009 Tinto Red (Alentejano)
## 3618 Treleaven 2009 Reserve Barrel Fermented Chardonnay (Cayuga Lake)
## 3619 Clayhouse 2009 Red Cedar Vineyard Malbec (Paso Robles)
## 3620 Viña Chocalan 2010 Selección Sauvignon Blanc (Maipo Valley)
## 3621 François Lurton 2011 Hacienda Araucano Reserva Pinot Noir (Central Valley)
## 3622 Casca Wines 2009 Monte Cascas Reserva Branco White (Minho)
## 3623 Anatomy 2009 Cabernet Sauvignon (Napa Valley)
## 3624 Waterstone 2008 Merlot (Napa Valley)
## 3625 Bianchi 2009 Signature Selection Cabernet Sauvignon (Paso Robles)
## 3626 Willowbrook 2010 Altes Vineyard Syrah (Sonoma County)
## 3627 Hesperian 2007 Cabernet Sauvignon (Napa Valley)
## 3628 Montes 2010 Cherub Rosé of Syrah Rosé (Colchagua Valley)
## 3629 Stickybeak 2010 Pinot Noir (Sonoma Coast)
## 3630 3Fools 2009 Del Rio Red Red (Oregon)
## 3631 Amayna 2011 Sauvignon Blanc (Leyda Valley)
## 3632 Arauco 2011 Cabernet Sauvignon (Central Valley)
## 3633 Castoro Cellars 2010 Zinfusion Reserve Zinfandel (Paso Robles)
## 3634 Chessman 2010 Cabernet Sauvignon (Paso Robles)
## 3635 YN NV Red (California)
## 3636 Cousiño-Macul 2010 Sauvignon Gris (Maipo Valley)
## 3637 Cerro Prieto 2008 Reserve Merlot (Paso Robles)
## 3638 Oveja Negra 2011 Reserva Cabernet Sauvignon-Syrah Rosé (Maule Valley)
## 3639 Melrose 2010 Pinot Noir (Umpqua Valley)
## 3640 Arauco 2011 Carmenère (Central Valley)
## 3641 Viniverde 2011 Estreia Rosé (Vinho Verde)
## 3642 Cuevas del Sur 2010 Reserve Chardonnay (Maule Valley)
## 3643 Château Pontet-Canet 2011 Barrel Sample (Pauillac)
## 3644 Château Lafite Rothschild 2011 Barrel Sample (Pauillac)
## 3645 Château Pape Clément 2011 Barrel Sample (Pessac-Léognan)
## 3646 Lamborghini 2005 Campoleone Red (Umbria)
## 3647 Emmerich Knoll 2006 Ried Schütt Smaragd Riesling (Wachau)
## 3648 Rudi Pichler 2006 Wösendorfer Kirchweg Smaragd Riesling (Wachau)
## 3649 Ojai 2006 Solomon Hills Special Bottling Two Barrels Made Chardonnay (Santa Maria Valley)
## 3650 Walla Walla Vintners 2005 Sagemoor Vineyard Cabernet Sauvignon (Columbia Valley (WA))
## 3651 Chalk Hill 2006 Estate Bottled Sauvignon Blanc (Chalk Hill)
## 3652 Ojai 2004 Thompson Vineyard Syrah (Santa Barbara County)
## 3653 F X Pichler 2006 Dürnsteiner Kellerberg Reserve Grüner Veltliner (Wachau)
## 3654 Forefathers 2004 Cabernet Sauvignon (Alexander Valley)
## 3655 Andrew Will 2005 Ciel du Cheval Vineyard Red Wine Red (Red Mountain)
## 3656 Bridlewood 2004 Estate Syrah (Santa Ynez Valley)
## 3657 F X Pichler 2006 Dürnsteiner Kellerberg Smaragd Grüner Veltliner (Wachau)
## 3658 Felipe Rutini 2004 Apartado Red (Mendoza)
## 3659 Prix 2004 Reserve Melange Red (Napa Valley)
## 3660 Soos Creek 2005 Champoux Vineyard Red Wine Red (Horse Heaven Hills)
## 3661 Parry Cellars 2004 Cabernet Sauvignon (St. Helena)
## 3662 Pepper Bridge 2004 Cabernet Sauvignon (Columbia Valley (WA))
## 3663 Smith-Madrone 2006 Chardonnay (Spring Mountain District)
## 3664 Rancho Sisquoc 2007 Flood Family Vineyards Merlot (Santa Barbara County)
## 3665 Righteous 2008 Righteous Tempranillo (Walla Walla Valley (WA))
## 3666 Crossbarn by Paul Hobbs 2009 Chardonnay (Sonoma Coast)
## 3667 Espiritu de Chile 2007 Gran Reserva Carmenère (Curicó Valley)
## 3668 Frenzy 2008 Sauvignon Blanc (Marlborough)
## 3669 Happy Canyon Vineyard 2009 Chukker Red (Happy Canyon of Santa Barbara)
## 3670 181 2008 Merlot (Lodi)
## 3671 Phantom Rivers 2007 Paso del Sol Red (Central Coast)
## 3672 Provence Rosé 2009 Rosé (Côtes de Provence)
## 3673 Redtree 2009 Moscato (California)
## 3674 Santa Ema 2008 Selected Terroir Cabernet Sauvignon (Maipo Valley)
## 3675 Shiloh Road 2008 Chardonnay (North Coast)
## 3676 Vinchio-Vaglio Serra 2008 Cantina Tre Serre Barbera (Piedmont)
## 3677 Yvon Mau 2009 Seigneurs de Bergerac Blanc White (Bergerac Sec)
## 3678 Longevity 2009 Viognier (Lodi)
## 3679 Lucky Star 2009 Pinot Noir (California)
## 3680 Jacob's Creek 2009 Pinot Grigio (South Eastern Australia)
## 3681 La Vierge 2008 Temptation The Affair Red (Walker Bay)
## 3682 Luis Felipe Edwards 2009 Reserva Chardonnay (Colchagua Valley)
## 3683 MAN Vintners 2009 Sauvignon Blanc (Western Cape)
## 3684 Nederburg 2009 Manor House Sauvignon Blanc (Western Cape)
## 3685 Robertson Winery 2009 Sauvignon Blanc (Robertson)
## 3686 Seresin 2009 Momo Sauvignon Blanc (Marlborough)
## 3687 Chasseur 2012 Pinot Noir (Sonoma Coast)
## 3688 Ruinart NV Brut Rosé (Champagne)
## 3689 Small Vines 2012 Baranoff Vineyard Pinot Noir (Russian River Valley)
## 3690 Kopke NV 20-Years-Old Tawny (Port)
## 3691 La Chablisienne 2012 Vaillons Premier Cru (Chablis)
## 3692 Albert Morot 2012 Cent-Vignes Premier Cru (Beaune)
## 3693 Alto Moncayo 2010 Veraton Garnacha (Campo de Borja)
## 3694 Bailly-Lapierre 2011 Egarade (Crémant de Bourgogne)
## 3695 Ca' dei Zago 2012 Dosaggio Zero (Valdobbiadene Prosecco Superiore)
## 3696 Ca' del Bosco 2009 Vintage Collection Brut Sparkling (Franciacorta)
## 3697 Morgan 2012 Twelve Clones Pinot Noir (Santa Lucia Highlands)
## 3698 Pittacum 2010 Aurea Mencía (Bierzo)
## 3699 Tendil & Lombardi NV Blanc de Noirs Brut Pinot Noir (Champagne)
## 3700 Veuve Doussot 2006 Memory Brut (Champagne)
## 3701 Villa Erbice 2008 Tremenel (Amarone della Valpolicella)
## 3702 Clos de Chacras 2010 Gran Estirpe Red (Mendoza)
## 3703 Dr. H. Thanisch (Erben Thanisch) 2012 Berncasteler Doctor Auslese Riesling (Mosel)
## 3704 El Enemigo 2012 Cabernet Franc (Mendoza)
## 3705 Fog Crest 2012 Estate Bottled Pinot Noir (Russian River Valley)
## 3706 Fratelli Berlucchi 2010 Pas Dosé Vintage Sparkling (Franciacorta)
## 3707 Fritz Haag 2012 Brauneberger Juffer Trocken GG Riesling (Mosel)
## 3708 Evening Land 2012 Seven Springs Vineyard Chardonnay (Eola-Amity Hills)
## 3709 Evening Land 2012 Seven Springs Vineyard Pinot Noir (Eola-Amity Hills)
## 3710 Gancedo 2012 Mencía (Bierzo)
## 3711 Ramos-Pinto 2009 RPLBV Late Bottled Vintage (Port)
## 3712 Septima 2010 Gran Reserva Red (Mendoza)
## 3713 Curtis 2011 Heritage Blanc White (Santa Barbara County)
## 3714 Feudi di San Gregorio 2010 Rubrato Aglianico (Irpinia)
## 3715 Feudi di San Gregorio 2011 Greco di Tufo
## 3716 Grafen Neipperg 2007 Neipperger Schlossberg Spätburgunder (Württemberg)
## 3717 Huber 2009 Trocken Pinot Noir (Baden)
## 3718 Cantine di Marzo 2009 Aglianico (Irpinia)
## 3719 François Lurton 2009 El Albar Lurton Barricas Tempranillo (Vino de la Tierra de Castilla y León)
## 3720 Zaca Mesa 2010 Estate Grown and Bottled Grenache (Santa Ynez Valley)
## 3721 Pazo Serantellos 2011 Albariño (Rías Baixas)
## 3722 Pondera 2009 Cabernet Sauvignon (Columbia Valley (WA))
## 3723 Royal Oporto 2009 Vintage (Port)
## 3724 Novelty Hill 2011 Stillwater Creek Vineyard Roussanne (Columbia Valley (WA))
## 3725 Château Barde Haut 2008 Saint-Émilion
## 3726 Château Belgrave 2009 Diane de Belgrave (Haut-Médoc)
## 3727 Château Haut Bessac 2009 Bordeaux Supérieur
## 3728 Castelgiocondo 2014 Campo ai Sassi (Rosso di Montalcino)
## 3729 Castillo Rocio NV Gran Brut Sparkling (Cava)
## 3730 Château Gaillard 2015 Beaujolais-Villages
## 3731 Château Laurou 2015 Tradition Red (Fronton)
## 3732 Cuna del Sol 2014 Cabernet Sauvignon (Central Valley)
## 3733 HandCraft 2014 Artisan Collection Chardonnay (California)
## 3734 Jadix 2015 Picpoul de Pinet
## 3735 Joseph Cattin 2015 Gewurztraminer (Alsace)
## 3736 Domaine de Ménard 2015 White (Côtes de Gascogne)
## 3737 Domaine Sarragousse 2015 Rosé (Coteaux d'Aix-en-Provence)
## 3738 Dominio de la Vega NV Brut Nature Sparkling (Cava)
## 3739 Estate Biblia Chora 2015 White (Pangeon)
## 3740 Falua 2014 Tagus Creek Shiraz-Trincadeira Red (Alentejano)
## 3741 Fattoria dei Barbi 2014 Rosso di Montalcino
## 3742 Georges Duboeuf 2015 Château des Vierres (Beaujolais-Villages)
## 3743 Villa al Cortile 2014 Rosso di Montalcino
## 3744 Viña Requingua 2014 Puerto Viejo Estate Bottled Single Vineyard Reserve Cabernet Sauvignon (Curicó Valley)
## 3745 Poggio di Sotto 2013 Rosso di Montalcino
## 3746 Pomar Junction 2013 Merlot (Paso Robles)
## 3747 Purple Heart Wines 2013 Red (Napa Valley)
## 3748 Santa Luz 2014 Alba Cabernet Sauvignon (Central Valley)
## 3749 Domino 2013 Merlot (California)
## 3750 Château Nozières 2014 Malbec-Merlot (Cahors)
## 3751 Clayhouse 2014 Red Cedar Vineyard Cabernet Sauvignon (Paso Robles)
## 3752 Domaine de Leyre-Loup 2014 Morgon
## 3753 Domaine Delsol 2015 Picpoul de Pinet
## 3754 Domaine Fritz Schmitt 2015 Riesling (Alsace)
## 3755 El Coto 2015 Rosado (Rioja)
## 3756 Elqui Wines 2013 Limited Release Carmenère (Elqui Valley)
## 3757 Fattoria La Lecciaia 2014 Rosso di Montalcino
## 3758 Kunde 2011 Kinneybrook Merlot (Sonoma County)
## 3759 Domaine Sainte-Marie 2013 Paparazzi Rosé (Côtes de Provence)
## 3760 Don Miguel Gascón 2012 Colosal Red (Mendoza)
## 3761 Durigutti 2011 HD Reserva Malbec (Mendoza)
## 3762 Feudi del Pisciotto 2011 Alberta Ferretti Chardonnay (Sicilia)
## 3763 Four Degrees of Riesling 2012 3rd Degree Late Harvest Sweet Riesling (Seneca Lake)
## 3764 Grove Mill 2013 Sauvignon Blanc (Wairau Valley)
## 3765 Jones of Washington 2013 Riesling (Ancient Lakes)
## 3766 Leonard Oakes 2012 Reserve Series Sauvignon Blanc (New York)
## 3767 Long Meadow Ranch 2013 Sauvignon Blanc (Napa Valley)
## 3768 Marqués de Cáceres 2013 Rosé (Rioja)
## 3769 Mustilli 2012 Fiano (Sannio)
## 3770 Nativ 2013 Greco di Tufo
## 3771 Nickel & Nickel 2012 Truchard Vineyard Chardonnay (Carneros)
## 3772 Pierre Sparr NV Brut Réserve Sparkling (Crémant d'Alsace)
## 3773 Pollak 2010 Estate Grown Meritage (Monticello)
## 3774 Roadhouse Winery 2012 Orange Label Pinot Noir (Russian River Valley)
## 3775 Rutherford Hill 2012 Chardonnay (Napa Valley)
## 3776 Sojourn 2012 Gap's Crown Vineyard Pinot Noir (Sonoma Coast)
## 3777 Taverna 2010 Vigna Alta Il Lagarino di Dionisio Red (Basilicata)
## 3778 Three Fox 2012 Alouette Cabernet Franc (Middleburg)
## 3779 Molliver Vineyards NV Vidal Blanc (Virginia)
## 3780 Roanoke Vineyards 2011 The Wild Chardonnay (North Fork of Long Island)
## 3781 Bellwether 2012 A&D Vineyard Dry Riesling (Finger Lakes)
## 3782 Wairau River 2013 Sauvignon Blanc (Marlborough)
## 3783 Wild Meadows 2012 Cabernet Sauvignon (Columbia Valley (WA))
## 3784 Henri Schoenheitz 2012 Gewurztraminer (Alsace)
## 3785 Trump 2012 Rosé (Monticello)
## 3786 Cantina del Barone 2012 Particella 928 (Fiano di Avellino)
## 3787 Cantine Gulino 2012 Pretiosa Albanello (Terre Siciliane)
## 3788 Sheldon 2012 D'Alliard Vineyard Cabernet Sauvignon (Sonoma Valley)
## 3789 Sol Rouge 2011 Estate Zinfandel (Red Hills Lake County)
## 3790 Szigeti 2011 Edition Adele Blanc de Blancs Brut Sparkling (Österreichischer Sekt)
## 3791 Tre Nova 2009 Seccopassa Red (Columbia Valley (WA))
## 3792 V. Sattui 2012 Carsi Vineyard Chardonnay (Napa Valley)
## 3793 Poggio Antico 2012 Rosso di Montalcino
## 3794 14 Hands 2013 Riesling (Washington)
## 3795 Benmarl 2012 Cabernet Franc (Seneca Lake)
## 3796 Hightower 2011 Murray Syrah (Red Mountain)
## 3797 Il Grillesino 2010 Riserva (Morellino di Scansano)
## 3798 La Braccesca 2012 Sabazio (Rosso di Montepulciano)
## 3799 La Poderina 2012 Rosso di Montalcino
## 3800 Lambardi 2012 Rosso di Montalcino
## 3801 Macari 2013 Early Wine Chardonnay (North Fork of Long Island)
## 3802 Máscara de Feugo 2012 Cabernet Sauvignon (Central Valley)
## 3803 Mercer 2013 Riesling (Yakima Valley)
## 3804 Mercer Canyons 2013 Riesling (Yakima Valley)
## 3805 Molino di Sant'Antimo 2012 Paolus (Rosso di Montalcino)
## 3806 Mont-Ferrant 2008 Reserva Brut Sparkling (Cava)
## 3807 Noble Vines 2013 242 Sauvignon Blanc (Monterey)
## 3808 Avalon 2012 Cabernet Sauvignon (California)
## 3809 Baigorri 2007 Reserva (Rioja)
## 3810 Balduzzi 2012 Reserva Cabernet Sauvignon (Maule Valley)
## 3811 Bucher 2013 Chardonnay (Russian River Valley)
## 3812 Cave du Marmandais 2011 La Vieille Eglise Red (Côtes du Marmandais)
## 3813 Cedar View Winery 2013 Reserve Viognier (California)
## 3814 Château de Corcelles 2012 Beaujolais-Villages
## 3815 Château de Gaudou 2012 Renaissance Malbec (Cahors)
## 3816 Château d'Or et de Gueules 2012 Les Cimels Red (Costières de Nîmes)
## 3817 Château Tour des Gendres 2013 Cuvée des Conti White (Bergerac Sec)
## 3818 Montemercurio 2007 Damo (Vino Nobile di Montepulciano)
## 3819 Quinta das Bandeiras 2010 Passagem Reserva Red (Douro)
## 3820 Quinta do Pinto 2010 Touriga Nacional (Lisboa)
## 3821 Qupé 2010 Bien Nacido Reserve Block Eleven Chardonnay (Santa Maria Valley)
## 3822 Pujanza 2009 Norte (Rioja)
## 3823 Roar 2011 Garys' Vineyard Pinot Noir (Santa Lucia Highlands)
## 3824 Domaine des Baumard 2003 Cuvée le Paon Chenin Blanc (Coteaux du Layon)
## 3825 Jean-Luc Colombo 2009 Les Ruchets (Cornas)
## 3826 Paul Jaboulet Aîné 2009 Domaine de Saint Pierre (Cornas)
## 3827 Villa S. Anna 2009 Vino Nobile di Montepulciano
## 3828 Testarossa 2010 Brosseau Vineyard Chardonnay (Chalone)
## 3829 Testarossa 2010 Niclaire Pinot Noir (California)
## 3830 Louis Sipp 2008 Osterberg Grand Cru Gewurztraminer (Alsace)
## 3831 San Giusto a Rentennano 2010 Chianti Classico
## 3832 Black Coyote 2010 Reserve Cabernet Sauvignon (Napa Valley)
## 3833 Domaine des Baumard 2010 Savennières
## 3834 Domaine Ehrhart 2010 Brand Grand Cru Pinot Gris (Alsace)
## 3835 Domaine de Fondrèche 2009 Persia Red (Ventoux)
## 3836 Antico Colle 2010 Vino Nobile di Montepulciano
## 3837 Wine & Soul 2010 Quinta da Manoella VV Red (Douro)
## 3838 Istine 2010 Chianti Classico
## 3839 Joseph Fritsch 2010 Schlossberg Grand Cru Riesling (Alsace)
## 3840 Retro 2009 Petite Sirah (Napa Valley)
## 3841 Sojourn 2011 Ridgetop Vineyard Pinot Noir (Sonoma Coast)
## 3842 Fiuza 2011 Ikon Touriga Nacional (Tejo)
## 3843 Bibbiano 2010 Chianti Classico
## 3844 Wines & Winemakers 2009 Aguia Moura em Vinhas Velhas Reserva Red (Douro)
## 3845 Castellinuzza e Piuca 2010 Chianti Classico
## 3846 Domaine Schoffit 2009 Rangen de Thann Grand Cru Clos Saint-Théobald Gewurztraminer (Alsace)
## 3847 Gary Farrell 2011 Hallberg Vineyard Pinot Noir (Russian River Valley)
## 3848 Ocone 2008 Calidonio Red (Taburno)
## 3849 Palari 2007 Faro
## 3850 Round Pond 2008 Estate Cabernet Sauvignon (Rutherford)
## 3851 S.A. Prüm 2009 Graacher Himmelreich Spätlese Riesling (Mosel)
## 3852 Archery Summit 2008 Arcus Estate Pinot Noir (Dundee Hills)
## 3853 Bernard Baudry 2009 Les Grézeaux (Chinon)
## 3854 Charles Joguet 2009 Clos du Chêne Vert (Chinon)
## 3855 Château d'Epire 2009 Cuvée Spéciale (Savennières)
## 3856 Dark Matter 2006 Zinfandel (Howell Mountain)
## 3857 Domus Aurea 2008 Cabernet Sauvignon (Maipo Valley)
## 3858 Rusack 2008 Syrah (Santa Barbara County)
## 3859 Thomas Fogarty 2008 Windy Hill Vineyard Pinot Noir (Santa Cruz Mountains)
## 3860 Tudal 2008 Estate Bottled Cabernet Sauvignon (Napa Valley)
## 3861 Viader 2008 Estate Limited Edition Red (Napa Valley)
## 3862 Zotovich Cellars 2010 Estate Viognier (Sta. Rita Hills)
## 3863 Ca' del Bosco 2006 Pinéro Pinot Nero (Sebino)
## 3864 Domaine Huët 2010 Le Haut-Lieu Sec (Vouvray)
## 3865 Donelan 2009 Walker Vine Hill Syrah (Russian River Valley)
## 3866 Beckmen 2008 Purisima Mountain Vineyard Grenache (Santa Ynez Valley)
## 3867 Viento 2009 Underwood Mountain Vineyards 55% Riesling/45% Gewurztraminer Ice Wine Gewürztraminer-Riesling (Columbia Gorge (OR))
## 3868 Villa Matilde 2004 Camarato Red (Falerno del Massico)
## 3869 Wine Spots 2007 Cabernet Sauvignon (Napa Valley)
## 3870 Clos Pegase 2009 Mitsuko's Vineyard Sauvignon Blanc (Carneros)
## 3871 Domaine des Baumard 2007 Clos de Saint-Yves (Savennières)
## 3872 Dr. H. Thanisch (Erben Thanisch) 2009 Berncasteler Doctor Auslese Riesling (Mosel)
## 3873 Elyse 2007 Zinfandel (Howell Mountain)
## 3874 Francis Tannahill 2008 Passito White (Oregon)
## 3875 Lachini 2008 Lachini Family Estate Pinot Noir (Chehalem Mountains)
## 3876 Masciarelli 2007 Castello di Semivicoli (Trebbiano d'Abruzzo)
## 3877 Castle Rock 2008 Reserve Pinot Noir (Russian River Valley)
## 3878 Château Moncontour NV Brut Chenin Blanc-Chardonnay (Crémant de Loire)
## 3879 Derbes 2006 Chardonnay (Carneros)
## 3880 Frog's Leap 2009 Sauvignon Blanc (Rutherford)
## 3881 Hellbent 2008 Shiraz-Cabernet Sauvignon (South Australia)
## 3882 Washington Hills 2008 Riesling (Washington)
## 3883 Ramos-Pinto NV White Reserva (Port)
## 3884 Sesti 2008 Rosso di Montalcino
## 3885 Tagaris 2007 Frank Chiullino Chef Blend Red Red (Columbia Valley (WA))
## 3886 Las Colinas Del Ebro 2008 Syrah-Grenache (Terra Alta)
## 3887 Marquee 2008 Classic Chardonnay (Victoria)
## 3888 Anciano 2003 Reserva Tempranillo (Valdepeñas)
## 3889 Avery Lane 2007 Cabernet Sauvignon (Washington)
## 3890 Beltane Ranch 2009 Estate Sauvignon Blanc (Sonoma Valley)
## 3891 Bodegas Docampo 2008 Viña do Campo White (Ribeiro)
## 3892 Cortes de Cima 2009 Chaminé Red (Alentejano)
## 3893 Crane Brothers 2006 Crane Ranch Vineyard Syrah (Napa Valley)
## 3894 De Loach 2008 Cool Coastal Vineyards Chardonnay (Russian River Valley)
## 3895 Domaine Henry Pellé 2008 Les Bornés (Menetou-Salon)
## 3896 El Burro 2008 Kickass Garnacha (Cariñena)
## 3897 Enkidu 2006 Fazekas Petite Sirah (Napa Valley)
## 3898 Valle de Salinas 2008 Roble Red (Yecla)
## 3899 Villa San Juliette 2008 Sauvignon Blanc (Paso Robles)
## 3900 Plaisance Ranch 2014 Barrel Fermented Chardonnay (Applegate Valley)
## 3901 Poggiobello 2014 Pinot Grigio (Friuli Colli Orientali)
## 3902 Previous 2013 Chardonnay (Sonoma County)
## 3903 Primosic 2014 Santa Lucia Pinot Grigio (Collio)
## 3904 Quinta da Romeira 2014 Prova Régia Arinto (Lisboa)
## 3905 Roche 2013 Barrel Select American Oak Reserve Chardonnay (Carneros)
## 3906 Ronco dei Tassi 2014 Sauvignon (Collio)
## 3907 Sauvion NV Brut Sparkling (Crémant de Loire)
## 3908 St. Pauls 2014 Plotzner Pinot Bianco (Alto Adige)
## 3909 La Rajade 2014 Friulano (Collio)
## 3910 La Tunella 2013 Col Livius Friulano (Friuli Colli Orientali)
## 3911 La Vis 2014 Ritratti Pinot Grigio (Trentino)
## 3912 La Vis 2014 Vigna Maso Tratta Sauvignon (Trentino)
## 3913 Le Cadeau 2013 Pinot Noir (Oregon)
## 3914 Louis de Grenelle NV Platine Brut Sparkling (Crémant de Loire)
## 3915 Manincor 2014 Eichorn Pinot Bianco (Alto Adige Terlano)
## 3916 Meadowcroft 2013 Cornerstone Vineyard Pinot Noir (Carneros)
## 3917 Mignanelli 2013 Pinot Noir (Santa Cruz Mountains)
## 3918 Monteviejo 2013 Lindaflor Chardonnay (Uco Valley)
## 3919 Nals Margreid 2014 Pinot Grigio (Alto Adige)
## 3920 Nisia 2014 Old Vines Verdejo (Rueda)
## 3921 Passaggio 2014 Lone Oak Vineyard Pinot Noir (Santa Lucia Highlands)
## 3922 Plaisance Ranch 2013 Ranch Red (Applegate Valley)
## 3923 Quinta do Cavalinho 2013 Templários Colheita Seleccionada Red (Tejo)
## 3924 Rodney Strong 2013 Zinfandel (Dry Creek Valley)
## 3925 Ronco Blanchis 2014 Ribolla Gialla (Collio)
## 3926 Sarah's Vineyard 2011 Old Vine Zinfandel (Santa Clara Valley)
## 3927 St. Pauls 2014 Pinot Grigio (Alto Adige)
## 3928 Tenuta di Angoris 2014 Pinot Grigio (Collio)
## 3929 Buena Vista 2013 Attila's Selection Zinfandel (Sonoma County)
## 3930 Don Cristobal 1492 2010 1492 Red (Mendoza)
## 3931 Finca El Origen 2010 Cabernet Sauvignon (Mendoza)
## 3932 Glen Ellen 2009 Old Vine Zinfandel (California)
## 3933 Manzanita Creek 2005 Carreras Ranch Zinfandel (Dry Creek Valley)
## 3934 Montepio 2010 Pinot Gris (San Juan)
## 3935 Notro 2010 Tinto Fundación Red (Mendoza)
## 3936 Ochoa 2010 Rosado Garnacha (Navarra)
## 3937 Robert Mondavi 2010 Pinot Grigio (California)
## 3938 Starmont 2009 Chardonnay (Napa Valley)
## 3939 Aveleda 2010 Casal Garcia Tinto Red (Portuguese Table Wine)
## 3940 Brophy Clark 2009 G-S-M (Santa Ynez Valley)
## 3941 Caligiore 2008 Organic Legacy Old Vines Malbec (Mendoza)
## 3942 Caligiore 2010 Pianissimo Rosé (Mendoza)
## 3943 Cedar Mountain 2007 Hansen Vineyard Reserve Zinfandel (Livermore Valley)
## 3944 Concannon 2010 Selected Vineyards Chardonnay (Central Coast)
## 3945 Solar de Urbezo 2010 Dance Del Mar Tempranillo-Merlot (Cariñena)
## 3946 Wines & Winemakers 2010 Clemens Reserva White (Vinho Verde)
## 3947 Cosentino 2008 The Novelist Meritage (California)
## 3948 De Bortoli 2009 Deen De Bortoli Vat 10 Pinot Noir (South Eastern Australia)
## 3949 DFJ Vinhos 2010 Coreto Rosé (Lisboa)
## 3950 Yellow Tail NV Bubbles Sparkling White Wine Sparkling (South Eastern Australia)
## 3951 Adega Cooperativa Ponte de Barca 2010 Escolha Rosé (Vinho Verde)
## 3952 Pasaje Alto 2010 Andes Crossing Malbec (Mendoza)
## 3953 De Bortoli 2008 DB Family Selection Shiraz (South Eastern Australia)
## 3954 Figaro 2009 Tinto Red (Calatayud)
## 3955 Fattoria di Casalbosco 2006 500ml (Vin Santo del Chianti)
## 3956 Georges Duboeuf 2009 Clos des Garands (Fleurie)
## 3957 Georges Duboeuf 2009 Sélection (Moulin-à-Vent)
## 3958 Jarvis 2008 Will Jarvis' Science Project Red (Napa Valley)
## 3959 Kingston Family 2008 Alazan CJ's Barrel Pinot Noir (Casablanca Valley)
## 3960 Lapostolle 2007 Cuvée Alexandre Las Kuras Vineyard Syrah (Cachapoal Valley)
## 3961 Syncline 2009 Subduction White White (Columbia Valley (WA))
## 3962 Trapiche 2008 Broquel Bonarda (Mendoza)
## 3963 Loimer 2009 Reserve Riesling (Kamptal)
## 3964 Louis Latour 2008 Les Beaumonts Premier Cru (Vosne-Romanée)
## 3965 Louis Latour 2008 Les Damodes Premier Cru (Nuits-St.-Georges)
## 3966 M by Michael Mondavi 2006 Cabernet Sauvignon (Napa Valley)
## 3967 Margerum 2007 M5 Red (Santa Barbara County)
## 3968 Pedroncelli 2007 Family Vineyards Petite Sirah (Dry Creek Valley)
## 3969 Pietro Beconcini 1999 Caratello (Vin Santo del Chianti)
## 3970 Boekenhoutskloof 2007 Syrah (Coastal Region)
## 3971 Bortolotti NV Cartizze Dry (Valdobbiadene Superiore di Cartizze)
## 3972 Chanson Père et Fils 2007 Gevrey-Chambertin
## 3973 Château Cambon la Pelouse 2008 Haut-Médoc
## 3974 Château Lilian Ladouys 2008 Saint-Estèphe
## 3975 Corison 2006 Kronos Vineyard Cabernet Sauvignon (St. Helena)
## 3976 Longboard 2009 Sauvignon Blanc (Russian River Valley)
## 3977 Margerum 2007 Colson Canyon Vineyard Syrah (Santa Barbara County)
## 3978 Nicolis 2006 500ml (Recioto della Valpolicella Classico)
## 3979 Giacomo Ascheri 2006 Cristina Ascheri (Gavi di Gavi)
## 3980 Saint Clair 2007 Vicar's Choice Sauvignon Blanc (Marlborough)
## 3981 Covey Run 2005 Quail Series Chardonnay (Columbia Valley (WA))
## 3982 Bearboat 2004 Chardonnay (Russian River Valley)
## 3983 Spy Valley 2006 Pinot Gris (Marlborough)
## 3984 Jurtschitsch 2006 Schenkenbichl Grüner Veltliner (Kamptal)
## 3985 Valdinera 2005 Barbera d'Alba Superiore
## 3986 X 2005 Petite Sirah (Paso Robles)
## 3987 Renato Ratti 2004 Villa Pattono Red (Monferrato)
## 3988 Michele Chiarlo 2005 Le Monache Red (Monferrato)
## 3989 Pertinace 2006 Dolcetto d'Alba
## 3990 Pertinace 2006 Roero Arneis
## 3991 Poderi Luigi Einaudi 2004 Dolcetto di Dogliani
## 3992 Seia 2005 Alder Creek Vineyard Syrah (Horse Heaven Hills)
## 3993 Kindred 2005 Marsanne-Roussanne-Viognier White (Russian River Valley)
## 3994 Maddalena 2006 Sauvignon Blanc (Paso Robles)
## 3995 Beringer 2006 Sauvignon Blanc (Napa Valley)
## 3996 Familia Schroeder 2006 Deseado Torrontés (Neuquén)
## 3997 Il Falchetto 2006 Tenuta Del Fant (Moscato d'Asti)
## 3998 Red Newt Cellars 2012 Sawmill Creek Vineyards North Block Riesling (Finger Lakes)
## 3999 Señorío de Caleruega 2009 Ribera del Duero
## 4000 Silver Thread 2012 Semi-dry Riesling (Finger Lakes)
## 4001 Telmo Rodríguez 2012 g Dehesa Gago (Toro)
## 4002 Breaux 2012 Sauvignon Blanc (Virginia)
## 4003 Chakras 2009 Reserva Cabernet Sauvignon (Mendoza)
## 4004 Chalk Hill 2012 Estate Sauvignon Blanc (Chalk Hill)
## 4005 Château Henri Bonnaud 2013 Terre Promise Rosé (Côtes de Provence Sainte-Victoire)
## 4006 Château la Gordonne 2013 Verité du Terroir Rosé (Côtes de Provence)
## 4007 Contrada Michele 2012 Selvecorte (Fiano di Avellino)
## 4008 Coronica 2012 Malvasia (Istria)
## 4009 Covington 2012 Klipsun Vineyard Blanc Sauvignon Blanc-Semillon (Red Mountain)
## 4010 Dr. Konstantin Frank 2012 Sauvignon Blanc (Finger Lakes)
## 4011 Fattoria La Rivolta 2012 Greco (Sannio)
## 4012 Argento 2012 Bonarda (Mendoza)
## 4013 Beau Joubert 2009 The Ambassador Red (Stellenbosch)
## 4014 Jones of Washington 2013 Viognier (Wahluke Slope)
## 4015 Ken Wright 2011 Celilo Chardonnay (Washington)
## 4016 Kim Crawford 2013 Sauvignon Blanc (Marlborough)
## 4017 Llopart 2010 Brut Reserva Rosé Sparkling (Cava)
## 4018 Maimai 2013 Sauvignon Blanc (Hawke's Bay)
## 4019 Masseria Felicia 2012 Anthologia Falanghina (Falerno del Massico)
## 4020 Miloš 2009 Plavac Mali (Peljesac)
## 4021 Nickel & Nickel 2012 Stiling Vineyard Chardonnay (Russian River Valley)
## 4022 Niner 2010 Fog Catcher Red (Paso Robles)
## 4023 Novelty Hill 2011 Stillwater Creek Vineyard Sangiovese (Columbia Valley (WA))
## 4024 Pedro Escudero 2013 Fuente Milano Verdejo-Viura (Vino de la Tierra de Castilla y León)
## 4025 Raats Family 2012 Original Unwooded Chenin Blanc (Coastal Region)
## 4026 Radford Dale 2012 The Renaissance of Chenin Blanc (Stellenbosch)
## 4027 Sanpaolo 2012 Greco di Tufo
## 4028 Airfield Estates 2013 Merlot (Yakima Valley)
## 4029 Ammunition 2014 Pinot Noir (Sonoma County)
## 4030 Andis 2011 Petite Sirah (Sierra Foothills)
## 4031 Archium 2014 Haven Grenache (Santa Ynez Valley)
## 4032 Buttonwood 2015 Zingy Sauvignon Blanc
## 4033 Cave de Bissey NV Blanc de Blancs Brut (Crémant de Bourgogne)
## 4034 Chateau Ste. Michelle 2015 Horse Heaven Vineyard Sauvignon Blanc (Horse Heaven Hills)
## 4035 Damsel 2013 Cabernet Sauvignon (Columbia Valley (WA))
## 4036 Domaine des Cognettes 2014 Les 2 Terres Sur Lie (Muscadet Sèvre et Maine)
## 4037 Domaine Julie Belland 2014 Charmes (Santenay)
## 4038 Domaine Julie Belland 2014 Comme Dessus (Santenay)
## 4039 Domaine les Pins 2015 Saint-Nicolas-de-Bourgueil
## 4040 Fattori 2015 Runcaris (Soave)
## 4041 Inama 2015 Vin Soave (Soave Classico)
## 4042 Karma Vineyards 2013 Blanc de Noir Sparkling (Lake Chelan)
## 4043 Kiona 2013 Estate Bottled Lemberger (Red Mountain)
## 4044 Tranche 2015 Estate Grown Pink Pape Blackrock Vineyard Rosé (Yakima Valley)
## 4045 Trust 2013 Cabernet Franc (Columbia Valley (WA))
## 4046 Valentin Bianchi 2014 Famiglia Bianchi Cabernet Sauvignon (Mendoza)
## 4047 Viña Requingua 2013 Toro de Piedra Grand Reserve Late Harvest Sauvignon Blanc-Semillon (Curicó Valley)
## 4048 Whitecliff Vineyard 2014 Reserve Chardonnay (Hudson River Region)
## 4049 Wine Man 2014 Mukuzani Saperavi (Kakheti)
## 4050 Yealands 2014 Single Vineyard Pinot Noir (Awatere Valley)
## 4051 Zuccardi 2014 Q Malbec (Valle de Uco)
## 4052 Bouza 2013 B2 Parcela Unica Tannat (Canelones)
## 4053 Brian Carter Cellars 2015 Abracadabra Rosé (Columbia Valley (WA))
## 4054 Cecilia Beretta 2011 Terre di Cariano Riserva (Amarone della Valpolicella Classico)
## 4055 Chakana 2014 Estate Selection Malbec (Mendoza)
## 4056 Chateau Ste. Michelle 2014 Ethos Reserve Chardonnay (Columbia Valley (WA))
## 4057 Chronic Cellars 2014 Sofa King Bueno Red (Paso Robles)
## 4058 Kale 2014 Rosé (Sonoma County)
## 4059 Kirkland Signature 2013 Signature Series Chardonnay (Russian River Valley)
## 4060 Kirkland Signature 2013 Signature Series Red (Columbia Valley (WA))
## 4061 Les Rocailles 2014 Roussette de Savoie
## 4062 Twomey 2014 Sauvignon Blanc (Napa County-Sonoma County)
## 4063 Ty Caton 2012 EnTycement Red (Sonoma County)
## 4064 W.T. Vintners 2012 Damavian Les Collines Vineyard Syrah (Walla Walla Valley (WA))
## 4065 Waters Crest 2010 Grand Vin Merlot (North Fork of Long Island)
## 4066 William Church 2012 Cabernet Sauvignon (Columbia Valley (WA))
## 4067 Matanzas Creek 2013 Helena Bench Sauvignon Blanc (Knights Valley)
## 4068 Mazzei 2011 Tenuta Belguardo (Maremma Toscana)
## 4069 Michele Chiarlo 2012 La Court (Barbera d'Asti Superiore)
## 4070 Miraflores 2012 Clone 877.4.369.362 Red (El Dorado)
## 4071 Monchiero 2011 Rocche di Castiglione Falletto (Barolo)
## 4072 Mosquito Fleet 2012 Cabernet Franc (Columbia Valley (WA))
## 4073 Pech Merle 2014 Sauvignon Blanc (Dry Creek Valley)
## 4074 Ridgeview Estate 2011 Blanc de Blancs Chardonnay (England)
## 4075 Robert Renzoni 2011 VIneyard Riserva Sangiovese (Temecula Valley)
## 4076 Roth 2012 Heritage Red (Sonoma County)
## 4077 Savage Grace 2014 Copeland Vineayard Cabernet Franc (Rattlesnake Hills)
## 4078 Seghesio 2012 San Lorenzo Estate Red (Alexander Valley)
## 4079 Silver 2009 I Tre Figli Red (Santa Barbara County)
## 4080 Stags' Leap Winery 2012 Cabernet Sauvignon (Napa Valley)
## 4081 The Conqueror 2012 Red (Horse Heaven Hills)
## 4082 Henri Bourgeois 2013 La Demoiselle de Bourgeois (Pouilly-Fumé)
## 4083 Holly's Hill 2013 Patriarche Red (El Dorado)
## 4084 Kathryn Kennedy 2004 Twenty-Seven Blanc de Blanc Chardonnay (Santa Cruz Mountains)
## 4085 Keating 2012 Petite Sirah (Rockpile)
## 4086 Antiyal 2012 Kuyen Red (Maipo Valley)
## 4087 Locus 2012 Stonetree Vineyard Syrah (Wahluke Slope)
## 4088 B.R. Cohn 2010 Olive Hill Estate Vineyards Cabernet Sauvignon (Sonoma Valley)
## 4089 Bodegas San Valero 2013 Particular Chardonnay (Cariñena)
## 4090 Cantina di Bertiolo 2014 Villa Marchesi Pinot Grigio (Friuli Grave)
## 4091 Casa de Vila Nova 2013 Filipa de Lencastre White (Vinho Verde)
## 4092 Casca Wines 2013 Santos da Casa Red (Alentejano)
## 4093 Caves Velhas 2014 Casaleiro Reserva White (Tejo)
## 4094 Quinta da Rede 2013 Rede Branco White (Douro)
## 4095 Reustle 2013 Winemaker's Reserve Pinot Noir (Umpqua Valley)
## 4096 Silverado 2011 Estate Grown Mt. George Vineyard Merlot (Napa Valley)
## 4097 Stag's Leap Wine Cellars 2013 Aveta Sauvignon Blanc (Napa Valley)
## 4098 J. Portugal Ramos 2014 Marquês de Borba Branco White (Alentejo)
## 4099 Viu Manent 2013 Secreto Pinot Noir (Casablanca Valley)
## 4100 Yalumba 2014 The Y Series Riesling (Barossa)
## 4101 Terlato 2011 Cardinal's Peak Red (Napa Valley)
## 4102 Treasure 2013 Sauvignon Blanc (Napa Valley)
## 4103 Truett Hurst 2012 Red Rooster Old Vine Zinfandel (Dry Creek Valley)
## 4104 Markham 2013 Chardonnay (Napa Valley)
## 4105 Artesana 2013 Tannat-Merlot-Zinfandel Red (Canelones)
## 4106 Beaucanon 2007 Cuvée Louis Cabernet Franc (Napa Valley)
## 4107 Bryx 2012 Pinot Noir (Willamette Valley)
## 4108 Campolargo 2011 Valdazar Red (Bairrada)
## 4109 Duorum 2014 Tons de Duorum White (Douro)
## 4110 Estampa 2014 Del Viento Paredones Estate Single Vineyard Sauvignon Blanc (Colchagua Valley)
## 4111 La Pitchoune 2013 Chenoweth Vineyard Chardonnay (Russian River Valley)
## 4112 Landmark 2014 Grand Detour Pinot Noir (Sonoma Coast)
## 4113 Lasseter 2012 Paysage Estate Grown Red (Sonoma Valley)
## 4114 Lava Cap 2012 Estate Bottled Cabernet Franc (El Dorado)
## 4115 Leonard Kreusch 2015 Piesporter Goldtröpfchen Kabinett Riesling (Mosel)
## 4116 Leonard Kreusch 2015 Piesporter Michelsberg Kabinett Riesling (Mosel)
## 4117 Liberated 2015 Sauvignon Blanc (North Coast)
## 4118 Donkey & Goat 2014 Five Thirteen Red (El Dorado)
## 4119 Donkey & Goat 2015 Grenache Noir Grenache (El Dorado)
## 4120 Donnafugata 2012 Brut Metodo Classico Sparkling (Sicilia)
## 4121 Dr. Heidemanns-Bergweiler 2015 Bernkasteler Badstube Kabinett Riesling (Mosel)
## 4122 Drappier NV Carte d'Or Brut (Champagne)
## 4123 Drappier NV Rosé Brut Nature Pinot Noir (Champagne)
## 4124 Eagle Ridge 2012 Private Reserve Estate Grown Cabernet Sauvignon (Livermore Valley)
## 4125 En Garde 2013 Greenville Summit Cabernet Sauvignon (Livermore Valley)
## 4126 Fontanafredda 2011 Extra Brut Metodo Classico Sparkling (Alta Langa)
## 4127 Fratelli Berlucchi 2011 Freccianera Brut Vintage Metodo Classico Sparkling (Franciacorta)
## 4128 Billecart-Salmon NV Extra Brut (Champagne)
## 4129 Boizel NV Blanc de Noirs Brut Pinot Noir (Champagne)
## 4130 Boizel NV Ultime Extra Brut (Champagne)
## 4131 Vermeil 2013 XXXIV Proprietary Red (Calistoga)
## 4132 Vignobles Carreau Selection 2014 Amiral (Blaye Côtes de Bordeaux)
## 4133 Westerly 2014 Chardonnay (Santa Ynez Valley)
## 4134 Willamette Valley Vineyards 2013 Elton Pinot Noir (Eola-Amity Hills)
## 4135 Casal da Coelheira 2015 Reserva Branco White (Tejo)
## 4136 Le Brun de Neuville NV Blanc de Blancs Brut Chardonnay (Champagne)
## 4137 Quinta das Carvalhas 2013 Vintage (Port)
## 4138 D'Arenberg 2010 The Derelict Vineyard Grenache (McLaren Vale)
## 4139 Billecart-Salmon NV Brut Réserve (Champagne)
## 4140 Delaforce NV Curious & Ancient 20 Years (Port)
## 4141 Shea 2014 West Hill Pinot Noir (Willamette Valley)
## 4142 Simonnet-Febvre 2014 Preuses Grand Cru (Chablis)
## 4143 Simonnet-Febvre 2015 Côte de Lechet Premier Cru (Chablis)
## 4144 Skinner 2014 Estate Grown Mourvèdre (El Dorado)
## 4145 Terredora 2011 Fatica Contadina (Taurasi)
## 4146 Casa Santos Lima 2014 Confidencial Reserva Red (Lisboa)
## 4147 Chamisal Vineyards 2014 Califa Pinot Noir (Edna Valley)
## 4148 Domaine Divio 2015 Chardonnay (Willamette Valley)
## 4149 Dragonette 2014 Duvarita Vineyard Pinot Noir (Santa Barbara County)
## 4150 Dragonette 2014 Pinot Noir (Sta. Rita Hills)
## 4151 Gramercy 2013 Reserve Cabernet Sauvignon (Columbia Valley (WA))
## 4152 Huré Frères 2008 Instantanée Extra Brut (Champagne)
## 4153 J. Christopher 2014 Lumière Unfiltered Pinot Noir (Eola-Amity Hills)
## 4154 Michel-Schlumberger 2013 Platinum Collection Cabernet Sauvignon (Dry Creek Valley)
## 4155 Pietradolce 2013 Vigna Barbagalli Pre-Phylloxera Rosso (Etna)
## 4156 José Dhondt NV Blanc de Blancs Brut Chardonnay (Champagne)
## 4157 Martin Ranch 2010 Thérèse Vineyards Dos Niñas Vineyard Nebbiolo (Santa Clara Valley)
## 4158 Neyers 2015 Roberts Road Pinot Noir (Sonoma Coast)
## 4159 Nicholson Ranch 2014 Dry Farmed Estate Pinot Noir (Sonoma Coast)
## 4160 Niner 2013 Square Root Heart Hill Vineyard Estate Grown Red (Paso Robles Willow Creek District)
## 4161 Prospect 772 2014 Black Tie Charlie Red (California)
## 4162 Prospect 772 2014 The Brawler Syrah (Calaveras County)
## 4163 Quinta do Sagrado 2008 Sagrado Reserva Red (Douro)
## 4164 Cantine del Notaio 2011 Il Sigillo (Aglianico del Vulture)
## 4165 Casa da Passarella 2013 O Oenólogo Vinhas Velhas Red (Dão)
## 4166 Chamisal Vineyards 2014 Chamise Estate Grown Chardonnay (Edna Valley)
## 4167 Contrade di Taurasi - Lonardo 2011 Taurasi
## 4168 Cristom 2015 Estate Viognier (Eola-Amity Hills)
## 4169 DeLille 2014 Doyenne Red (Yakima Valley)
## 4170 Domdechant Werner 2015 Hochheimer Domdechaney Beerenauslese Riesling (Rheingau)
## 4171 Twisted Twig 2011 Sommelier Quality Fifty-Fifty Red (El Dorado County)
## 4172 Brennan 2013 Tempranillo (Texas)
## 4173 Claar 2011 Estate Grown and Bottled Merlot (Columbia Valley (WA))
## 4174 Kunde 2012 Destination Series Malbec (Sonoma Valley)
## 4175 Mumm Napa 2011 Blanc de Blancs Reserve Sparkling (Napa County)
## 4176 Parker Station 2014 Pinot Noir (Central Coast)
## 4177 Sequoia Grove 2012 Cabernet Sauvignon (Napa Valley)
## 4178 Skyfall 2012 Merlot (Columbia Valley (WA))
## 4179 Snoqualmie 2013 Merlot (Columbia Valley (WA))
## 4180 Snoqualmie 2013 Whistle Stop Red (Columbia Valley (WA))
## 4181 Haak 2012 Thomas Jefferson Series Madeira Blanc du Bois (Texas)
## 4182 Inspire Moore 2014 Rhythm Grüner Veltliner (Finger Lakes)
## 4183 La Playa 2013 Block Selection Tinga Reserve Cabernet Sauvignon (Colchagua Valley)
## 4184 Les Vignobles Gueissard 2013 Les Papilles Red (Côtes de Provence)
## 4185 Louis Max 2013 Côtes de Nuits Villages
## 4186 Mezzacorona 2013 Cabernet Sauvignon (Vigneti delle Dolomiti)
## 4187 Orogeny 2013 Pinot Noir (Russian River Valley)
## 4188 Paris Valley Road Cellars 2013 Chardonnay (Monterey County)
## 4189 Lamoreaux Landing 2012 76 West Red (Finger Lakes)
## 4190 Millbrook 2013 Pinot Noir (New York)
## 4191 San Cassiano 2011 Riserva (Amarone della Valpolicella)
## 4192 Tin Barn 2013 Hi Vista Vineyard Sauvignon Blanc (Carneros)
## 4193 Casas del Bosque 2013 Reserva Carmenère (Rapel Valley)
## 4194 Sanford 2013 Flor de Campo Pinot Noir (Central Coast)
## 4195 Tolosa 2012 Estate Syrah (Edna Valley)
## 4196 Airfield Estates 2014 Reserve Chardonnay (Yakima Valley)
## 4197 Arboleda 2014 Pinot Noir (Aconcagua Costa)
## 4198 Commanderie de la Bargemone 2014 White (Coteaux d'Aix-en-Provence)
## 4199 Concha y Toro 2013 Serie Riberas Gran Reserva Ribera del Cachapoal Carmenère (Peumo)
## 4200 Concha y Toro 2013 Serie Riberas Gran Reserva Ribera del Tinguiririca Cabernet Sauvignon (Marchigue)
## 4201 Kunde 2015 Magnolia Lane Estate Grown Sauvignon Blanc (Sonoma Valley)
## 4202 Las Positas 2013 Estate Cabernet Sauvignon (Livermore Valley)
## 4203 Le Albare 2015 Monte Majore (Soave Classico)
## 4204 LXV 2014 X Reserve Kiler Canyon Vineyard Syrah (Paso Robles Willow Creek District)
## 4205 Nuiton-Beaunoy 2015 Bourgogne Hautes Côtes de Beaune
## 4206 Obelisco Estate 2013 Estate Grown Malbec (Red Mountain)
## 4207 Olsen Private Vineyards 2014 Chardonnay (Paarl)
## 4208 Payana 2015 Malbec (Mendoza)
## 4209 Pierre Gruber 2014 Bourgogne Hautes Côtes de Nuits
## 4210 Pisoni 2015 Nosiola (Vigneti delle Dolomiti)
## 4211 Pradorey 2015 Selección Especial Verdejo (Vino de la Tierra de Castilla y León)
## 4212 Quinta de Chocapalha 2014 Mar de Lisboa Red (Lisboa)
## 4213 Quinta de Chocapalha 2015 Arinto (Lisboa)
## 4214 Quinta do Casal Monteiro 2015 Touriga Nacional-Merlot-Syrah Red (Tejo)
## 4215 Rancho Sisquoc 2014 Cabernet Sauvignon (Santa Barbara County)
## 4216 Schlink Haus 2013 Made With Organic Grapes Dornfelder (Rheinhessen)
## 4217 Thomas George 2014 Starr Ridge Vineyard Estate Chardonnay (Russian River Valley)
## 4218 Verbena 2011 Riserva (Brunello di Montalcino)
## 4219 Vicente Faria Vinhos 2016 Animus Branco White (Vinho Verde)
## 4220 Blanchard & Lurton 2014 Gran Vin White (Vista Flores)
## 4221 Broadway Vineyards 2014 Estate Grown Chardonnay (Carneros)
## 4222 Corte Adami 2015 Soave
## 4223 De Stefani 2015 Olmèra White (Veneto)
## 4224 Enrique Foster 2009 Edicion Limitada Malbec (Mendoza)
## 4225 Firestone 2015 Barrel Select Sauvignon Blanc (Santa Ynez Valley)
## 4226 Fiuza 2015 3 Castas Red (Tejo)
## 4227 Flor De Campo 2015 Chardonnay (Santa Barbara County)
## 4228 Georges Vigouroux 2015 Petit Jammes Malbec (Cahors)
## 4229 Ghost Pines 2014 Winemaker's Blend Pinot Noir (California)
## 4230 Hobo 2014 Sceales Vineyard Grenache (Alexander Valley)
## 4231 Ridolfi 2014 Rosso di Montalcino
## 4232 Santa Julia 2016 [+] Torrontés (Mendoza)
## 4233 Suhru 2013 Shiraz (North Fork of Long Island)
## 4234 Swiftwater Cellars 2015 Olsen Vineyard Riesling (Yakima Valley)
## 4235 Swiftwater Cellars 2015 Proprietary White (Columbia Valley (WA))
## 4236 Te Mata 2014 Elston Chardonnay (Hawke's Bay)
## 4237 Peloton 2014 Zinfandel (Paso Robles)
## 4238 Portalupi 2015 Las Brisas Vineyard Vermentino (Carneros)
## 4239 Quivira 2014 Roussanne-Viognier (Dry Creek Valley)
## 4240 Roche de Bellene 2014 Saint-Aubin
## 4241 St. Supéry 2013 Dollarhide Estate Vineyard Cabernet Sauvignon (Napa Valley)
## 4242 Viña Casablanca 2014 Nimbus Single Vineyard Syrah (Casablanca Valley)
## 4243 Judge Palmer 2011 Beckstoffer Georges III Cabernet Sauvignon (Rutherford)
## 4244 Kakhetia Traditional Winemaking 2012 Red Naturally Semi-Sweet Ojaleshi
## 4245 Maryhill 2014 Proprietor's Reserve Chardonnay (Columbia Valley (WA))
## 4246 Mirror 2014 Sangiacomo Vineyard Chardonnay (Sonoma Coast)
## 4247 Monte Volpe 2013 Primo Rosso Red (Mendocino County)
## 4248 Montes 2016 Spring Harvest Sauvignon Blanc (Leyda Valley)
## 4249 Peltier NV USB Red (Lodi)
## 4250 Replica 2014 Pickpocket Red (California)
## 4251 Robert Karl 2013 Gunselman Bench Vineyard Cabernet Sauvignon (Horse Heaven Hills)
## 4252 Ryan Patrick 2013 Elephant Mountain Vineyard Reserve Cabernet Sauvignon (Rattlesnake Hills)
## 4253 Senda Verde 2015 Godello (Bierzo)
## 4254 Shannon Ridge 2015 High Elevation Collection Chardonnay (Lake County)
## 4255 Swiftwater Cellars 2013 Malbec (Columbia Valley (WA))
## 4256 TAO 2013 Awakening Sangiovese
## 4257 The Federalist 2014 Honest Red (California)
## 4258 Chaman 2014 Cabernet Franc (Mendoza)
## 4259 Le Vigne di Ca' Nova 2011 Bric de Maschi (Barbera d'Alba Superiore)
## 4260 Lomas del Valle 2014 Coastal Cool Climate Estate Bottled Merlot (Casablanca Valley)
## 4261 Lone Birch 2013 Red (Yakima Valley)
## 4262 Maryhill 2012 Cabernet Sauvignon (Columbia Valley (WA))
## 4263 Domaine Terre de Mistral 2014 Mireille Rosé (Mediterranée)
## 4264 Barlow 2012 Barrouge Cabernet Sauvignon (Calistoga)
## 4265 Caracol Serrano 2013 Red (Jumilla)
## 4266 Château de la Bouyère 2013 Bordeaux
## 4267 Château la Croix Saint-Pierre 2013 Blaye Côtes de Bordeaux
## 4268 Simi 2014 Dry Rosé (Sonoma County)
## 4269 SuLei 2012 Dona Rae Red (Columbia Valley (WA))
## 4270 Topanga 2012 Black and White Cabernet Sauvignon (Napa Valley)
## 4271 Belle Ambiance 2012 Cabernet Sauvignon (California)
## 4272 Louis Bernard 2014 White (Côtes du Rhône)
## 4273 Lucas Vineyards 2012 Chardonnay (Finger Lakes)
## 4274 Marchesi di Barolo 2014 Ruvei (Barbera d'Alba)
## 4275 Mirassou 2013 Cabernet Sauvignon (California)
## 4276 Hogue 2013 Merlot (Columbia Valley (WA))
## 4277 Hogue 2014 Riesling (Yakima Valley)
## 4278 Les Maîtres Vignerons de la Presqu'île de Saint-Tropez 2014 Easy Rosé (Mediterranée)
## 4279 Les Rocailles 2014 Saint-Jean-de-la-Porte Mondeuse (Vin de Savoie)
## 4280 Les Rocailles NV Caprice Gamay (Vin de France)
## 4281 Vin Roc 2011 RTW Red (Napa Valley)
## 4282 Woodenhead 2010 Naturale Single Vineyard Sparkling Colombard (Russian River Valley)
## 4283 Château Siffle Merle 2012 Cuvée Prestige (Blaye Côtes de Bordeaux)
## 4284 Cosa Obra 2013 Pinot Noir (Sonoma County)
## 4285 Domaine de Beauregard 2012 Sur Lie (Muscadet Sèvre et Maine)
## 4286 Freixenet NV Cordon Negro Brut Sparkling (Cava)
## 4287 Santa Quiteria 2013 BT Bodega Tintoralba Garnacha Tintorera (Almansa)
## 4288 La Purísima 2013 Alphabet Wines Monastrell (Yecla)
## 4289 G. H. Mumm NV Cordon Rouge Brut (Champagne)
## 4290 Guenoc 2007 Chardonnay (Lake County)
## 4291 Valley of the Moon 2006 Cuvée de la Luna Red (Sonoma County)
## 4292 Pey-Marin 2008 The Shell Mound Riesling (Marin County)
## 4293 Saintsbury 2008 Garnet Pinot Noir (Carneros)
## 4294 Simone 2006 Grand Reserve Red (Maule Valley)
## 4295 Pieropan 2006 Calvarino (Soave Classico)
## 4296 Domaine Costa Lazaridi 2008 Château Julia Assyrtiko Assyrtico (Drama)
## 4297 Dunham 2006 Syrah (Columbia Valley (WA))
## 4298 Graci 2007 Etna
## 4299 Gundlach Bundschu 2008 Estate Vineyard Gewürztraminer (Sonoma Valley)
## 4300 Alexandria Nicole 2007 Member's Only Red Red (Horse Heaven Hills)
## 4301 Benanti 2006 Rosso di Verzella (Etna)
## 4302 Bergevin Lane 2008 Calico White White (Columbia Valley (WA))
## 4303 Boizel NV Chardonnay Blanc de Blancs Brut Chardonnay (Champagne)
## 4304 Château Barreyres 2006 Haut-Médoc
## 4305 Tommasi 2004 Il Sestante Vigneto Monte Masua (Amarone della Valpolicella Classico)
## 4306 Vigneti Villabella 2003 Amarone della Valpolicella Classico
## 4307 Wairau River 2008 Sauvignon Blanc (Marlborough)
## 4308 Le Ragose 2003 Amarone della Valpolicella Classico
## 4309 Martin Ranch 2005 Thérèse Vineyards Estate Cabernet Sauvignon (Santa Cruz Mountains)
## 4310 Newsome-Harlow 2006 Syrah (Calaveras County)
## 4311 Guerrieri Rizzardi 2003 Villa Rizzardi (Amarone della Valpolicella Classico)
## 4312 Porta 2007 Gran Reserva Syrah (Aconcagua Valley)
## 4313 Ledgewood Creek 2007 Estate Grown Sauvignon Blanc (Suisun Valley)
## 4314 Château Nairac 2004 Barsac
## 4315 Cosme Palacio y Hermanos 2004 Reserva (Rioja)
## 4316 Domaine Seguin 2007 Pouilly-Fumé
## 4317 Dr. Konstantin Frank 2007 Dry Riesling (Finger Lakes)
## 4318 Gilberts NV 10-Year-Old Tawny (Port)
## 4319 Poças 2001 Late Bottled Vintage (Port)
## 4320 Stoller 2006 SV Estate Pinot Noir (Dundee Hills)
## 4321 Tarapaca 2007 Gran Reserva Carmenère (Maipo Valley)
## 4322 Lustau NV Dry Amontillado Los Arcos Sherry (Jerez)
## 4323 Umani Ronchi 2004 Cúmaro Riserva (Conero)
## 4324 W.H. Smith 2007 Umino Vineyard Pinot Noir (Sonoma Coast)
## 4325 Watershed 2005 Awakening Cabernet Sauvignon (Margaret River)
## 4326 Château Rabaud-Promis 2004 Sauternes
## 4327 Chehalem 2007 INOX Chardonnay (Willamette Valley)
## 4328 Daedalus Cellars 2006 Pinot Noir (Willamette Valley)
## 4329 Fournier Père et Fils 2005 Grand Cuvée Fournier Vieilles Vignes (Sancerre)
## 4330 Bodegas Dios Baco S.L. NV Oloroso Sherry (Jerez)
## 4331 Cantine Barbera 2006 Coda della Foce Red (Menfi)
## 4332 Caruso & Minini 2006 Terre di Giumara Sachia Perricone (Sicilia)
## 4333 Yangarra Estate Vineyard 2007 Single Vineyard Viognier (McLaren Vale)
## 4334 Yering Station 2006 Reserve Pinot Noir (Yarra Valley)
## 4335 Alvear NV Amontillado Carlos VII Pedro Ximénez (Montilla-Moriles)
## 4336 Ampelos 2012 Gamma Syrah (Sta. Rita Hills)
## 4337 Avancia 2014 Mencía (Valdeorras)
## 4338 Castello di Amorosa 2014 Terra de Promissio Pinot Noir (Sonoma Coast)
## 4339 Screen Door Cellars 2014 Pinot Noir (Russian River Valley)
## 4340 Seconda Stella a Destra 2012 Brunello di Montalcino
## 4341 Sokol Blosser 2015 Pinot Gris (Willamette Valley)
## 4342 Sokol Blosser NV Evolution Lucky No. 9 White (America)
## 4343 Soléna 2015 Prince Hill Vineyard Pinot Noir (Dundee Hills)
## 4344 Sonoma-Cutrer 2014 Chardonnay (Sonoma Coast)
## 4345 Talisman 2013 Huckleberry's Vineyard Pinot Noir (Sonoma Coast)
## 4346 The Four Graces 2014 Pinot Noir (Willamette Valley)
## 4347 Tinto Rey 2014 Super Tinto Red (Dunnigan Hills)
## 4348 Wellington 2012 Estate Vineyard Syrah (Sonoma Valley)
## 4349 Wild Hogge 2012 Cabernet Sauvignon (Paso Robles)
## 4350 Zenith 2015 Auxerrois (Eola-Amity Hills)
## 4351 Belden Barns 2014 Estate Pinot Noir (Sonoma Mountain)
## 4352 Belden Barns 2014 Serendipity Block Pinot Noir (Sonoma Mountain)
## 4353 Bindella 2013 Vino Nobile di Montepulciano
## 4354 Cannonball 2015 Sauvignon Blanc (Sonoma County)
## 4355 Bosque De Matasnos 2012 Ribera del Duero
## 4356 Cantina del Giusto 2012 Baradiero (Vino Nobile di Montepulciano)
## 4357 Château du Retout 2014 Haut-Médoc
## 4358 Château Ducluzeau 2014 Listrac-Médoc
## 4359 Château La Clare 2014 Médoc
## 4360 Château la Vieille Cure 2014 Fronsac
## 4361 Château Lestruelle 2014 Médoc
## 4362 Château Monbousquet 2014 Saint-Émilion
## 4363 Château Potensac 2014 Médoc
## 4364 Sogevinus 2006 D + D Red (Douro)
## 4365 Roger Lassarat 2008 Clos de France (Pouilly-Fuissé)
## 4366 Russiz Superiore 2005 Rosso Riserva degli Orzoni Red (Collio)
## 4367 Bell 2006 Cabernet Sauvignon (Napa Valley)
## 4368 Bodega Chacra 2009 Cincuenta y Cinco Pinot Noir (Río Negro Valley)
## 4369 Bret Brothers 2008 Domaine la Soufrandière Climat les Quarts (Saint-Véran)
## 4370 Ca' de Calle 2008 Reserva Red (Mendoza)
## 4371 Cantina Terlano 2008 Quarz Sauvignon (Alto Adige)
## 4372 Chanson Père et Fils 2007 Les Caradeux Premier Cru (Pernand-Vergelesses)
## 4373 Collovray et Terrier 2007 Domaine des Deux Roches Rives de Longsault (Saint-Véran)
## 4374 Domaine Michel Bouzereau 2008 Le Limosin (Meursault)
## 4375 Girard 2009 Sauvignon Blanc (Napa Valley)
## 4376 Mark Ryan 2007 Water Witch Klipsun Vineyard Red Wine Red (Red Mountain)
## 4377 Bernardus 2008 Ingrid's Vineyard Pinot Noir (Carmel Valley)
## 4378 Daniel Barraud 2008 Alliance (Pouilly-Fuissé)
## 4379 Dinastía Vivanco 2007 Colección Vivanco 4 Varietales (Rioja)
## 4380 Domaine des Comtes Lafon 2008 Mâcon Milly-Lamartine Clos du Four (Mâcon-Villages)
## 4381 Gordon Brothers 2004 Tradition Red (Columbia Valley (WA))
## 4382 Grand Rêve 2007 Collaboration Series III Ciel du Cheval Vineyard Red Wine Syrah (Red Mountain)
## 4383 Louis Latour 2008 Charmes Premier Cru (Meursault)
## 4384 Louis Latour 2008 Goutte d'Or Premier Cru (Meursault)
## 4385 Domaine Bertrand 2015 Vuril (Brouilly)
## 4386 Domaine Carrette 2016 Mâcon-Milly Lamartine
## 4387 Domaine Jessiaume 2015 Les Gravières Premier Cru (Santenay)
## 4388 Domaine Michel Goubard 2015 Mont-Avril (Côte Chalonnaise)
## 4389 Domaine Pascal et Mireille Renaud 2015 Saint-Véran
## 4390 Drink Washington State 2014 Enjoy Walla Walla Carmenère (Walla Walla Valley (WA))
## 4391 Drink Washington State 2014 Welcome to Columbia Valley Chardonnay (Columbia Valley (WA))
## 4392 Drink Washington State 2015 Escape to Walla Walla Red (Walla Walla Valley (WA))
## 4393 Fetzer 2015 Eagle Peak Merlot (California)
## 4394 Finn Hill 2013 L'abime Corfu Crossing Vineyard Syrah (Columbia Valley (WA))
## 4395 Finn Hill 2013 Le Beau Hedges Estate Vineyard Cabernet Sauvignon (Red Mountain)
## 4396 Finn Hill 2013 Merveille Stillwater Creek Vineyard Merlot (Columbia Valley (WA))
## 4397 Francis Ford Coppola 2015 Votre Santé Cuvée de Patron Pinot Noir (Anderson Valley)
## 4398 Georges Duboeuf 2015 Clos Reyssie (Pouilly-Fuissé)
## 4399 Georges Duboeuf 2015 Domaine du Bois Rosier (Pouilly-Fuissé)
## 4400 Gloria Ferrer NV Sonoma Brut Sparkling (Sonoma County)
## 4401 Inspire Moore 2016 Rhythm Grüner Veltliner (Finger Lakes)
## 4402 Jean-Luc and Paul Aegerter 2015 Vieilles Vignes (Bourgogne Hautes Côtes de Nuits)
## 4403 L. Tramier & Fils 2016 Collection (Morgon)
## 4404 La Spinona 2012 Bricco Faset Riserva (Barbaresco)
## 4405 Louis Latour 2015 Marsannay
## 4406 Macari 2015 Estate Bottled Chardonnay (North Fork of Long Island)
## 4407 Mas Pere NV Selecció Brut Sparkling (Cava)
## 4408 McGregor 2016 Dry Riesling (Finger Lakes)
## 4409 McKahn 2016 Viognier (Russian River Valley)
## 4410 Meurgey-Croses 2015 Vieilles Vignes (Pouilly-Fuissé)
## 4411 Milbrandt 2014 The Estates Malbec (Wahluke Slope)
## 4412 :Nota Bene 2013 Ciel du Cheval Vineyard Merlot (Red Mountain)
## 4413 Pacific Rim 2016 Wallula Vineyard Riesling (Horse Heaven Hills)
## 4414 Rijckaert 2015 Saint-Véran
## 4415 Stephen Ross 2015 Bien Nacido Vineyard Chardonnay (Santa Maria Valley)
## 4416 Telmo Rodríguez 2012 MR Mountain Wine Moscatel (Málaga)
## 4417 Vite Colte 2016 Rossofuoco (Barbera d'Asti)
## 4418 Woodward Canyon 2013 Estate Cabernet Sauvignon (Walla Walla Valley (WA))
## 4419 Woodward Canyon 2014 Merlot (Columbia Valley (WA))
## 4420 Januik 2014 Weinbau Vineyard Cabernet Sauvignon (Wahluke Slope)
## 4421 Jorge Ordóñez & Co. 2016 Botani Old Vines Moscatel
## 4422 Kitá 2014 Hilliard Bruce Vineyard Pinot Noir (Sta. Rita Hills)
## 4423 Le Casque 2014 Petite Sirah (Sierra Foothills)
## 4424 Luis Cañas 2014 Crianza (Rioja)
## 4425 Maryhill 2014 Alder Ridge Vineyard Cabernet Sauvignon (Horse Heaven Hills)
## 4426 Adriano Marco & Vittorio 2012 Basarin Riserva (Barbaresco)
## 4427 Bernardus 2015 Chardonnay (Monterey County)
## 4428 Black Ridge 2012 San Andreas Red (Santa Cruz Mountains)
## 4429 Cantina del Pino 2013 Gallina (Barbaresco)
## 4430 Château de Chénas 2015 Chénas
## 4431 Château d'Ollières 2016 Prestige White (Coteaux Varois en Provence)
## 4432 Cline 2015 Ancient Vines Zinfandel (Contra Costa County)
## 4433 Dante Rivetti 2014 Bric' Micca (Barbaresco)
## 4434 Domaine Faiveley 2015 Charmes Premier Cru (Meursault)
## 4435 Domaine Jessiaume 2015 Les Ecussaux Premier Cru (Auxey-Duresses)
## 4436 Domaine Pierre Guillemot 2015 Dessus des Golardes (Savigny-lès-Beaune)
## 4437 Domaine Sophie Cinier 2016 Mâcon-Verze
## 4438 Dr. Konstantin Frank NV Célèbre Sparkling (Finger Lakes)
## 4439 Firestone 2014 Cabernet Franc (Santa Ynez Valley)
## 4440 Florent Descombe 2015 Chénas
## 4441 Gillmore 2013 Mariposa Estate Old Vines Dry Farmed Syrah-Merlot (Loncomilla Valley)
## 4442 Giovanna Madonia 2015 Neblina Albana (Romagna)
## 4443 Cairdeas 2016 Nellie Mae White (Columbia Valley (WA))
## 4444 Cantina del Pino 2013 Barbaresco
## 4445 RoxyAnn 2009 Tempranillo (Rogue Valley)
## 4446 Straccali 2011 Chianti
## 4447 Les Vins de Vienne 2009 Saint-Joseph
## 4448 Señorio de Uñuela 2010 Rioja
## 4449 Straccali 2010 Chianti
## 4450 Adega de Monção 2011 Muralhas de Monção Rosé (Vinho Verde)
## 4451 Amalie Robert 2010 Her Silhouette Chardonnay (Willamette Valley)
## 4452 Cable Car 2010 Chardonnay (California)
## 4453 Cave du Marmandais 2009 La Vieille Eglise Réserve Red (Côtes du Marmandais)
## 4454 Château Routas 2010 White (Vin de Pays Var)
## 4455 Clos du Lac 2011 Sauvignon Blanc (Amador County)
## 4456 Decoy 2010 Cabernet Sauvignon (Napa County)
## 4457 Decoy 2010 Merlot (Sonoma County)
## 4458 Decoy 2010 Red (Napa Valley)
## 4459 Eleanor 2009 Red (California)
## 4460 Ferré I Catasús 2008 Terra de Fic 1 Red (Priorat)
## 4461 Vicente Gandia 2010 Organic Cabernet Sauvignon (Spain)
## 4462 Vigilance 2010 Cabernet Sauvignon (Red Hills Lake County)
## 4463 Pine Ridge 2009 Cabernet Sauvignon (Howell Mountain)
## 4464 Principe Pallavicini 2011 Frascati Superiore
## 4465 Provenance Vineyards 2011 Estate Grown Sauvignon Blanc (Rutherford)
## 4466 Riboli 2009 Cabernet Sauvignon (Rutherford)
## 4467 Rigg Estate Vineyards 2006 Reserve Cabernet Sauvignon (Livermore Valley)
## 4468 Robledo 2011 Seven Brothers Sauvignon Blanc (Lake County)
## 4469 Chateau Ste. Michelle 2014 Ethos Reserve Late Harvest Riesling (Columbia Valley (WA))
## 4470 Ciacci Piccolomini d'Aragona 2014 Rossofonte (Rosso di Montalcino)
## 4471 Corliss Estates 2012 Cabernet Sauvignon (Columbia Valley (WA))
## 4472 Etude 2014 Grace Benoit Ranch Estate Grown Chardonnay (Carneros)
## 4473 Basel Cellars 2012 Estate Inspired Red (Columbia Valley (WA))
## 4474 Bink 2014 Pinot Noir (Anderson Valley)
## 4475 Bodegas Tobía 2011 Óscar Tobía Reserva (Rioja)
## 4476 Cambria 2014 Seeds of Empowerment Clone 4 Estate Grown & Bottled Chardonnay (Santa Maria Valley)
## 4477 Cayuse 2014 Cailloux Vineyard Viognier (Walla Walla Valley (WA))
## 4478 Ashan 2014 Conner Lee Vineyard Chardonnay (Columbia Valley (WA))
## 4479 Aluvé 2012 Primo Volo Red (Walla Walla Valley (WA))
## 4480 Bailly-Lapierre NV Brut (Crémant de Bourgogne)
## 4481 Buglioni 2011 Il Lussurioso Riserva (Amarone della Valpolicella Classico)
## 4482 Château de Crézancy 2015 Sancerre
## 4483 Chateau Ste. Michelle 2013 Canoe Ridge Estate Cabernet Sauvignon (Horse Heaven Hills)
## 4484 Domaine Girard 2015 Philippe Girard (Sancerre)
## 4485 Domaine Henri Delagrange 2014 Vieilles Vignes (Volnay)
## 4486 Robert Renzoni 2013 Sonata Red (Temecula Valley)
## 4487 Sarah's Vineyard 2014 Estate Reserve Chardonnay (Santa Clara Valley)
## 4488 Sleeping Giant 2012 Cabernet Sauvignon (St. Helena)
## 4489 Solminer 2015 Delanda Vineyard Grüner Veltliner (Santa Ynez Valley)
## 4490 Solminer 2015 Honea Vineyard Muskat (Santa Ynez Valley)
## 4491 Squawking Magpie 2014 Stoned Crow Gimblett Gravels Syrah (Hawke's Bay)
## 4492 Trinity Hill 2014 Gimblett Gravels Syrah (Hawke's Bay)
## 4493 Trione 2011 Block Twenty One Cabernet Sauvignon (Alexander Valley)
## 4494 WesMar 2013 Balletto Vineyard Pinot Noir (Russian River Valley)
## 4495 Jean-Max Roger 2013 Vieilles Vignes (Sancerre)
## 4496 JM Cellars 2013 Boushey Vineyard Syrah (Yakima Valley)
## 4497 Lynmar 2014 Old Vines Quail Hill Vineyard Pinot Noir (Russian River Valley)
## 4498 Maison Stéphane Brocard 2014 Closerie des Alisiers Vieilles Vignes (Gevrey-Chambertin)
## 4499 Gottfried Mocke Wine Projects 2015 Cape Winemakers Guild Pinot Noir (Coastal Region)
## 4500 Nicky Versfeld 2015 Cape Winemakers Guild Double Barrel Semillon (Darling)
## 4501 Vriesenhof 2013 Cape Winemakers Guild Pinot Noir (Stellenbosch)
## 4502 Nitida 2015 Cape Winemakers Guild Swan Song Sauvignon Blanc (Durbanville)
## 4503 Wayfarer 2014 The Traveler Pinot Noir (Fort Ross-Seaview)
## 4504 Passopisciaro 2013 Contrada R Nerello Mascalese (Terre Siciliane)
## 4505 Limerick Lane 2013 Rocky Knoll Zinfandel (Russian River Valley)
## 4506 Wayfarer 2014 Golden Mean Pinot Noir (Fort Ross-Seaview)
## 4507 Calera 2013 Reed Pinot Noir (Mt. Harlan)
## 4508 Wayfarer 2014 Mother Rock Pinot Noir (Fort Ross-Seaview)
## 4509 Donum 2013 Single Vineyard Reserve Pinot Noir (Russian River Valley)
## 4510 Wayfarer 2014 Paige's Ridge Pinot Noir (Fort Ross-Seaview)
## 4511 Williams Selyem 2014 Heintz Vineyard Chardonnay (Russian River Valley)
## 4512 Williams Selyem 2014 Westside Road Neighbors Pinot Noir (Russian River Valley)
## 4513 Calera 2013 Jensen Pinot Noir (Mt. Harlan)
## 4514 Giuseppe Rinaldi 2012 Brunate (Barolo)
## 4515 Donum 2013 Single Vineyard Pinot Noir (Russian River Valley)
## 4516 Massolino 2012 Parafada (Barolo)
## 4517 Patz & Hall 2014 Dutton Ranch Chardonnay (Russian River Valley)
## 4518 Byron 2013 Julia's Vineyard Pinot Noir (Santa Maria Valley)
## 4519 Carlisle 2014 Saitone Ranch Zinfandel (Russian River Valley)
## 4520 Château Pierre-Bise 2011 Grand Cru (Quarts de Chaume)
## 4521 Wayfarer 2014 Wayfarer Vineyard Pinot Noir (Fort Ross-Seaview)
## 4522 Three Sticks 2014 Durell Vineyard Origin Chardonnay (Sonoma Valley)
## 4523 Giacomo Conterno 2011 Francia (Barolo)
## 4524 Biondi 2014 Contrada Monte San Nicolò (Etna)
## 4525 Biondi 2014 Outis Rosso (Etna)
## 4526 Chanin 2014 Los Alamos Vineyard Pinot Noir (Santa Barbara County)
## 4527 Château de Fesles 2011 Vin Rare (Bonnezeaux)
## 4528 COS 2014 Pithos Rosso Red (Vittoria)
## 4529 Aguirre 2011 Reina Ana Cabernet Sauvignon-Merlot (Central Valley)
## 4530 Wood Family Vineyards 2010 Muy Bueno Zinfandel (Livermore Valley)
## 4531 Kaleidos 2008 Osiris Red (Paso Robles)
## 4532 Kenneth Volk 2010 Pomar Junction Vineyard Touriga Nacional (Paso Robles)
## 4533 Finca Albret 2011 Rosado Garnacha (Navarra)
## 4534 Truett Hurst 2011 Eden Ridge, Barrel Select Chardonnay (Mendocino County)
## 4535 Cara Mia NV Sauvignon Blanc (Delle Venezie)
## 4536 Materra Cunat Family Vineyards 2011 Chardonnay (Oak Knoll District)
## 4537 Gary Farrell 2010 Ramal Vineyard Pinot Noir (Carneros)
## 4538 Hess Select 2010 Pinot Noir (Central Coast)
## 4539 Pedroncelli 2012 friends.white White (Sonoma County)
## 4540 Quarticello NV Ferrando (Lambrusco dell'Emilia)
## 4541 Six Degrees 2011 Pinot Noir (California)
## 4542 Austerity 2011 White (California)
## 4543 Château de Piote 2012 Red (Bordeaux Clairet)
## 4544 Costa Archi 2010 Assiolo (Sangiovese di Romagna Superiore)
## 4545 Amador Cellars 2006 Westside Vineyard Zinfandel (Amador County)
## 4546 Green Truck 2010 Petite Sirah (Mendocino County)
## 4547 Brochelle Vineyards 2010 Zinfandel (Paso Robles)
## 4548 Château Larroque 2012 Red (Bordeaux Rosé)
## 4549 Cornellana 2011 Cabernet Sauvignon-Merlot (Cachapoal Valley)
## 4550 Harlow Ridge 2011 Cabernet Sauvignon (Lodi)
## 4551 Harlow Ridge 2011 Chardonnay (Lodi)
## 4552 Green Truck 2011 Sauvignon Blanc (Lake County)
## 4553 Dominio de Eguren 2011 Protocolo Rosé (Vino de la Tierra de Castilla)
## 4554 Vinum 2010 Pinot Noir (California)
## 4555 William Cole 2011 Albamar Pinot Noir (Casablanca Valley)
## 4556 Bodegas 1898 2009 Ramón Roqueta Garnacha (Catalunya)
## 4557 Fattoria Giuseppe Savini 2011 Rondineto Merlot (Colli Aprutini)
## 4558 Paul Cheneau NV Demi Sec Sparkling (Cava)
## 4559 Eguren 2015 Viura (Vino de la Tierra de Castilla)
## 4560 Quinta do Castelinho 2013 Quinta Dona Mafalda Vinhas Velhas Red (Douro)
## 4561 Rock Point 2014 Pinot Noir (Oregon)
## 4562 Jose Maria Vieira 2014 Borges Quinta da Soalheira Red (Douro)
## 4563 Kopke 2013 Reserva Red (Douro)
## 4564 Les Vignerons Réunis de Monségur 2014 Château Tuilerie Pagès (Bordeaux)
## 4565 Martin Ranch 2013 Thérèse Vineyards Dos Niñas Vineyard Syrah (Santa Clara Valley)
## 4566 Weisinger 2013 Estate Tempranillo (Rogue Valley)
## 4567 Loft 2015 Sauvignon Blanc (California)
## 4568 Il Feuduccio Di S. Maria D'Orni 2014 Fonte Venna (Montepulciano d'Abruzzo)
## 4569 Illuminati Dino 2010 Pieluni Riserva (Montepulciano d'Abruzzo Colline Teramane)
## 4570 Viñalba 2014 Reserva Cabernet Sauvignon (Valle de Uco)
## 4571 Covila 2015 Adivino Tinto Joven (Rioja)
## 4572 Adega Mãe 2014 Chardonnay (Lisboa)
## 4573 Adega Mãe 2014 Viognier (Lisboa)
## 4574 Barba 2013 I Vasari Old Vines (Montepulciano d'Abruzzo)
## 4575 Beacon Hill 2015 Riesling
## 4576 Casa Ferreirinha 2015 Esteva Red (Douro)
## 4577 Casa Santos Lima 2015 Gewurztraminer (Lisboa)
## 4578 Château de Birot 2015 Bordeaux Blanc
## 4579 Chic Barcelona NV Semi-Sec Rosé Sparkling (Cava)
## 4580 DFJ Vinhos 2013 Paxis Pinot Noir (Lisboa)
## 4581 Prats & Symington LDA 2015 Prazo de Roriz Red (Douro)
## 4582 Quinta do Filoco 2011 Reserva Red (Douro)
## 4583 Quinta dos Poços 2014 Grande Reserva Red (Douro)
## 4584 Sanguinhal 2013 Casabel Red (Lisboa)
## 4585 South Stage 2010 Alchemy Red (Rogue Valley)
## 4586 Villa Giada 2015 Suri (Moscato d'Asti)
## 4587 Manzwine 2015 Rosé (Lisboa)
## 4588 Messias 2014 Selection Red (Bairrada)
## 4589 Palacio de Fefiñanes 2009 Albariño (Rías Baixas)
## 4590 Perception 2008 Chardonnay (Russian River Valley)
## 4591 Qupé 2008 Syrah (Central Coast)
## 4592 Ridge 2008 York Creek Zinfandel (California)
## 4593 Sanguis 2006 Waxing Poetic Syrah (California)
## 4594 Santa Sofia 2007 Valpolicella Superiore Ripasso
## 4595 Sartori 2006 Vigneti di Montegradella (Valpolicella Classico Superiore)
## 4596 Scott Family 2008 Pinot Noir (Arroyo Seco)
## 4597 St. Francis 2007 Cabernet Sauvignon (Sonoma County)
## 4598 Allegrini 2008 Corte Giara (Valpolicella Ripasso)
## 4599 Arger-Martucci 2006 Cabernet Sauvignon (Napa Valley)
## 4600 Arrowood 2008 Saralee's Vineyard Viognier (Russian River Valley)
## 4601 Atwater 2008 Dry Riesling (Finger Lakes)
## 4602 Atwater 2008 Gewürztraminer (Finger Lakes)
## 4603 Autonom 2007 Law of Proportions Syrah (California)
## 4604 Beringer 2007 Private Reserve Cabernet Sauvignon (Napa Valley)
## 4605 Bodegas Tarima 2009 Monastrell (Jumilla)
## 4606 Château Grande Cassagne 2008 Grenache-Syrah (Costières de Nîmes)
## 4607 Cono Sur 2009 Visión Gewürztraminer (Casablanca Valley)
## 4608 Corteforte 2007 Podere Bertarole Ripassato (Valpolicella Classico Superiore)
## 4609 Degani 2008 Cicilio (Valpolicella Classico Superiore Ripasso)
## 4610 Dierberg 2007 Syrah (Santa Ynez Valley)
## 4611 Domaine Nicolas Boiron 2008 Red (Côtes du Rhône)
## 4612 Dominio de Tares 2007 Baltos Mencía (Bierzo)
## 4613 Finca Allende 2008 Blanco White (Rioja)
## 4614 Genium Celler 2006 Ecològic Red (Priorat)
## 4615 Highland Cellars 2007 Oughterson Family Estates Riesling (Seneca Lake)
## 4616 Keuka Lake Vineyards 2008 Falling Man Vineyard Dry Riesling (Finger Lakes)
## 4617 Korta 2009 Viognier-Sauvignon Blanc-Chardonnay White (Lontué Valley)
## 4618 Luigi Righetti 2007 Capitel de' Roari (Amarone della Valpolicella Classico)
## 4619 Francesco Rinaldi 2013 Cannubi (Barolo)
## 4620 No Girls 2014 La Paciencia Vineyard Grenache (Walla Walla Valley (OR))
## 4621 Orfila 2014 Sequestered Pinot Noir (Santa Maria Valley)
## 4622 Saintsbury 2015 Stanly Ranch Pinot Noir (Carneros)
## 4623 Sheldon 2016 Springloaded Monkey Paw Luc's Vineyard Tempranillo (Sonoma County)
## 4624 Te Mata 2014 Coleraine Red (Hawke's Bay)
## 4625 Trapiche 2012 Terroir Series Finca Ambrosia Single Vineyard Malbec (Uco Valley)
## 4626 Boffa 2014 Ovello (Barbaresco)
## 4627 Brezza 2013 Castellero (Barolo)
## 4628 Curto Marco 2013 La Foia (Barolo)
## 4629 Domaine Drouhin 2015 Édition Limitée Chardonnay (Dundee Hills)
## 4630 Saintsbury 2015 Pratt Vineyard Pinot Noir (Sonoma Coast)
## 4631 Mauro Veglio 2013 Gattera (Barolo)
## 4632 Mirafiore 2013 Paiagallo (Barolo)
## 4633 Domaine Laporte 2016 Le Rochoy (Sancerre)
## 4634 El Esteco 2013 Chañar Punco Red (Calchaquí Valley)
## 4635 Elyse 2012 York Creek Vineyard Petite Sirah (Spring Mountain District)
## 4636 Henri Bourgeois 2014 Etienne Henri (Sancerre)
## 4637 Bergström 2015 Sigrid Chardonnay (Willamette Valley)
## 4638 Bethel Heights 2014 The High Wire Estate Chardonnay (Eola-Amity Hills)
## 4639 Bodega Catena Zapata 2013 Nicolas Catena Zapata Cabernet Sauvignon-Malbec (Mendoza)
## 4640 Carlisle 2015 Limerick Lane Vineyard Zinfandel (Russian River Valley)
## 4641 Carlisle 2015 Papa's Block Syrah (Russian River Valley)
## 4642 Carlisle 2015 Zinfandel (Dry Creek Valley)
## 4643 Casa Anadia 2013 Palácio Anadia Reserva Touriga Nacional (Dão)
## 4644 Casca Wines 2012 Monte Cascas Vinha das Cardosas Red (Bairrada)
## 4645 Daniel Chotard 2015 Les Cris (Sancerre)
## 4646 Domaine Bernard Fleuriet et Fils 2015 Pur Jus (Sancerre)
## 4647 Quinta dos Murças 2015 Vintage (Port)
## 4648 Château Dassault 2006 Barrel sample (Saint-Émilion)
## 4649 Château Rahoul 2006 Barrel sample (Graves)
## 4650 Alter Ego de Palmer 2008 Barrel sample (Margaux)
## 4651 Château Fontenil 2008 Barrel sample (Fronsac)
## 4652 Château Kirwan 2008 Barrel sample (Margaux)
## 4653 Château Latour-Martillac 2008 Barrel sample (Pessac-Léognan)
## 4654 Vietti 2003 Tre Vigne (Barbera d'Asti)
## 4655 Château Bourgneuf-Vayron 2006 Barrel sample (Pomerol)
## 4656 Château Haut-Bergey 2006 Barrel sample (Pessac-Léognan)
## 4657 Château Lafleur-Gazin 2006 Barrel sample (Pomerol)
## 4658 Backsberg 2003 Babylons Toren Red (Paarl)
## 4659 Pulenta Estate 2008 La Flor Malbec (Mendoza)
## 4660 Stark-Condé 2006 Cabernet Sauvignon (Stellenbosch)
## 4661 Château Bouscaut 2006 Barrel sample (Pessac-Léognan)
## 4662 Château de France 2006 Barrel sample (Pessac-Léognan)
## 4663 Château Olivier 2006 Barrel sample (Pessac-Léognan)
## 4664 Château Smith Haut Lafitte 2006 Barrel sample (Pessac-Léognan)
## 4665 Château Bastor-Lamontagne 2008 Barrel Sample (Sauternes)
## 4666 Château Croizet-Bages 2008 Barrel sample (Pauillac)
## 4667 Château Ferrière 2008 Barrel sample (Margaux)
## 4668 Klinker Brick 2007 Farráh Syrah (Lodi)
## 4669 Tildio 2006 Cabernet Franc (Wahluke Slope)
## 4670 42°S NV Brut Méthode Traditionelle Sparkling Wine (Tasmania)
## 4671 Pine & Brown 2013 Cabernet Sauvignon (Rutherford)
## 4672 Point & Line 2014 Vogelzang Vineyard Sauvignon Blanc (Santa Ynez Valley)
## 4673 Schloss Johannisberger 2014 Rotlack Kabinett Feinherb Riesling (Rheingau)
## 4674 Sequoia Grove 2012 Cambium Red (Napa Valley)
## 4675 Skinner 2013 Mourvèdre (El Dorado)
## 4676 Sokol Blosser 2013 Goosepen Block Pinot Noir (Dundee Hills)
## 4677 Gros Ventre 2013 Baranoff Vineyard Pinot Noir (Russian River Valley)
## 4678 Hawk and Horse Vineyards 2011 Cabernet Sauvignon (Red Hills Lake County)
## 4679 Joh. Jos. Prüm 2014 Wehlener Sonnenuhr Spätlese Riesling (Mosel)
## 4680 Johannishof 2014 Rüdesheimer Berg Rottland Spätlese Riesling (Rheingau)
## 4681 King Estate 2014 Antiquum Vineyards Pinot Gris (Willamette Valley)
## 4682 Kokomo 2015 Grenache Rosé (North Coast)
## 4683 Palacios Remondo 2011 Propiedad (Rioja)
## 4684 Lang & Reed 2013 Two-Fourteen Cabernet Franc (Napa Valley)
## 4685 Lucienne 2013 Lone Oak Vineyard Chardonnay (Santa Lucia Highlands)
## 4686 MacPhail 2013 The Flyer Pinot Noir (Russian River Valley)
## 4687 Michael David 2013 Freakshow Cabernet Sauvignon (Lodi)
## 4688 Navarro 2014 Pinot Noir (Anderson Valley)
## 4689 Occasio 2013 Cabernet Sauvignon (Livermore Valley)
## 4690 Pali 2014 Huntington Pinot Noir (Santa Barbara County)
## 4691 Pear Valley 2013 Distraction Red (Paso Robles)
## 4692 Renwood 2013 Riker Vineyard Zinfandel (Amador County)
## 4693 San Pedro 2013 1865 Limited Edition Cabernet Sauvignon-Syrah (Cachapoal Valley)
## 4694 Soquel Vineyards 2013 Library Selection Estate Pinot Noir (Santa Cruz Mountains)
## 4695 Starmont 2015 Rosé of Pinot Noir (Carneros)
## 4696 Stephen Ross 2015 Rosé of Pinot Noir (Edna Valley)
## 4697 Stoller 2015 Pinot Noir Rosé (Dundee Hills)
## 4698 Stonehedge 2014 Reserve Chardonnay (Napa Valley)
## 4699 Bodegas Landaluce 2012 Fincas Landaluce Crianza (Rioja)
## 4700 Bodegas Palacio 2012 Cosme Palacio Vendimia Seleccionada (Rioja)
## 4701 Benoît Daridan 2014 Pinot Noir-Gamay (Cheverny)
## 4702 Benoît Daridan 2014 Rosé (Cheverny)
## 4703 Campolargo 2013 Vinha do Putto Branco White (Bairrada)
## 4704 Coeur de Terre 2013 Oregon Pinot Noir (Willamette Valley)
## 4705 Cummins Road 2012 Pinot Noir
## 4706 Il Falchetto 2013 Bricco Paradiso (Barbera d'Asti Superiore)
## 4707 La Fusina 2013 Dogliani Superiore
## 4708 Leonard Kreusch 2014 Piesporter Goldtröpfchen Kabinett Riesling (Mosel)
## 4709 Luigi Bosca 2012 Cabernet Sauvignon (Mendoza)
## 4710 Monchiero Carbone 2011 Printi Riserva (Roero)
## 4711 Montalbera 2014 La Ribelle (Barbera d'Asti)
## 4712 Raiza 2013 Crianza (Rioja)
## 4713 Mount Veeder 2012 Reserve Red (Mount Veeder)
## 4714 Paolo Manzone 2013 Fiorenza Cascina Meriame (Barbera d'Alba Superiore)
## 4715 Peter Nicolay 2014 Riesling (Mosel)
## 4716 Peter Nicolay 2014 Ürziger Goldwingert Spätlese Riesling (Mosel)
## 4717 Podere Ruggeri Corsini 2012 Armujan (Barbera d'Alba)
## 4718 Quinta Nova de Nossa Senhora do Carmo 2011 Pomares Red (Douro)
## 4719 Rodney Strong 2014 Rosé of Malbec (Sonoma County)
## 4720 Silvan Ridge 2013 Pinot Noir (Willamette Valley)
## 4721 Terras de Alter 2014 Terra d'Alter Alvarinho (Alentejano)
## 4722 Terras de Alter 2014 Terra d'Alter White (Alentejano)
## 4723 Schmitt Söhne 2014 Relax Riesling (Mosel)
## 4724 Shoofly 2014 Pinot Noir (Victoria)
## 4725 Tabor 2014 Mt. Tabor Chardonnay (Galilee)
## 4726 Tiza 2013 Malbec (Uco Valley)
## 4727 Larkspur 2013 Pinot Noir (Oregon)
## 4728 Ledger David 2013 Malbec (Rogue Valley)
## 4729 Liberated 2013 Pinot Noir (Monterey County)
## 4730 Fiuza 2014 3 Castas Red (Tejo)
## 4731 Seven Hills 1997 Seven Hills Vineyard Reserve Cabernet Sauvignon (Walla Walla Valley (WA))
## 4732 Canoe Ridge 1998 Reserve Merlot (Columbia Valley (WA))
## 4733 Kunde 1998 C.S. Ridge Vineyard Chardonnay (California)
## 4734 Signorello 1998 Hope's Cuvée Chardonnay (California)
## 4735 Chateau Ste. Michelle 1997 Late Harvest Sémillon (Columbia Valley (WA))
## 4736 Canoe Ridge 1999 Oak Ridge Vineyard Gewürztraminer (Washington)
## 4737 Château Souverain 1998 Winemaker's Reserve Chardonnay (California)
## 4738 Columbia Winery 1998 Red Willow Vyd Sangiovese (Yakima Valley)
## 4739 Kunde 1998 Reserve Chardonnay (Sonoma Valley)
## 4740 Gainey 1998 Limited Selection Sauvignon Blanc (Santa Ynez Valley)
## 4741 Andrew Will 1999 Ciel du Cheval Sangiovese (Yakima Valley)
## 4742 Mirassou 1997 Harvest Reserve Merlot (California)
## 4743 Seven Hills 1997 Klipsun Vineyard Cabernet Sauvignon (Columbia Valley (WA))
## 4744 Woodward Canyon 1999 Chardonnay (Columbia Valley (WA))
## 4745 Kiona 1999 Ice Wine Chenin Blanc (Yakima Valley)
## 4746 Bridlewood 1998 Winners Circle Syrah (Central Coast)
## 4747 Louis M. Martini 1997 Merlot (Chiles Valley)
## 4748 Robert Mondavi 1998 Sauvignon Blanc (Stags Leap District)
## 4749 Merryvale 1998 Silhouette Chardonnay (California)
## 4750 Stag's Leap Wine Cellars 1998 Beckstoffer Ranch Chardonnay (Napa Valley)
## 4751 Stag's Leap Wine Cellars 1998 Reserve Chardonnay (Napa Valley)
## 4752 Columbia Winery 1998 Otis Vineyard Chardonnay (Yakima Valley)
## 4753 Merryvale 1999 Reserve Sauvignon Blanc (California)
## 4754 Seven Hills 1997 Seven Hills Vineyard Cabernet Sauvignon (Walla Walla Valley (WA))
## 4755 Seven Hills 1997 Seven Hills Vineyard Merlot (Walla Walla Valley (WA))
## 4756 Schug 1997 Heritage Reserve Merlot (Carneros)
## 4757 Bridlewood 1998 Syrah (Paso Robles)
## 4758 Eagle & Rose Estate 1998 Sauvignon Blanc (Napa Valley)
## 4759 Hoodsport 1998 Reserve Chardonnay (Yakima Valley)
## 4760 Columbia Winery 1998 Syrah (Yakima Valley)
## 4761 Bodegas Valdemar 2007 Conde de Valdemar Reserva (Rioja)
## 4762 Cameron Hughes 2011 Lot 418 Cabernet Sauvignon (Oakville)
## 4763 Il Poggione 2009 Brunello di Montalcino
## 4764 Juris 2011 Tricata Red (Weinland Österreich)
## 4765 Kale 2009 Alder Springs Vineyard Spirit Rock Syrah (Mendocino County)
## 4766 Zull 2012 Innere Bergen Riesling (Niederösterreich)
## 4767 Château La Garricq 2011 Moulis-en-Médoc
## 4768 Château l'Évangile 2011 Blason de l'Evangile (Pomerol)
## 4769 Château Saint-Estèphe 2011 Saint-Estèphe
## 4770 Coeur d'Alene 2012 Viognier (Washington)
## 4771 Conti Costanti 2009 Brunello di Montalcino
## 4772 Corte dei Venti 2009 Brunello di Montalcino
## 4773 DaMa 2011 Chardonnay (Columbia Valley (WA))
## 4774 DiamAndes 2011 de Uco Malbec (Uco Valley)
## 4775 Emilio Moro 2010 Ribera del Duero
## 4776 Fattoria dei Barbi 2008 Riserva (Brunello di Montalcino)
## 4777 Finca Lalande 2012 Made with organically grown grapes Malbec (Tupungato)
## 4778 Fritsch 2012 Mordthal Grüner Veltliner (Wagram-Donauland)
## 4779 Godspeed 2012 Estate Grown Chardonnay (Mount Veeder)
## 4780 Gross 2012 Sulz Sauvignon Blanc (Südsteiermark)
## 4781 Rodney Strong 2012 Pinot Noir (Russian River Valley)
## 4782 San Lorenzo 2009 Bramante (Brunello di Montalcino)
## 4783 Schloss Gobelsburg 2012 Lamm Reserve Grüner Veltliner (Kamptal)
## 4784 Schloss Gobelsburg 2012 Renner Reserve Grüner Veltliner (Kamptal)
## 4785 TeHo 2011 Red Blend Malbec-Cabernet Sauvignon (Mendoza)
## 4786 Tenuta di Sesta 2009 Brunello di Montalcino
## 4787 Terre Nere 2009 Brunello di Montalcino
## 4788 Gigante 2010 Ribolla Gialla (Colli Orientali del Friuli)
## 4789 Greek Wine Cellars 2010 Moscofilero Moschofilero (Mantinia)
## 4790 Bella Ragazza 2010 Pinot Grigio (California)
## 4791 Vinum 2010 White Elephant White (California)
## 4792 Castelfeder 2010 15er Pinot Grigio (Alto Adige)
## 4793 Castelluccio 2009 Lunaria Sauvignon Blanc (Forlì)
## 4794 Conte Ferdinando Guicciardini 2009 Massi di Mandorlaia Vermentino (Maremma)
## 4795 Estate Constantin Gofas 2008 Agiorgitiko (Nemea)
## 4796 Fongoli 2009 Grechetto (Colli Martani)
## 4797 Kaiken 2010 Rosé of Malbec Rosé (Mendoza)
## 4798 Lafazanis 2010 Electus Moschofilero (Mantinia)
## 4799 Moretti Omero 2009 Nessuno White (Umbria)
## 4800 Peter Franus 2010 Chardonnay (Carneros)
## 4801 TerrAmore 2010 Pinot Grigio (Veneto)
## 4802 Bogle 2010 Riesling (California)
## 4803 Boutari 2010 Moschofilero (Mantinia)
## 4804 Carmel Road 2010 Pinot Noir (Monterey)
## 4805 Carpineto 2010 Vernaccia di San Gimignano
## 4806 Concannon 2009 Conservancy Cabernet Sauvignon (Livermore Valley)
## 4807 DiamAndes 2010 Malbec (Uco Valley)
## 4808 J. Lohr 2010 Falcon's Perch Pinot Noir (Monterey County)
## 4809 Laurenz V. 2010 Laurenz and Sophie Singing Grüner Veltliner (Niederösterreich)
## 4810 LaVelle 2010 Pinot Gris (Willamette Valley)
## 4811 Merryvale 2009 Hyde Vineyard Chardonnay (Carneros)
## 4812 Montresor 2010 Pinot Grigio (Valdadige)
## 4813 Mullineux 2011 Kloof Street Chenin Blanc (Swartland)
## 4814 Nals Margreid 2009 Müller-Thurgau (Alto Adige)
## 4815 Chaltén 2007 Reserva Pinot Noir (Neuquén)
## 4816 Drappier NV Carte d'Or Brut (Champagne)
## 4817 Fernwood 2005 Estate Zinfandel (Santa Cruz Mountains)
## 4818 Hendry 2005 Barrel Fermented Chardonnay (Napa Valley)
## 4819 Vino Sapien 2006 Thompson Vineyard Granddaddy Grenache (Santa Barbara County)
## 4820 La Fenêtre 2006 Santa Barbara Highlands Vineyard Cabernet Sauvignon (Santa Barbara County)
## 4821 Mercer 2007 Pinot Gris (Columbia Valley (WA))
## 4822 Mercer 2007 Sauvignon Blanc (Columbia Valley (WA))
## 4823 Merryvale 2004 Silhouette Chardonnay (Napa Valley)
## 4824 Pietra Santa 2007 Amore Pinot Grigio (Cienega Valley)
## 4825 Prospero 2006 Petite Sirah (Sonoma County)
## 4826 Robert Mondavi 2006 To Kalon Vineyard Reserve Fumé Blanc (Oakville)
## 4827 Ortman Family 2005 Syrah (Paso Robles)
## 4828 Mansard NV Premier Cru Brut (Champagne)
## 4829 Mosby 2006 Dolcetto (Santa Barbara County)
## 4830 Covey Run 2006 Quail Series Fumé Blanc (Columbia Valley (WA))
## 4831 Foxen 2005 Range 30 West Red (Santa Ynez Valley)
## 4832 Ursa 2005 Petite Sirah (Sierra Foothills)
## 4833 Wolff 2006 Petite Sirah (Edna Valley)
## 4834 Zaca Mesa 2006 Grenache (Santa Ynez Valley)
## 4835 Handley 2005 Handley Vineyard Syrah (Dry Creek Valley)
## 4836 Brander 2007 Merlot (Santa Ynez Valley)
## 4837 Messias NV 20 Anos Tawny (Port)
## 4838 Pear Valley 2014 Pear Valley Vineyard Viognier (Paso Robles)
## 4839 Piccini 2011 Riserva (Chianti Classico)
## 4840 Quinta do Crasto 2014 Crasto White (Douro)
## 4841 Quinta dos Avidagos 2014 Avidagos Red (Douro)
## 4842 Quintay 2015 Q Grand Reserve Sauvignon Blanc (Casablanca Valley)
## 4843 Rickshaw 2014 Pinot Noir (California)
## 4844 Robert Mondavi 2014 Pinot Noir (Carneros)
## 4845 Santa Ema 2015 Reserva Sauvignon Blanc (Leyda Valley)
## 4846 Amity 2013 Pinot Blanc (Willamette Valley)
## 4847 Carpineto 2014 Chianti Classico
## 4848 Casa Emma 2012 Vignalaparco (Chianti Classico)
## 4849 Casa Santos Lima 2014 Bonavita Red (Lisboa)
## 4850 Castell 2014 Castell Trocken Silvaner (Franken)
## 4851 Castello d'Albola 2013 Chianti Classico
## 4852 Castello di Verrazzano 2013 Chianti Classico
## 4853 Collin-Bourisset 2014 Domaine des Hospices Civils de Lyon (Beaujolais-Villages)
## 4854 Dei 2014 Rosso di Montepulciano
## 4855 Domaine de Cause 2012 Malbec (Cahors)
## 4856 Domaine d'Escausses 2014 L'Ombre Fraîche White (Gaillac)
## 4857 Sierra Cantabria 2013 Selección (Rioja)
## 4858 Vignamaggio 2013 Gherardino Riserva (Chianti Classico)
## 4859 Villa Mangiacane 2012 Riserva (Chianti Classico)
## 4860 Villa Wolf 2014 Dry Riesling (Pfalz)
## 4861 Tenute del Cerro 2014 Rosso di Montepulciano
## 4862 Terras de Alter 2015 Terra d'Alter Red (Alentejano)
## 4863 Hearst Ranch 2013 Lone Tree Cabernet Franc (Paso Robles)
## 4864 Herdade Grande 2013 Audaz Reserva Red (Alentejano)
## 4865 Kings Ridge 2014 Pinot Noir (Willamette Valley)
## 4866 Kunde 2013 Reserve Century Vines Zinfandel (Sonoma Valley)
## 4867 Evel 2012 Tinto Red (Douro)
## 4868 Gershon Bachus 2008 Aeolus Estate Red (Temecula)
## 4869 Greenwood Ridge 2013 Estate Bottled Pinot Noir (Mendocino Ridge)
## 4870 La Vida al Camp NV Sant Sadurní d'Anoia Rosé Sparkling (Cava)
## 4871 Melrose 2012 Tempranillo (Umpqua Valley)
## 4872 Murgo 2007 Extra Brut Metodo Classico Nerello Mascalese (Vino Spumante)
## 4873 Oak Knoll 2013 Semi-Sweet Riesling (Willamette Valley)
## 4874 OT 2013 Quadrato Red (Toscana)
## 4875 Palivou 2012 Single Vineyard Selection Agiorgitiko (Nemea)
## 4876 Paul Anheuser 2013 Kreuznacher Scheurebe (Nahe)
## 4877 Pieve Santo Stefano 2012 Lippo Red (Toscana)
## 4878 Prime 2013 Chardonnay (Coombsville)
## 4879 Quercia al Poggio 2008 Le Cataste Red (Toscana)
## 4880 Quinta dos Aciprestes 2011 Tinto Red (Douro)
## 4881 Rainoldi 2010 Inferno Riserva (Valtellina Superiore)
## 4882 Santa Alicia 2012 Gran Reserva de Los Andes Carmenère (Maipo Valley)
## 4883 Sierra Batuco 2012 Reserva Estate Bottled Carmenère (Maule Valley)
## 4884 Thomas Halby 2011 Erdener Treppchen Spätlese Riesling (Mosel)
## 4885 Claudia Papayianni 2013 Claudia Viognier-Assyrtiko White (Chalkidiki)
## 4886 Covila 2010 II Crianza (Rioja)
## 4887 Vigna di Pettineo NV Luna Nascente Rosé Extra Dry Frappato (Vino Spumante)
## 4888 Willamette Valley Vineyards 2012 Estate Chardonnay (Willamette Valley)
## 4889 William Hill Estate 2013 Coastal Collection Merlot (Central Coast)
## 4890 Verse & Chorus 2012 Mat Kearney Red (Napa Valley)
## 4891 Viña Casas Patronales 2012 Reserva Privada Carmenère (Maule Valley)
## 4892 Viña San Vicente 2013 Chungará Gran Reserva Carmenère (Maule Valley)
## 4893 Volpaia 2009 Indue Red (Toscana)
## 4894 William Hill Estate 2013 Cabernet Sauvignon (North Coast)
## 4895 Naggiar 2010 Estate Grown Reserve Syrah (Sierra Foothills)
## 4896 Philo Ridge 2012 Firebrick Vineyard Zinfandel (Mendocino)
## 4897 Ixsir 2011 El Red (Lebanon)
## 4898 Jean-Marc Brocard 2013 Vau de Vey Premier Cru (Chablis)
## 4899 Kokomo 2013 Timber Crest Vineyard Zinfandel (Dry Creek Valley)
## 4900 Lovingston 2012 Josie's Knoll Merlot (Monticello)
## 4901 Lynch Wines 2012 Strummer Syrah (Sierra Foothills)
## 4902 MacLaren 2012 Atoosa's Vineyard Syrah (Russian River Valley)
## 4903 Magnum Vinhos 2014 Ribeiro Santo Encruzado (Dão)
## 4904 Monte da Ravasqueira 2013 Reserva Branco White (Alentejano)
## 4905 Dona Maria-Júlio Bastos 2012 Dona Maria Amantis Reserva Viognier (Alentejano)
## 4906 Fitapreta Vinhos 2013 Palpite Reserva Branco White (Alentejano)
## 4907 Fontanabianca 2012 Bordini (Barbaresco)
## 4908 Friedrich Becker 2011 Becker Family Dry Pinot Noir (Pfalz)
## 4909 Andeluna 2011 Pasionado Cabernet Franc (Tupungato)
## 4910 Anselmo Mendes 2014 Muros Antigos Alvarinho (Vinho Verde)
## 4911 Azamor 2010 Red (Alentejano)
## 4912 Bernhard Huber 2011 Trocken Pinot Noir (Baden)
## 4913 Bodega Tacuil 2013 Viñas de Dávalos Malbec-Cabernet Sauvignon (Salta)
## 4914 Boeger 2013 Estate Zinfandel (El Dorado)
## 4915 Ca' Nova 2007 Ghemme
## 4916 Cantina Santadi 2012 Rocca Rubia (Carignano del Sulcis)
## 4917 Casca Wines 2010 Monte Cascas Reserva Fernão Pires (Tejo)
## 4918 Provam 2014 Varanda do Conde White (Vinho Verde)
## 4919 Quady North 2010 Vinum Pro Virtus Arsenal Cabernet Franc-Merlot (Applegate Valley)
## 4920 Rudius 2013 Stoney Vine Vineyard Syrah (Walla Walla Valley (OR))
## 4921 Saxon Brown 2012 Durell Vineyard Hayfield Block Pinot Noir (Sonoma Coast)
## 4922 Sella & Mosca 2014 Terre Bianche Torbato (Alghero)
## 4923 Terroirs et Talents 2013 Cuvée Claude Brosse (Saint-Véran)
## 4924 Treos 2014 Albariño (Willamette Valley)
## 4925 Pala 2014 Stellato (Vermentino di Sardegna)
## 4926 Poeira 2014 Pó de Poeira White (Douro)
## 4927 François Lurton 2010 Torrontés (Uco Valley)
## 4928 Graceland 2008 Strawberry Fields Shiraz-Cabernet Sauvignon (Western Cape)
## 4929 Josef Chromy 2009 Pinot Noir (Tasmania)
## 4930 Ken Forrester 2010 Petit Pinotage (Western Cape)
## 4931 MAN Vintners 2010 Chardonnay (Coastal Region)
## 4932 Matsu 2008 Toro
## 4933 Michel Torino 2009 Don David Finca La Maravilla #6 Malbec (Cafayate)
## 4934 Milbrandt 2008 The Estates Malbec (Wahluke Slope)
## 4935 Morro Bay 2008 Split Oak Estates Cabernet Sauvignon (California)
## 4936 Naggiar 2009 Estate grown Viognier (Sierra Foothills)
## 4937 Niner 2007 Bootjack Ranch Syrah (Paso Robles)
## 4938 Ott & Murphy 2008 Tempranillo (Columbia Valley (WA))
## 4939 Quinta das Maias 2010 Branco White (Dão)
## 4940 Quinta de Sant'Ana 2010 Rosé (Lisboa)
## 4941 Red Truck 2009 Pink Truck Rosé (California)
## 4942 Rock Wall 2009 Monte Rosso Vineyard Reserve Zinfandel (Sonoma County)
## 4943 Bulletin Place 2009 Shiraz (South Eastern Australia)
## 4944 Tercos 2010 Malbec (Mendoza)
## 4945 Tortoise Creek 2008 Cherokee Lane Cabernet Sauvignon (Lodi)
## 4946 Trust 2008 Syrah (Columbia Valley (WA))
## 4947 Vecchia Cantina di Montepulciano 2008 Poggio Stella Merlot (Cortona)
## 4948 Alente 2007 Premium Red (Alentejo)
## 4949 Bacalhôa Wines of Portugal 2010 JP Azeitão Tinto Red (Setubal)
## 4950 Barefoot Bubbly NV Moscato Spumante Champagne Sparkling (California)
## 4951 Chateau de Launay 2005 Les Vignes de Julia (Bordeaux Supérieur)
## 4952 Cobblestone 2006 Reserve Cabernet Sauvignon (Napa Valley)
## 4953 Dancing Derby 2009 Sauvignon Blanc (California)
## 4954 De Loach 2009 Zinfandel (Russian River Valley)
## 4955 Dominio de Eguren 2010 Protocolo Blanco White (Vino de la Tierra de Castilla)
## 4956 El Escocés Volante 2009 La Multa Old Vine Garnacha (Calatayud)
## 4957 Domaine Roblin 2010 Ammonites (Sancerre)
## 4958 Écluse 2010 Ensemble Lock Vineyard Red (Paso Robles)
## 4959 Finca Constancia 2010 Syrah-Petit Verdot (Vino de la Tierra de Castilla)
## 4960 Bump 2011 Chardonnay (Sonoma Valley)
## 4961 Cantina Cortaccia 2009 Brenntal Riserva Gewürztraminer (Alto Adige)
## 4962 Cantina Produttori Bolzano S. Maddalena/Gries 2011 Dellago Pinot Bianco (Alto Adige)
## 4963 Château de la Roulerie 2011 Les Terrasses Chenin Blanc (Anjou)
## 4964 Château la Varière 2010 Cabernet Franc-Cabernet Sauvignon (Anjou Villages Brissac)
## 4965 ZD 2010 Cabernet Sauvignon (Napa Valley)
## 4966 Joseph Phelps 2010 Estate Grown Cabernet Sauvignon (Napa Valley)
## 4967 Lafou 2011 Els Ameliers Garnacha Blanca (Terra Alta)
## 4968 Monteviejo 2008 Lindaflor Malbec (Mendoza)
## 4969 Patient Cottat 2010 Anciennes Vignes (Sancerre)
## 4970 Domaine l'Ancienne Cure 2011 Sélection Jour de Fruit (Pécharmant)
## 4971 Domaine Seguin 2011 Pouilly-Fumé
## 4972 Domenico Cavazza 2009 Cicogna Syrah (Veneto)
## 4973 San Pedro 2012 1865 Single Vineyard Sauvignon Blanc (Leyda Valley)
## 4974 Sean Thackrey 2010 Cassiopeia Wentzel Vineyard Clone 777 Pinot Noir (Anderson Valley)
## 4975 Tolosa 2011 Pure Chardonnay (Edna Valley)
## 4976 Transcendence 2010 La Paloma Larner Vineyard Syrah (Santa Ynez Valley)
## 4977 Alysian 2010 Floodgate Vineyard Rock Hill Pinot Noir (Russian River Valley)
## 4978 Grafen Neipperg 2006 Neipperger Schlossberg Auslese Traminer (Württemberg)
## 4979 Bonair 2007 Dry Gewürztraminer (Yakima Valley)
## 4980 Calatrasi 2005 Accademia del Sole Shiraz (Sicilia)
## 4981 Cantele 2006 Amativo Red (Salento)
## 4982 Château de Fonbel 2006 Saint-Émilion
## 4983 Château Fonréaud 2006 Listrac-Médoc
## 4984 Château Maris 2005 Old Vine Syrah (Minervois La Liviniere)
## 4985 Colli di Lapio 2005 Donna Chiara Campi Taurasini Aglianico (Irpinia)
## 4986 Domaine Lignères 2003 La Baronne Red (Corbières)
## 4987 Drylands 2008 Sauvignon Blanc (Marlborough)
## 4988 Elki 2008 Sauvignon Blanc (Elqui Valley)
## 4989 Prager 2004 Madeline Riesling (Napa Valley)
## 4990 Rietvallei Estate Wine 2007 Juanita Rosé Cabernet Sauvignon (Robertson)
## 4991 Salvatore Molettieri 2006 Cinque Querce Aglianico (Irpinia)
## 4992 Santa Maria 2004 Torre Pieve Chardonnay (Veneto)
## 4993 Shaw and Smith 2008 Sauvignon Blanc (Adelaide Hills)
## 4994 Talley 2006 Rosemary's Vineyard Pinot Noir (Arroyo Grande Valley)
## 4995 Tedeschi 2005 Capitel San Rocco Red (Rosso del Veronese)
## 4996 Mud House 2007 Swan Sauvignon Blanc (Marlborough)
## 4997 Fattoria Alois 2006 Cunto Pallagrello (Campania)
## 4998 Florio NV Fine Sweet (Marsala)
## 4999 Vice Versa 2005 Le Petit Vice Cabernet Sauvignon-Syrah (Sonoma-Napa)
## 5000 Viña Mar de Casablanca 2008 Reserva Especial Sauvignon Blanc (Casablanca Valley)
## 5001 Willi Haag 2007 Brauneberger Juffer Kabinett Riesling (Mosel-Saar-Ruwer)
## 5002 Barrister 2006 Morrison Lane Syrah (Walla Walla Valley (WA))
## 5003 Brampton 2007 Viognier (Coastal Region)
## 5004 Cadaretta 2006 Merlot (Columbia Valley (WA))
## 5005 Château Cos Labory 2006 Saint-Estèphe
## 5006 Château Teyssier 2006 Saint-Émilion
## 5007 Chatter Creek 2006 Blend 105 Red Wine Red (Columbia Valley (WA))
## 5008 Maurodos 2008 San Román (Toro)
## 5009 K Vintners 2009 The Creator Cabernet Sauvignon-Syrah (Walla Walla Valley (WA))
## 5010 Pirouette 2009 Red (Columbia Valley (WA))
## 5011 Prime 2009 Cabernet Sauvignon (Coombsville)
## 5012 Dunham 2010 Lewis Estate Vineyard Riesling (Columbia Valley (WA))
## 5013 Betz Family 2010 La Côte Patriarche Syrah (Yakima Valley)
## 5014 Constant 2009 Cabernet Franc (Napa Valley)
## 5015 Signorello 2009 Padrone Cabernet Sauvignon (Napa Valley)
## 5016 Stag's Leap Wine Cellars 2009 Cask 23 Estate Cabernet Sauvignon (Napa Valley)
## 5017 Stag's Leap Wine Cellars 2009 FAY Estate Cabernet Sauvignon (Napa Valley)
## 5018 K Vintners 2009 En Cerise Ovide Cabernet Sauvignon-Syrah (Walla Walla Valley (WA))
## 5019 K Vintners 2009 The Beautiful Syrah (Walla Walla Valley (WA))
## 5020 Lamborn Family Vineyards 2008 Vintage VI Cabernet Sauvignon (Howell Mountain)
## 5021 Corliss Estates 2007 Cabernet Sauvignon (Columbia Valley (WA))
## 5022 Creō 2008 Cabernet Sauvignon (Chalk Hill)
## 5023 Goldschmidt 2007 Plus Single Vineyard Selection Vyborny Vineyard Cabernet Sauvignon (Alexander Valley)
## 5024 Gramercy 2010 Syrah (Walla Walla Valley (WA))
## 5025 Marimar Estate 2010 Don Miguel Vineyard La Masía Chardonnay (Russian River Valley)
## 5026 Shafer 2008 Hillside Select Cabernet Sauvignon (Stags Leap District)
## 5027 K Vintners 2009 Stoneridge Vineyard Cabernet Sauvignon (Washington)
## 5028 Krupp Brothers 2008 Stagecoach Vineyard Cabernet Sauvignon (Napa Valley)
## 5029 Constant 2009 Cabernet Sauvignon (Napa Valley)
## 5030 Hewitt 2009 Cabernet Sauvignon (Rutherford)
## 5031 Sineann 2012 Champoux Vineyard Petit Verdot (Columbia Valley (WA))
## 5032 Château de Ferrand 2010 Saint-Émilion
## 5033 Château Haut-Logat 2010 Haut-Médoc
## 5034 Château Suduiraut 2010 Castelnau de Suduiraut (Sauternes)
## 5035 Cortes de Cima 2011 Incógnito Syrah (Alentejano)
## 5036 Domaine Ostertag 2013 Pinot Blanc (Alsace)
## 5037 Domaine Schoffit 2011 Rangen de Thann Grand Cru Clos Saint-Théobald Riesling (Alsace)
## 5038 Domaines Schlumberger 2010 Kessler Grand Cru Gewurztraminer (Alsace)
## 5039 Elyse 2012 L'Ingenue Naggiar Vineyard White (Sierra Foothills)
## 5040 FEL 2013 Pinot Gris (Anderson Valley)
## 5041 Franciscan 2012 Cuvée Sauvage Chardonnay (Carneros)
## 5042 Gibbs 2010 Obsidian Block Reserve Cabernet Sauvignon (St. Helena)
## 5043 Greyscale 2010 Cabernet Sauvignon (Napa Valley)
## 5044 Lapostolle 2012 Canto de Apalta Cellar Selection Red (Rapel Valley)
## 5045 Piña 2011 Firehouse Vineyard Cabernet Sauvignon (Rutherford)
## 5046 Produttori del Barbaresco 2009 Pora Riserva (Barbaresco)
## 5047 Renteria 2011 Cabernet Sauvignon (Napa Valley)
## 5048 Santa Barbara Winery 2012 Reserve Chardonnay (Sta. Rita Hills)
## 5049 Still Waters 2010 Estate Cabernet Franc (Paso Robles)
## 5050 Taken Wine Co. 2013 Complicated Chardonnay (Sonoma County)
## 5051 Boeckel 2012 Zotzenberg Grand Cru Pinot Gris (Alsace)
## 5052 Wildhurst 2013 Reserve Sauvignon Blanc (Lake County)
## 5053 Ixsir 2009 Grande Réserve Syrah-Cabernet Sauvignon (Lebanon)
## 5054 Mount Eden Vineyards 2010 Estate Cabernet Sauvignon (Santa Cruz Mountains)
## 5055 Quinta do Portal 2011 Mural Reserva Red (Douro)
## 5056 Quinta do Sagrado 2008 VT '08 Red (Douro)
## 5057 Robert Biale 2012 Founding Farmers Zinfandel (Napa Valley)
## 5058 Savage Grace 2013 Celilo Vineyard Chardonnay (Columbia Gorge (WA))
## 5059 Savage Grace 2013 Dineen Vineyard Malbec (Rattlesnake Hills)
## 5060 Arbor Crest 2012 Five Vineyards Cabernet Sauvignon (Columbia Valley (WA))
## 5061 Genius Wines 2009 Creò Clajeux Vineyard Cabernet Sauvignon (Chalk Hill)
## 5062 Happy Canyon Vineyard 2012 Sauvignon Blanc (Happy Canyon of Santa Barbara)
## 5063 J. Portugal Ramos 2012 Smart Dog Syrah (Alentejano)
## 5064 José Maria da Fonseca 2013 Periquita Rosé (Península de Setúbal)
## 5065 Abbona Marziano 2010 Pressenda (Barolo)
## 5066 Bava 2010 Scarrone (Barolo)
## 5067 Berryessa Gap 2013 Iberian Series Verdelho (Yolo County)
## 5068 Bodega Norton 2012 Barrel Select Malbec (Mendoza)
## 5069 Borges 2011 Lello Red (Douro)
## 5070 Castle Rock 2012 Pinot Noir (Mendocino)
## 5071 Taliano 2011 Ad Altiora (Barbaresco)
## 5072 The Infinite Monkey Theorem 2012 The Hundreth Monkey Red (Grand Valley)
## 5073 The Infinite Monkey Theorem NV The Blind Watchmaker White (Colorado)
## 5074 Trivento 2013 Amado Sur Torrontés-Viognier-Chardonnay White (Mendoza)
## 5075 Trump 2009 SP Blanc de Noir Brut Pinot Noir (Monticello)
## 5076 Viña Albali 2012 Smooth Red Tempranillo (Valdepeñas)
## 5077 Château de la Vieille Tour 2013 Bordeaux Blanc
## 5078 Château du Coudray Montpensier 2013 Le Grand Bouqueteau (Chinon)
## 5079 Château Lafont Menaut 2012 Pessac-Léognan
## 5080 Château Simard 2011 Saint-Émilion
## 5081 Coeur de Terre 2013 Rustique Rosé (Willamette Valley)
## 5082 Decoy 2012 Chardonnay (Sonoma County)
## 5083 Enanzo 2013 Garnacha Rosado (Navarra)
## 5084 Etienne de Tauriac 2010 Côtes de Bourg
## 5085 Fabbioli Cellars 2011 Tannat (Virginia)
## 5086 Milijan Jelić 2011 Morava (Pocerina)
## 5087 Parusso 2010 Bussia (Barolo)
## 5088 Pezat 2012 Bordeaux Blanc
## 5089 Plantagenet 2011 Hazard Hill Sauvignon Blanc-Semillon (Western Australia)
## 5090 Purlieu 2012 Le Pich Sauvignon Blanc (Napa Valley)
## 5091 Robert Mondavi 2011 Private Selection Meritage (Central Coast)
## 5092 SuLei 2010 Les Collines Vineyard Red (Walla Walla Valley (WA))
## 5093 Valle Secreto 2010 First Edition Cabernet Sauvignon (Cachapoal Valley)
## 5094 Laetitia 2011 Clone 113 Pinot Noir (Arroyo Grande Valley)
## 5095 Mancura 2011 Guardián Reserva Cabernet Sauvignon (Maipo Valley)
## 5096 Maray 2012 Limited Edition Chardonnay (Limarí Valley)
## 5097 O•S Winery 2009 Red (Columbia Valley (WA))
## 5098 Jean-Michel Cazes 2011 Michel Lynch Bio (Bordeaux)
## 5099 Waterbrook 2011 Cabernet Sauvignon (Columbia Valley (WA))
## 5100 Wild Horse 2011 Unbridled Chardonnay (Santa Maria Valley)
## 5101 Errazuriz 2011 Max Reserva Pinot Noir (Casablanca Valley)
## 5102 Fischer 2009 Classic St. Laurent (Thermenregion)
## 5103 Baehner Fournier 2012 Vogelzang Vineyard Sauvignon Blanc (Happy Canyon of Santa Barbara)
## 5104 Canoe Ridge 2010 Reserve Cabernet Sauvignon (Horse Heaven Hills)
## 5105 Casas del Bosque 2011 Pequeñas Producciones Estate Bottled Pinot Noir (Casablanca Valley)
## 5106 Castillo De Feliciana 2012 Albariño (Columbia Valley (WA))
## 5107 Communication Block 2010 Lampyridae Vineyards Red (Mount Veeder)
## 5108 Emiliana 2011 Natura Cabernet Sauvignon (Central Valley)
## 5109 Fess Parker 2011 Pommard Clone Pinot Noir (Santa Barbara County)
## 5110 Markus Huber 2012 Hugo Grüner Veltliner (Niederösterreich)
## 5111 Markus Huber NV Hugo Rosé Sparkling Sparkling (Österreichischer Sekt)
## 5112 Martin & Weyrich 2011 Allegro Moscato (California)
## 5113 Pico Maccario 2010 Epico (Barbera d'Asti Superiore)
## 5114 Pico Maccario 2012 Lavignone (Barbera d'Asti)
## 5115 Robert Mondavi 2012 Private Selection Pinot Grigio (Central Coast)
## 5116 Brilliant Mistake 2013 Taylor Family Vineyard Cabernet Sauvignon (Stags Leap District)
## 5117 Johanneshof Reinisch 2015 Satzing Rotgipfler (Thermenregion)
## 5118 Les Belles Collines 2013 Cabernet Sauvignon (Napa Valley)
## 5119 Loring Wine Company 2015 Sierra Mar Vineyard Pinot Noir (Santa Lucia Highlands)
## 5120 Lucienne 2014 Hook Vineyard Pinot Noir (Santa Lucia Highlands)
## 5121 Lucienne 2014 Smith Vineyard Pinot Noir (Santa Lucia Highlands)
## 5122 Lynch Wines 2013 Strummer Syrah (Sierra Foothills)
## 5123 Armida 2014 Tina's Block Maple Vineyards Zinfandel (Dry Creek Valley)
## 5124 Bernhard Ott 2015 Spiegel Grüner Veltliner (Wagram)
## 5125 Trenel Fils 2015 Les Capitans (Juliénas)
## 5126 Wolff 2014 Old Vines Chardonnay (Edna Valley)
## 5127 Gunter Triebaumer 2014 Gillesberg Cabernet Franc (Burgenland)
## 5128 Haraszthy 2013 Indian Springs Ranch Reserve Zinfandel (Sonoma Valley)
## 5129 Hiedler 2015 Ried Schnekenbichl Reserve Grüner Veltliner (Kamptal)
## 5130 Burrowing Owl 2014 Pinot Noir (Okanagan Valley)
## 5131 Château des Jacques 2015 Côte du Py (Morgon)
## 5132 Concha y Toro 2013 Don Melchor Puente Alto Vineyard Cabernet Sauvignon (Puente Alto)
## 5133 Domaine des Chers 2015 Vieilles Vignes (Saint-Amour)
## 5134 Forstreiter 2015 Schiefer Reserve Riesling (Kremstal)
## 5135 Freakshow 2014 Red (Lodi)
## 5136 Gård 2014 Vaucluse Lawrence Vineyards Red (Columbia Valley (WA))
## 5137 Blue Rock 2014 Pinot Noir (Sonoma Coast)
## 5138 Brancaia 2012 Ilatraia Red (Toscana)
## 5139 Osprey's Dominion 2013 Carmenère (North Fork of Long Island)
## 5140 Gundlach Bundschu 2013 Cabernet Sauvignon (Sonoma Valley)
## 5141 Koyle 2013 Royale Los Lingues Vineyard Cabernet Sauvignon (Colchagua Valley)
## 5142 Anton Bauer 2015 Kreuzgang Chardonnay (Wagram)
## 5143 Baker & Brain 2013 Pendulum Red (Monterey County)
## 5144 Ballentine 2014 Estate Grown Merlot (Napa Valley)
## 5145 Bründlmayer 2013 Reserve Pinot Noir (Niederösterreich)
## 5146 Esser Cellars 2001 Chardonnay (California)
## 5147 Cana's Feast 1999 Red (Red Mountain)
## 5148 Château Pontet-Canet 2000 Pauillac
## 5149 Clos Fourtet 2000 Saint-Émilion
## 5150 Jacob's Creek 2000 Limited Release Chardonnay (Padthaway)
## 5151 Abacela 2006 Claret (Southern Oregon)
## 5152 Babcock 2009 Estate Grown Sauvignon Blanc (Sta. Rita Hills)
## 5153 Borsao 2009 Viña Borgia Grenache (Campo de Borja)
## 5154 Brophy Clark 2008 Chardonnay (Santa Maria Valley)
## 5155 Carmel Road 2008 Chardonnay (Monterey County)
## 5156 Castello Montaúto 2008 Vernaccia di San Gimignano
## 5157 Clarendon Hills 2007 Hickinbotham Grenache (Clarendon)
## 5158 D'Arenberg 2008 The Custodian Grenache (McLaren Vale)
## 5159 Domaine Specht 2008 Pinot Blanc (Alsace)
## 5160 Evergreen Vineyards 2008 Pinot Gris (Oregon)
## 5161 Fess Parker 2007 Rodney's Vineyard Syrah (Santa Barbara County)
## 5162 J. Scott Cellars 2007 Del Rio Vineyard Syrah (Rogue Valley)
## 5163 Juvé y Camps NV Brut Rosé Pinot Noir (Cava)
## 5164 Luminous Hills 2008 Estate Grown Pinot Noir
## 5165 Marqués de Cáceres 2009 Rosé (Rioja)
## 5166 Uccelliera 2008 Rosso di Montalcino
## 5167 Valley of the Moon 2007 Cabernet Sauvignon (Sonoma County)
## 5168 Villa Andretti 2009 Chardonnay (Napa Valley)
## 5169 Wagner 2008 Dry Riesling (Finger Lakes)
## 5170 Abacela 2008 Dolcetto (Umpqua Valley)
## 5171 Bodegas San Prudencio 2007 Envite Crianza (Rioja)
## 5172 Brandlin 2007 Cabernet Sauvignon (Mount Veeder)
## 5173 Canneta 2005 Brunello di Montalcino
## 5174 Cathedral Ridge 2008 Necessity Red Red (Columbia Valley (OR))
## 5175 Domaine Saint Andrieu 2007 Red (Côtes de Provence)
## 5176 Domäne Wachau 2009 Terrassen Federspiel Grüner Veltliner (Wachau)
## 5177 Kumeu River 2010 Estate Chardonnay (Kumeu)
## 5178 Renteria 2010 Pinot Noir (Carneros)
## 5179 Renteria 2010 Pinot Noir (Sonoma Coast)
## 5180 Rex Hill 2011 Jacob-Hart Vineyard Pinot Noir (Willamette Valley)
## 5181 Riecine 2011 Chianti Classico
## 5182 Rutherford Hill 2010 Cabernet Sauvignon (Napa Valley)
## 5183 Stewart 2011 Hollis Cabernet Sauvignon (Napa Valley)
## 5184 Tenuta di Riseccoli 2011 Chianti Classico
## 5185 Terenzi 2012 Morellino di Scansano
## 5186 Durigutti 2011 Malbec (Mendoza)
## 5187 Château Moncontour 2012 Sec (Vouvray)
## 5188 Domaine Buronfosse 2011 Varron Savagnin (Côtes du Jura)
## 5189 Domaine Pignier 2011 A la Percenette Chardonnay (Côtes du Jura)
## 5190 En Garde 2009 Pinot Noir (Russian River Valley)
## 5191 Fattoria di Montemaggio 2008 Chianti Classico
## 5192 Finca la Celia 2011 Heritage Single Vineyard Malbec (Uco Valley)
## 5193 François Millet 2012 Domaine des Côtes Blanches (Sancerre)
## 5194 Dr. Loosen 2009 Eiswein Riesling (Mosel)
## 5195 MacRostie 2012 Chardonnay (Sonoma Coast)
## 5196 Margerum 2012 M5 Red (Santa Barbara County)
## 5197 Poggio Argentiera 2009 Capatosta (Morellino di Scansano)
## 5198 Poggio Scalette 2012 Chianti Classico
## 5199 Querciavalle 2007 Riserva (Chianti Classico)
## 5200 Quinta de Arcossó 2011 Branco Reserva White (Trás-os-Montes)
## 5201 Raptor Ridge 2012 Pinot Noir (Willamette Valley)
## 5202 Raymond 2010 Small Lot Collection Syrah (Napa Valley)
## 5203 Recanati 2010 David Vineyard Reserve Cabernet Sauvignon (Galilee)
## 5204 Rijckaert 2009 Les Grands Elevages Savagnin (Arbois)
## 5205 Stewart 2010 Cabernet Sauvignon (Napa Valley)
## 5206 Thörle 2012 Saulheimer Kalkstein Trocken Silvaner (Rheinhessen)
## 5207 Dopff Au Moulin 2013 Schoenenbourg Grand Cru Pinot Gris (Alsace)
## 5208 Gary Farrell 2012 Maffei Vineyard Zinfandel (Russian River Valley)
## 5209 Fattorie Romeo del Castello 2012 Allegracore Rosso (Etna)
## 5210 Fog Crest 2012 Estate Chardonnay (Russian River Valley)
## 5211 Gary Farrell 2012 Bacigalupi Vineyard Pinot Noir (Russian River Valley)
## 5212 Philipp Kuhn 2012 Laumersheimer Alte Reben Trocken Riesling (Pfalz)
## 5213 Valderiz 2010 Valdehermoso Crianza (Ribera del Duero)
## 5214 Alloro 2011 Estate Riservata Pinot Noir (Chehalem Mountains)
## 5215 C. von Nell-Breuning 1999 Kaseler Dominikanerberg Auslese Riesling (Mosel)
## 5216 Hall 2011 Bergfeld Cabernet Sauvignon (St. Helena)
## 5217 Hunt McKay 2011 Morisoli Vineyard Cabernet Sauvignon (Rutherford)
## 5218 Hyland 2012 Coury Pinot Noir (McMinnville)
## 5219 Hyland 2012 Select Whole Cluster Pinot Noir (McMinnville)
## 5220 Lancaster 2013 Samantha's Sauvignon Blanc (Alexander Valley)
## 5221 Le Casematte 2012 Figliodienneenne Red (Sicilia)
## 5222 Lemelson 2012 Meyer Vineyard Pinot Noir (Willamette Valley)
## 5223 Lenné Estate 2012 Kill Hill Pinot Noir
## 5224 Vercingetorix VX 2012 Caroline's Cuvée Pinot Noir (Willamette Valley)
## 5225 Willamette Valley Vineyards 2012 Elton Chardonnay (Eola-Amity Hills)
## 5226 Villa Maria 2011 Reserve Gimblett Gravels Syrah (Hawke's Bay)
## 5227 Madmon 2012 Soreka Special Reserve Cabernet Sauvignon (Shomron)
## 5228 Merryvale 2011 Cabernet Sauvignon (Napa Valley)
## 5229 Michael Gill Cellars 2012 Tantrum Tempranillo (Paso Robles)
## 5230 Muxagat 2011 Cisne Red (Douro)
## 5231 Domaine Maillard 2011 Corton Les Renardes
## 5232 Eric Kent 2013 Chardonnay (Russian River Valley)
## 5233 Eric Kent 2013 Small Town Pinot Noir (Sonoma Coast)
## 5234 Fidelity 2013 Railyard Zinfandel (Alexander Valley)
## 5235 Au Pied du Mont Chauve 2012 Les Chaumées Premier Cru (Chassagne-Montrachet)
## 5236 Bailiwick 2013 Foray Pinot Noir (Russian River Valley)
## 5237 Caparzo 2011 Brunello di Montalcino
## 5238 Castelli Martinozzi 2011 Brunello di Montalcino
## 5239 Chalk Hill 2012 Estate Red (Chalk Hill)
## 5240 González Byass NV Nectar Dulce Pedro Ximénez (Jerez)
## 5241 Maison Nicolas Perrin 2011 Cornas
## 5242 Clement et Florian Berthier 2014 Terre de Silex Sauvignon Blanc (Coteaux du Giennois)
## 5243 Cordella 2010 Riserva (Brunello di Montalcino)
## 5244 Darcie Kent Vineyards 2012 Crown Block Red (Livermore Valley)
## 5245 DeLille 2013 D2 Red (Columbia Valley (WA))
## 5246 Domaine Matthias et Emile Roblin 2014 Enclos de Maimbray (Sancerre)
## 5247 Domaine Pellé 2014 Les Blanchais (Menetou-Salon)
## 5248 Domaine Vrignaud 2013 Fourchaume Premier Cru Vieilles Vignes (Chablis)
## 5249 Quercia al Poggio 2010 Chianti Classico
## 5250 Querciabella 2012 Chianti Classico
## 5251 Raventós I Blanc 2012 L' Hereu Sparkling (Penedès)
## 5252 Salcheto 2010 Salco (Vino Nobile di Montepulciano)
## 5253 Bailiwick 2013 Silver Pines Vineyard Pinot Noir (Sonoma Mountain)
## 5254 Burrowing Owl 2013 Cabernet Franc (Okanagan Valley)
## 5255 Castrucci 2013 Pinot Noir (Napa Valley)
## 5256 Château de Santenay 2012 Les Brunettes et Planchots (Aloxe-Corton)
## 5257 Grgich Hills 2012 Miljenko's Selection Estate Grown Cabernet Sauvignon (Rutherford)
## 5258 Isabelle et Pierre Clément 2014 La Dame de Châtenoy (Menetou-Salon)
## 5259 K Vintners 2012 The Deal Sundance Syrah (Wahluke Slope)
## 5260 Kanzler 2013 Estate Reserve Pinot Noir (Sonoma Coast)
## 5261 Shining Hill 2010 Red (Columbia Valley (WA))
## 5262 Trimbach 2010 Gewurztraminer (Alsace)
## 5263 Truchard 2011 Pinot Noir (Carneros)
## 5264 Tsantali 2009 Grand Reserve Hand Picked Grapes Red (Rapsani)
## 5265 Umani Ronchi 2011 San Lorenzo (Rosso Conero)
## 5266 Velenosi 2012 Villa Angela Pecorino (Falerio)
## 5267 Wellington 2009 Merlot (Sonoma Valley)
## 5268 Colonnara NV Luigi Ghislieri (Verdicchio dei Castelli di Jesi)
## 5269 David Girard 2012 Estate Vineyard Grenache Blanc (El Dorado)
## 5270 Domaine Ostertag 2011 Barriques Pinot Blanc (Alsace)
## 5271 Domaine Pfister 2011 Tradition Pinot Gris (Alsace)
## 5272 Domaine Sorin 2011 Red (Bandol)
## 5273 Efeste 2011 Lola Evergreen Vineyard Chardonnay (Columbia Valley (WA))
## 5274 El Roy 2010 Nelson Vineyards Sauvignon Blanc (Dry Creek Valley)
## 5275 Fattoria Le Terrazze 2008 Riserva Sassi Neri (Conero)
## 5276 Fox Run 2011 Riesling 10 Hanging Delta Vineyard Riesling (Finger Lakes)
## 5277 Frédéric Mallo 2010 Cuvée Saint-Jacques Gewurztraminer (Alsace)
## 5278 Garces Silva 2013 Boya Sauvignon Blanc (Leyda Valley)
## 5279 Hannes Reeh 2012 Heideboden Rot Red (Burgenland)
## 5280 Damiani 2010 Meritage (Finger Lakes)
## 5281 Damiani 2010 Sunrise Hill Vineyards Merlot (Finger Lakes)
## 5282 Fairview 2010 Primo Pinotage (Paarl)
## 5283 Keuka Spring 2010 Lemberger (Finger Lakes)
## 5284 Lakewood 2011 Dry Riesling (Finger Lakes)
## 5285 Morgenhof 2011 Estate Chenin Blanc (Stellenbosch)
## 5286 Vicari 2011 Del Pozzo Buono (Rosso Piceno)
## 5287 Vie Winery 2010 White Hawk Vineyard Syrah (Santa Barbara County)
## 5288 Vin du Lac 2012 Barrel Select Chardonnay (Columbia Valley (WA))
## 5289 W.T. Vintners 2010 Gorgeous Syrah Destiny Ridge Vineyard Syrah (Horse Heaven Hills)
## 5290 Weingut Mayer am Pfarrplatz 2011 Nussberg Pinot Noir (Vienna)
## 5291 Hope Estate 2009 Shiraz (Hunter Valley)
## 5292 Innocent Bystander 2011 Moscato (Victoria)
## 5293 J. Wilkes 2007 Solomon Hills Vineyard Pinot Noir (Santa Maria Valley)
## 5294 Katnook Estate 2006 Odyssey Cabernet Sauvignon (Coonawarra)
## 5295 Katnook Estate 2009 Sauvignon Blanc (Coonawarra)
## 5296 McCay Cellars 2008 Paisley Red (Lodi)
## 5297 Nice 2008 Malbec (Mendoza)
## 5298 Peachy Canyon 2010 Vortex Zinfandel (Paso Robles)
## 5299 Pieve Vecchia 2008 Pieve dei Monaci (Maremma)
## 5300 Podere Paganico 2009 Rosso di Montalcino
## 5301 Recuerdo 2011 Torrontés (La Rioja)
## 5302 Rolling 2009 Shiraz (Central Ranges)
## 5303 Southern Right 2010 Sauvignon Blanc (Walker Bay)
## 5304 Steppe Cellars 2008 Merlot (Columbia Valley (WA))
## 5305 Sur de los Andes 2010 Bonarda (Mendoza)
## 5306 Taltarni 2009 Three Monks Fumé Blanc Sauvignon Blanc (South Eastern Australia)
## 5307 Tenuta Carlina 2009 La Togata (Rosso di Montalcino)
## 5308 Tormentoso 2009 Syrah-Mourvèdre (Paarl)
## 5309 Altocedro 2010 Reserva Malbec (La Consulta)
## 5310 Brunelli Martoccia 2010 Rosso di Montalcino
## 5311 Cà ed Balos 2011 Moscato d'Asti
## 5312 Carlos Serres 2010 Serres Tempranillo-Garnacha Rosé (Rioja)
## 5313 Castello d'Albola 2008 Le Ellere (Chianti Classico)
## 5314 McCrea Cellars 2007 Cuvée Orleans Syrah (Yakima Valley)
## 5315 Mi Terruño 2008 Mayacaba Malbec (Mendoza)
## 5316 Nuna 2010 Reserve Malbec (Mendoza)
## 5317 Ochoa 2011 Rosado Garnacha Rosé (Navarra)
## 5318 Perrin & Fils 2009 Red (Côtes du Rhône Villages)
## 5319 Jenner 2010 Chardonnay (Sonoma Coast)
## 5320 Laurenz V. 2011 Laurenz and Sophie Singing Grüner Veltliner (Niederösterreich)
## 5321 Liquid Farm 2010 White Hill Chardonnay (Sta. Rita Hills)
## 5322 Lucia 2010 Chardonnay (Santa Lucia Highlands)
## 5323 Marqués de Cáceres 2011 Rosé (Rioja)
## 5324 Aquinas 2010 Chardonnay (Napa Valley)
## 5325 Campo Viejo 2004 Gran Reserva (Rioja)
## 5326 Les Maîtres Vignerons de la Presqu'île de Saint-Tropez 2011 Cave de Saint-Roch les Vignes Rosé (Côtes de Provence)
## 5327 Markus Huber 2011 Gelber Muskateller (Niederösterreich)
## 5328 Maryhill 2009 Proprietor's Reserve Zinfandel (Columbia Valley (WA))
## 5329 Miraflores 2009 Methode Ancienne Syrah (El Dorado)
## 5330 Morgan 2010 Twelve Clones Pinot Noir (Santa Lucia Highlands)
## 5331 Ormilles 2011 Ormilles Rosé (Côtes de Provence)
## 5332 Ravoire et Fils 2011 Domaine de la Rabiotte Rosé (Coteaux d'Aix-en-Provence)
## 5333 Tertulia 2008 Sobra Red (Columbia Valley (WA))
## 5334 Il Roncal 2010 Ribolla Gialla (Colli Orientali del Friuli)
## 5335 Lyeth 2010 L de Lyeth Merlot (Sonoma County)
## 5336 Stylo 2008 Old Vines Garnacha (Calatayud)
## 5337 Argiolas 2007 Is Solinas Red (Isola dei Nuraghi)
## 5338 Atalon 2009 Cabernet Sauvignon (Napa Valley)
## 5339 Cantina Santadi 2011 Villa Solais (Vermentino di Sardegna)
## 5340 Champ de Rêves 2010 Pinot Noir (Anderson Valley)
## 5341 Château Gassier 2011 Sables d'Azur Rosé (Côtes de Provence)
## 5342 Chateau La Calisse 2011 Patricia Ortelli Rosé (Coteaux Varois)
## 5343 Château Réal Martin 2011 Perle de Rosé Rosé (Côtes de Provence)
## 5344 Chessman 2010 Zinfandel (Lodi)
## 5345 Conte d'Attimis-Maniago 2011 Pinot Grigio (Colli Orientali del Friuli)
## 5346 Conte d'Attimis-Maniago 2011 Sauvignon (Colli Orientali del Friuli)
## 5347 Foxen 7200 2012 7200 Cabernet Sauvignon (Happy Canyon of Santa Barbara)
## 5348 Kurt Angerer 2014 Kies Grüner Veltliner (Niederösterreich)
## 5349 Malat 2014 Grüner Veltliner (Kremstal)
## 5350 Michele Satta 2013 Giovin Re Viognier (Toscana)
## 5351 Nottingham Cellars 2012 1846 Cabernet Sauvignon (Livermore Valley)
## 5352 Reaper 2013 Red (Santa Ynez Valley)
## 5353 Refugio Ranch 2012 Red (Santa Ynez Valley)
## 5354 Salomon-Undhof 2014 Franciscus Messwein Grüner Veltliner (Kremstal)
## 5355 Seifried 2013 Pinot Noir (Nelson)
## 5356 Sherwood Estate 2013 Pinot Noir (Waipara Valley)
## 5357 Sonoma-Cutrer 2013 Pinot Noir (Russian River Valley)
## 5358 Umathum 2013 Zweigelt (Burgenland)
## 5359 Waterstone 2013 Sauvignon Blanc (Napa Valley)
## 5360 Allram 2014 Strassertaler Grüner Veltliner (Kamptal)
## 5361 Ashan 2013 Celilo Vineyard Chardonnay (Columbia Gorge (WA))
## 5362 Barba 2011 I Vasari Old Vines (Montepulciano d'Abruzzo)
## 5363 Flying Dreams 2011 Reserve Tempranillo (Columbia Valley (WA))
## 5364 Greenhough 2011 Hope Pinot Noir (Nelson)
## 5365 Hazlitt 1852 Vineyards 2013 Unoaked Chardonnay (Finger Lakes)
## 5366 Hollen Family Vineyards 2007 Cabernet Sauvignon (Mendoza)
## 5367 Giesen 2011 Clayvin Single Vineyard Selection Pinot Noir (Marlborough)
## 5368 Groot Constantia 2012 Pinotage (Constantia)
## 5369 Gualdo del Re 2010 Amansio Passito Aleatico (Val di Cornia Suvereto)
## 5370 Cambridge Road 2011 Pinot Noir (Martinborough)
## 5371 Cappella Sant'Andrea 2013 Vernaccia di San Gimignano
## 5372 Castello della Sala 2014 San Giovanni (Orvieto Classico Superiore)
## 5373 Castello di Gabbiano 2011 Bellezza Gran Selezione (Chianti Classico)
## 5374 Castillo De Feliciana 2011 Reserve Tempranillo (Columbia Valley (WA))
## 5375 Colle Spinello 2012 Morellino di Scansano
## 5376 Commanderie de Peyrassol 2014 Rosé (Côtes de Provence)
## 5377 Seven Deadly Zins 2011 Old Vine Zinfandel (Lodi)
## 5378 Truett Hurst 2012 California Square Red (Paso Robles)
## 5379 Henri Bourgeois 2012 Petit Bourgeois Sauvignon Blanc (Vin de Pays du Val de Loire)
## 5380 Hooker 2011 Old Boys Cabernet Sauvignon (Napa Valley)
## 5381 Lemos & Van Zeller 2012 Rufo Branco White (Douro)
## 5382 Leonard Kreusch 2009 Estate Bottled Beerenauslese Riesling (Rheinhessen)
## 5383 Alexander Valley Vineyards 2012 Wetzel Family Estate Pinot Noir (Alexander Valley)
## 5384 Alexander Valley Vineyards 2010 Alexander School Reserve Cabernet Sauvignon (Alexander Valley)
## 5385 Alexander Valley Vineyards 2011 Estate Merlot (Alexander Valley)
## 5386 Alma Andina 2013 Pinot Grigio (Mendoza)
## 5387 Bello Family Vineyards 2011 Chardonnay (Carneros)
## 5388 Brutocao 2010 Quadriga Red (Mendocino)
## 5389 Chavet Fils 2012 Tradition (Menetou-Salon)
## 5390 Arizona Stronghold 2011 Site Archive Norte Malvasia (Cochise County)
## 5391 Domaine Laurier NV Brut Sparkling (California)
## 5392 Hartley-Ostini 2011 Hitching Post Cork Dancer Pinot Noir (Santa Barbara County)
## 5393 CrossKeys 2011 Petit Verdot (Virginia)
## 5394 Poema NV Brut Sparkling (Cava)
## 5395 Quinta das Carvalhas NV Reserva Ruby (Port)
## 5396 Quinta de Sant'Ana 2012 Verdelho (Lisboa)
## 5397 Rovisco Garcia 2012 Rosé (Alentejano)
## 5398 San Simeon 2012 Chardonnay (Monterey)
## 5399 Tarara 2012 Viognier (Virginia)
## 5400 V. Sattui 2011 Crow Ridge Vineyard Old Vine Zinfandel (Russian River Valley)
## 5401 Valiano 2008 Riserva (Chianti Classico)
## 5402 Villagrán 2007 Cortijo de Balsillas Tempranillo (Vino de la Tierra Altiplano de Sierra Nevada)
## 5403 Herdade da Gâmbia 2011 Red (Península de Setúbal)
## 5404 Ideology Cellars 2010 Reserve Cabernet Sauvignon (Napa Valley)
## 5405 Kokomo 2011 Claret (Dry Creek Valley)
## 5406 Luis Cañas 2009 Crianza (Rioja)
## 5407 Aveleda 2015 Alvarinho (Vinho Verde)
## 5408 Basilicus 2012 Once Upon a Time White (Tokaj)
## 5409 Björnson 2014 Pinot Noir (Eola-Amity Hills)
## 5410 Bodega Chacra 2015 Barda Pinot Noir (Patagonia)
## 5411 Bret Brothers 2014 Terroir du Mâconnais (Mâcon-Villages)
## 5412 Casa do Valle 2015 Branco White (Vinho Verde)
## 5413 Casa Montes 2012 Don Baltazar Malbec (San Juan)
## 5414 Casca Wines 2015 Monte Cascas Reserva White (Douro)
## 5415 Claudio Alario 2012 Sorano (Barolo)
## 5416 Clos Venturi 2015 1769 Carcajolu (Vin de France)
## 5417 Danieli 2014 Premium Kisi (Kakheti)
## 5418 Diego Conterno 2012 Barolo
## 5419 Domaine Carrette 2014 Les Mûres (Saint-Véran)
## 5420 Domaine Edmond Cornu 2014 Chorey-lès-Beaune
## 5421 Evans & Tate 2015 Fresh As A Daisy Sauvignon Blanc (Australia)
## 5422 Fenestra 2012 Ghielmetti Vineyard Petite Sirah (Livermore Valley)
## 5423 Fullerton 2014 Croft Vineyard Pinot Noir (Willamette Valley)
## 5424 Gehricke 2014 Pinot Noir (Los Carneros)
## 5425 Gian Piero Marrone 2011 Riserva (Barbaresco)
## 5426 TintoNegro 2013 Finca La Escuela La Arena Malbec (Mendoza)
## 5427 Tortoise Creek 2013 Cherokee Lane Cabernet Sauvignon (Lodi)
## 5428 Trenel Fils 2014 Mâcon-Villages
## 5429 Troon 2013 Blue Label Zinfandel (Applegate Valley)
## 5430 Viña Alicia 2008 Coleccion de Familia Nebbiolo (Luján de Cuyo)
## 5431 Willful 2014 Pinot Noir (Willamette Valley)
## 5432 Wines & Winemakers 2012 Azul Portugal Red (Bairrada)
## 5433 Z. Alexander Brown 2013 Uncaged Red (North Coast)
## 5434 Zaca Mesa 2012 Syrah (Santa Ynez Valley)
## 5435 SignoSeis 2013 The Angel Oak Malbec (Valle de Uco)
## 5436 50 Harvests 2013 Meritage (Napa Valley)
## 5437 Trapiche 2010 Oak Cask Malbec (Mendoza)
## 5438 Ventisquero 2009 Grey [Glacier] Single Block Carmenère (Maipo Valley)
## 5439 Black Kite 2009 Redwood's Edge Pinot Noir (Anderson Valley)
## 5440 Bodega Noemía de Patagonia 2010 A Lisa Malbec (Patagonia)
## 5441 Labouré-Roi 2009 Premier Cru Réserve (Chablis)
## 5442 Le Colture NV Fagher Brut (Conegliano Valdobbiadene Prosecco Superiore)
## 5443 Macari 2008 Cabernet Franc (North Fork of Long Island)
## 5444 McFadden 2009 Gewürztraminer (Potter Valley)
## 5445 Morgan 2010 Sauvignon Blanc (Monterey)
## 5446 Ravoire et Fils 2009 Le Pont Red (Bandol)
## 5447 Ricci Curbastro NV Rosè Brut Sparkling (Franciacorta)
## 5448 Rock Wall 2010 Super Alamedan Red (California)
## 5449 Speri 2007 La Roggia (Recioto della Valpolicella Classico)
## 5450 Eugenio Collavini 2007 Brut Ribolla Gialla (Friuli)
## 5451 Fonseca NV Bin 27 Finest Reserve (Port)
## 5452 Gary Farrell 2009 Bradford Mountain Vineyards Zinfandel (Dry Creek Valley)
## 5453 Virage 2010 Rosé (Napa Valley)
## 5454 Vista Alegre NV Reserve Ruby (Port)
## 5455 W. & J. Graham's NV Six Grapes Reserve (Port)
## 5456 Zardetto 2010 Tre Venti Brut Millesimato (Conegliano Valdobbiadene Prosecco Superiore)
## 5457 Bersi Serlini 2005 Brut Cuvèe 4 Millesimato Chardonnay (Franciacorta)
## 5458 Fratelli Muratori 2002 Villa Crespia Iacono Riserva Dosaggio Zero Chardonnay (Franciacorta)
## 5459 Lantieri de Paratico NV Extra Brut Sparkling (Franciacorta)
## 5460 Annefield Vineyards 2009 Cabernet Franc (Virginia)
## 5461 Besserat de Bellefon NV Cuvée des Moines Brut Blanc de Blancs Chardonnay (Champagne)
## 5462 Natale Verga 2010 Montepulciano d'Abruzzo
## 5463 Justin 2010 Cabernet Sauvignon (Paso Robles)
## 5464 Les Vignobles Gueissard 2012 White (Côtes de Provence)
## 5465 Longoria 2011 La Encantada Vineyard Pinot Noir (Sta. Rita Hills)
## 5466 Ludwig 2010 Hammerklavier McIntyre Vineyard Pinot Noir-Dornfelder Red (Santa Lucia Highlands)
## 5467 Marqués de Elciego 2009 Selección (Rioja)
## 5468 Matetic 2012 Corralillo Riesling (Casablanca Valley)
## 5469 Merriam 2011 Pinot Noir (Russian River Valley)
## 5470 Passion Vineyards 2009 Mango's Vineyard Merlot (Columbia Valley (WA))
## 5471 Peters Family 2009 Sonoma Stage VIneyard Pinot Noir (Sonoma Coast)
## 5472 Pure Cru 2010 Purety White (Napa Valley)
## 5473 Rios de Chile 2012 Reserva Sauvignon Blanc (Casablanca Valley)
## 5474 Round Pond 2012 Estate Sauvignon Blanc (Rutherford)
## 5475 Saladini Pilastri 2010 Montetinello (Rosso Piceno)
## 5476 San Lorenzo 2009 Montepulciano d'Abruzzo
## 5477 Silver Buckle 2011 Chardonnay (Lodi)
## 5478 Umani Ronchi 2011 Serrano (Rosso Conero)
## 5479 Vistamar 2011 Sepia Reserva Merlot (Central Valley)
## 5480 Willamette Valley Vineyards 2011 Whole Cluster Fermented Pinot Noir (Willamette Valley)
## 5481 Wy'East Vineyards 2010 Pinot Noir (Columbia Gorge (OR))
## 5482 Wy'East Vineyards 2012 Pinot Gris (Columbia Gorge (OR))
## 5483 Zero One Vintners 2010 Sauce Red (Columbia Valley (WA))
## 5484 Broadway Vineyards 2010 Estate Grown Chardonnay (Carneros)
## 5485 Caliterra 2011 Tributo Single Vineyard Block #Algarrobo Sauvignon Blanc (Leyda Valley)
## 5486 Captûre 2011 Ma Vie Carol Chardonnay (Pine Mountain-Cloverdale Peak)
## 5487 Château Léoube 2011 Rouge de Léoube Red (Côtes de Provence)
## 5488 Domaine de la Sanglière 2012 Breezette Rosé (Côtes de Provence)
## 5489 Domaine Sainte-Marie 2012 Vie Vité Rosé (Côtes de Provence)
## 5490 Ecco Domani 2011 Collezione Pinot Grigio (Delle Venezie)
## 5491 Grands Terroirs de France 2010 Grand Cru (Saint-Émilion)
## 5492 Tenute Silvio Nardi 2007 Poggio Doria (Brunello di Montalcino)
## 5493 Unger 2012 Gotschelle Reserve Grüner Veltliner (Kremstal)
## 5494 Neumeister 2012 Klausen Sauvignon Blanc (Südoststeiermark)
## 5495 Pepper Bridge 2011 Seven Hills Vineyard Red (Walla Walla Valley (WA))
## 5496 Sequum 2009 Kidd Ranch Cabernet Sauvignon (Napa Valley)
## 5497 Sequum 2010 Four Soil Melange Cabernet Sauvignon (Napa Valley)
## 5498 Tinhof 2012 Golden Erd Weissburgunder (Burgenland)
## 5499 Astrales 2010 Christina (Ribera del Duero)
## 5500 Château Lilian Ladouys 2011 Saint-Estèphe
## 5501 Duckhorn 2009 The Discussion Red (Napa Valley)
## 5502 Fess Parker 2012 Bien Nacido Vineyard Chardonnay (Santa Maria Valley)
## 5503 Giovanni Chiappini 2010 Guado de' Gemoli (Bolgheri Superiore)
## 5504 Arndorfer 2012 Strasser Winberge Reserve Riesling (Kamptal)
## 5505 Jurtschitsch 2012 Lamm Reserve Grüner Veltliner (Kamptal)
## 5506 Clos du Marquis 2011 Saint-Julien
## 5507 Duckhorn 2009 Cabernet Sauvignon (Howell Mountain)
## 5508 Eichinger 2012 Gaisberg Reserve Riesling (Kamptal)
## 5509 Gamache 2010 Reserve Cabernet Sauvignon (Columbia Valley (WA))
## 5510 Gruber Röschitz 2012 Hundspoint Grüner Veltliner (Weinviertel)
## 5511 Hager Matthias 2012 Seeberg Grüner Veltliner (Niederösterreich)
## 5512 Salvioni 2008 Brunello di Montalcino
## 5513 SignoSeis 2011 The Angel Oak Reserva Malbec (Valle de Uco)
## 5514 Stadlmann 2012 Mandel-Höh Zierfandler (Thermenregion)
## 5515 Ingrid Groiss 2012 Sauberg Tradition Grüner Veltliner (Niederösterreich)
## 5516 Casas del Bosque 2013 Gran Reserva Estate Bottled Chardonnay (Casablanca Valley)
## 5517 Peltier 2013 Hybrid Sauvignon Blanc (Lodi)
## 5518 Quinta do Cavalinho 2014 Vale das Donas White (Tejo)
## 5519 Santa Alicia 2014 Reserva Espiritu de Los Andes Estate Bottled Carmenère (Maipo Valley)
## 5520 Santa Luz 2014 Reserva Encinos Carmenère (Colchagua Valley)
## 5521 Quinta do Cavalinho 2014 Herdade dos Templários Rosé (Tejo)
## 5522 Tres Palacios 2014 Reserve Pinot Noir (Maipo Valley)
## 5523 Creación 2013 Cabernet Sauvignon (Maule Valley)
## 5524 Don Bernardino 2013 Godello (Valdeorras)
## 5525 Grati 2014 Red (Toscana)
## 5526 Pata Negra 2012 Roble (Ribera del Duero)
## 5527 Cristiari 2013 Riesling (Costers del Segre)
## 5528 Ripken 2011 Under the Sea Primitivo (Lodi)
## 5529 Camelot NV Pinot Noir (California)
## 5530 Dominio del Viento 2010 Crianza (Rioja)
## 5531 Lomas del Valle 2014 Coastal Cool Climate Estate Bottled Cabernet Franc Rosé (Casablanca Valley)
## 5532 François Lurton 2013 Hermanos Lurton Verdejo (Rueda)
## 5533 Alto Los Romeros 2014 Sauvignon Blanc (Central Valley)
## 5534 Montes 2013 Classic Series Cabernet Sauvignon (Colchagua Valley)
## 5535 Zerran 2013 Garnatxa Blanca Garnacha Blanca (Montsant)
## 5536 Estampa 2013 Estate Viognier-Chardonnay (Colchagua Valley)
## 5537 Gresser NV Brut Sparkling (Willamette Valley)
## 5538 Insomnia 2013 Pinot Grigio (California)
## 5539 Santa Alba 2012 Grand Reserve Chardonnay (Maule Valley)
## 5540 Scratchpad 2013 Sauvignon Blanc (Central Coast)
## 5541 Terrai 2013 OVG Garnacha (Cariñena)
## 5542 Bodegas Riojanas 2013 Puerta Vieja Blanco Viura (Rioja)
## 5543 Santa Ema 2014 Select Terroir Carmenère (Cachapoal Valley)
## 5544 Trencalòs 2013 Sauvignon Blanc (Vino de la Tierra de Castilla)
## 5545 Viñedos y Bodegas Pablo 2013 Menguante Garnacha (Cariñena)
## 5546 Loosen Bros. 2010 Dr. L Riesling (Mosel)
## 5547 Mer Soleil 2010 Silver Unoaked Chardonnay (Santa Lucia Highlands)
## 5548 Novy 2010 Oley Late Harvest Sweet Viognier (Russian River Valley)
## 5549 Novy 2010 Van der Kamp Vineyard Pinot Meunier (Sonoma Mountain)
## 5550 Spice Route 2009 Chakalaka Red (Swartland)
## 5551 Tiefenbrunner 2009 Kirchleiten Sauvignon (Alto Adige)
## 5552 Château Eugénie 2008 Cuvée Pierre le Grand Malbec-Merlot (Cahors)
## 5553 Château Jolys 2009 Cuvée Jean (Jurançon)
## 5554 Château Ponzac 2008 Patiement Malbec (Cahors)
## 5555 Feudi di San Gregorio 2009 Campanaro White (Irpinia)
## 5556 Gouguenheim Winery 2006 Blue Melosa Malbec (Mendoza)
## 5557 Henri Milan 2006 Les Clos Red (Les Baux de Provence)
## 5558 Illahe 2008 Reserve Pinot Noir (Willamette Valley)
## 5559 Jardin 2006 Cobblers Hill Red (Stellenbosch)
## 5560 Jean-Luc Baldès 2008 Clos Triguedina Red (Cahors)
## 5561 Laurenz V. 2010 Charming Grüner Veltliner (Kamptal)
## 5562 Lis Neris 2008 Confini White (Venezia Giulia)
## 5563 Lungarotti 2008 Torveto White (Umbria)
## 5564 Martino 2008 Reserva Old Vine Malbec (Agrelo)
## 5565 McCay Cellars 2008 Zinfandel (Russian River Valley)
## 5566 Nals Margreid 2009 Penon Pinot Bianco (Alto Adige)
## 5567 Novy 2008 Judge Family Vineyard Syrah (Bennett Valley)
## 5568 Peter Nicolay 2010 Riesling (Mosel)
## 5569 Agricola Querciabella 2008 Batàr White (Toscana)
## 5570 Benvenuto de la Serna 2007 Trisagio Red (Uco Valley)
## 5571 Cantina Cortaccia 2010 Hofstatt Pinot Bianco (Alto Adige)
## 5572 Longboard 2007 Wholer Vineyard Pinotage (Russian River Valley)
## 5573 Jean-Luc Baldès 2009 Château de Flore Malbec (Cahors)
## 5574 Morgenhof 2009 Mint Haven Cabernet Sauvignon (Simonsberg-Stellenbosch)
## 5575 Nals Margreid 2010 Penon Pinot Bianco (Alto Adige)
## 5576 Kumeu River 2006 Sauvignon Blanc (Marlborough)
## 5577 Michel Torino 2007 Cuma Organic Torrontés (Cafayate)
## 5578 Fazi Battaglia 2005 Le Moie (Verdicchio dei Castelli di Jesi Classico Superiore)
## 5579 Miner 2005 Garys' Vineyard Pinot Noir (Santa Lucia Highlands)
## 5580 Monte del Frá 2005 Cà del Magro (Custoza Superiore)
## 5581 Pillitteri 2004 Select Late Harvest Riesling (Niagara Peninsula)
## 5582 Rosenblum 2005 Rominger Vineyard Syrah (Yolo County)
## 5583 Wagner 2006 Ice Vidal Blanc (Finger Lakes)
## 5584 Luigi Bosca 2004 Gala 2 Red (Mendoza)
## 5585 Masottina 2005 Ai Palazzi Pinot Grigio (Piave)
## 5586 Andretti 2006 Selections Fumé Blanc (North Coast)
## 5587 Kaiken 2005 Cabernet Sauvignon (Mendoza)
## 5588 Kestrel 2004 Merlot (Yakima Valley)
## 5589 Martin Ranch 2004 Thérèse Vineyards Estate Cabernet Sauvignon (Santa Cruz Mountains)
## 5590 Aldegheri 2006 le Pietre White (Veronese)
## 5591 Andrew Will 2005 Ciel du Cheval Vineyard Sangiovese (Red Mountain)
## 5592 Cantina Terlano 2006 Pinot Bianco (Alto Adige)
## 5593 Girlan 2006 Toretta Classico White (Alto Adige)
## 5594 Carl Ehrhard 2008 Rudesheimer Kabinett Dry Riesling (Rheingau)
## 5595 Madrigal 2010 Gewürztraminer (Mendocino)
## 5596 Matetic 2010 EQ Sauvignon Blanc (San Antonio)
## 5597 Montezovo 2009 Valpolicella Superiore Ripasso
## 5598 Odfjell 2009 Orzada Malbec (Lontué Valley)
## 5599 Pellegrini Vineyards 2005 Reserve Red (North Fork of Long Island)
## 5600 Prinz Salm 2009 Wallhausen Johannisberg GG Trocken Riesling (Nahe)
## 5601 Rex Hill 2008 Alloro Vineyard Pinot Noir (Chehalem Mountains)
## 5602 Rooster Hill 2009 Dry Riesling (Finger Lakes)
## 5603 Root:1 2011 Sauvignon Blanc (Casablanca Valley)
## 5604 Salvatore Principe 2009 Take Flight, Artists Collection Limited Edition Zinfandel (Lodi)
## 5605 Sartori 2006 I Saltari Le Vigne di Turano (Valpolicella Superiore)
## 5606 Sheldrake Point 2007 Reserve Riesling (Finger Lakes)
## 5607 Sparkling Pointe 2005 Blanc de Blancs Sparkling (North Fork of Long Island)
## 5608 Stephen Ross 2009 Pinot Noir (Edna Valley)
## 5609 Corte Lenguin 2007 La Coeta (Amarone della Valpolicella Classico)
## 5610 Corte Sant' Alda 2008 Campi Magri (Valpolicella Superiore Ripasso)
## 5611 Educated Guess 2009 Chardonnay (Napa Valley)
## 5612 Hermann J. Wiemer 2006 Cuvée Brut Sparkling (Finger Lakes)
## 5613 Hermann J. Wiemer 2009 Semi-Dry Riesling (Finger Lakes)
## 5614 Holman Ranch 2009 Pinot Noir (Carmel Valley)
## 5615 Viña Casablanca 2010 Nimbus Single Vineyard Sauvignon Blanc (Casablanca Valley)
## 5616 Wittmann 2009 Westhofener Trocken Riesling (Rheinhessen)
## 5617 Zanoni 2006 Zovo (Amarone della Valpolicella)
## 5618 Arduini 2009 Valpolicella Classico Superiore Ripasso
## 5619 Chapel Hill 2006 Shiraz-Grenache (McLaren Vale)
## 5620 Château de Fuissé 2006 Les Brulés (Pouilly-Fuissé)
## 5621 Hidalgo NV Morenita Cream Sherry (Jerez)
## 5622 Karly 2006 Buck's Ten Point Zinfandel (Amador County)
## 5623 Zull 2007 Innere Bergen Riesling (Niederösterreich)
## 5624 Henschke 2005 Louis Semillon (Eden Valley)
## 5625 Bouchard Père & Fils 2006 Chassagne-Montrachet
## 5626 Cantina Giardino 2004 Nude Aglianico (Irpinia)
## 5627 Schloss Gobelsburg 2006 Eiswein Grüner Veltliner (Kamptal)
## 5628 Hidalgo NV Gobernador Oloroso Seco Palomino (Jerez)
## 5629 Mastroberardino 2007 Radici (Fiano di Avellino)
## 5630 Nickel & Nickel 2005 Suscol Vineyard Merlot (Napa Valley)
## 5631 Obsidian Ridge 2005 Obsidian Ridge Vineyard Cabernet Sauvignon (Red Hills Lake County)
## 5632 Gary Farrell 2007 Redwood Ranch Sauvignon Blanc (Sonoma County)
## 5633 Giuseppe Apicella 2003 A' Scippata Riserva Costa d'Amalfi Red (Campania)
## 5634 Karly 2005 Sadie Upton Zinfandel (Amador County)
## 5635 Librandi 2005 Magno Megonio Magliocco (Val di Neto)
## 5636 Longoria 2006 Sanford & Benedict Vineyard Pinot Noir (Sta. Rita Hills)
## 5637 Louis Latour 2006 Les Folatières Premier Cru (Puligny-Montrachet)
## 5638 Apolloni 2006 Estate Reserve Pinot Noir (Willamette Valley)
## 5639 Bonny Doon 2005 Le Pousseur Syrah (Central Coast)
## 5640 Chelsea Goldschmidt 2006 Merlot (Dry Creek Valley)
## 5641 CVNE 2001 Real De Asúa (Rioja)
## 5642 Feudi di San Gregorio 2006 Cutizzi (Greco di Tufo)
## 5643 Foppiano 2006 Estate Pinot Noir (Russian River Valley)
## 5644 GMG Vinicola 2001 Riserva (Taurasi)
## 5645 Hans Moser 2004 V.T.S. Red (Burgenland)
## 5646 Oriol Rossell NV Brut Rosé Sparkling (Cava)
## 5647 Retour 2006 Pinot Noir (Willamette Valley)
## 5648 Roux Père et Fils 2006 Clos des Poruzots Premier Cru (Meursault)
## 5649 Steininger 2015 Kittmannsberg Reserve Grüner Veltliner (Kamptal)
## 5650 Tua Rita 2013 Per Sempre Syrah (Toscana)
## 5651 Tua Rita 2013 Perlato del Bosco Sangiovese (Toscana)
## 5652 Türk 2015 Kremser Sandgrube Reserve Grüner Veltliner (Kremstal)
## 5653 Türk 2015 Kremser Wachtberg Reserve Riesling (Kremstal)
## 5654 Wood Family Vineyards 2014 Big Wood Zin Zinfandel (Livermore Valley)
## 5655 Airfield Estates 2014 Reserve Cabernet Sauvignon (Yakima Valley)
## 5656 Ancient Oak Cellars 2012 Reserve Series Alcaeus Berger Vineyard Red (Sonoma Mountain)
## 5657 Broken Earth 2015 Verdelho (Paso Robles)
## 5658 Township 7 2015 Blue Terrace Vineyard Reserve Sauvignon Blanc (Okanagan Valley)
## 5659 Balletto 2014 Sexton Hill Vineyard Estate Grown Estate Bottled Pinot Noir (Russian River Valley)
## 5660 Château de Chatelard 2015 Cuvée Terre de Lumière (Moulin-à-Vent)
## 5661 Cougar 2015 Falanghina (Temecula Valley)
## 5662 Donna Olimpia 1898 2013 Millepassi (Bolgheri)
## 5663 Dusted Valley 2013 Petite Sirah (Wahluke Slope)
## 5664 Ehlers Estate 2013 Merlot (St. Helena)
## 5665 Foley 2014 Steel Chardonnay (Sta. Rita Hills)
## 5666 Georges Duboeuf 2015 Domaine de Roche Noire (Moulin-à-Vent)
## 5667 Gernot and Heike Heinrich 2014 Chardonnay (Leithaberg)
## 5668 Chateau de Manissy 2015 Cuvée de Lys (Tavel)
## 5669 Murphy-Goode 2015 The Fumé Sauvignon Blanc (North Coast)
## 5670 Naggiar 2014 Reserve Barbera (Sierra Foothills)
## 5671 Poggio al Tesoro 2013 Sondraia (Bolgheri Superiore)
## 5672 Rainer Wess 2015 Pfaffenberg Reserve Grüner Veltliner (Kremstal)
## 5673 Robert Mondavi 2013 Reserve Chardonnay (Carneros)
## 5674 Ryan Cochrane 2014 Fiddlestix Vineyard Pinot Noir (Sta. Rita Hills)
## 5675 Stift Klosterneuburg 2014 Steinfeld Pinot Noir (Thermenregion)
## 5676 Telaya 2014 Mourvèdre
## 5677 Thirty-Seven Wines 2015 Albariño (Sonoma Coast)
## 5678 Jax 2014 Y3 Taureau Red (Napa Valley)
## 5679 Milbrandt 2007 The Estates Merlot (Wahluke Slope)
## 5680 Milbrandt 2009 Evergreen Vineyard Chardonnay (Columbia Valley (WA))
## 5681 Milbrandt 2009 Traditions Riesling (Columbia Valley (WA))
## 5682 Neumeister 2009 Gelber Muskateller Klassik Gelber Muskateller (Südoststeiermark)
## 5683 Norbert Bauer 2009 Diermannsee Riesling (Niederösterreich)
## 5684 Testarossa 2008 Niclaire Pinot Noir (California)
## 5685 Angelo Negro & Figli 2006 Sudisfà Riserva (Roero)
## 5686 Damilano 2009 Barbera d'Asti
## 5687 Firefly Night 2008 Lone Oak Vineyard Pinot Noir (Santa Lucia Highlands)
## 5688 Kunde 2008 Viognier (Sonoma Valley)
## 5689 Louis Barthélémy NV Opale Demi-Sec (Champagne)
## 5690 Mailly Grand Cru NV Brut Rosé (Champagne)
## 5691 Nada Giuseppe 2005 Casot Riserva (Barbaresco)
## 5692 Pioiero 2007 Nebbiolo d'Alba
## 5693 Riverbench 2008 Reserve Chardonnay (Santa Maria Valley)
## 5694 Château de Roquebrune 2010 Cuvée Reine (Lalande de Pomerol)
## 5695 Château Potensac 2011 Médoc
## 5696 Citille di Sopra 2009 Brunello di Montalcino
## 5697 DaMa 2010 Syrah (Columbia Valley (WA))
## 5698 DaMa 2012 Chardonnay (Columbia Valley (WA))
## 5699 Gamache 2011 Estate Cabernet Franc (Columbia Valley (WA))
## 5700 Amavi 2011 Syrah (Walla Walla Valley (WA))
## 5701 Bolsignano 2009 Grazia (Brunello di Montalcino)
## 5702 Bouchaine 2012 Bouche d'Or Chardonnay (Carneros)
## 5703 Bucher 2012 Pinot Noir (Russian River Valley)
## 5704 Johanneshof Reinisch 2012 Spiegel Zierfandler (Thermenregion)
## 5705 Villadoria 2004 Riserva (Barolo)
## 5706 Reininger 2010 Merlot (Walla Walla Valley (WA))
## 5707 Reininger 2010 Syrah (Walla Walla Valley (WA))
## 5708 Syncline 2011 Grenache-Carignan (Columbia Valley (WA))
## 5709 Tegernseerhof 2012 Bergdistel Smaragd Grüner Veltliner (Wachau)
## 5710 TeHo 2012 Malbec (Mendoza)
## 5711 Jäger 2012 Federspiel Selection Grüner Veltliner (Wachau)
## 5712 Kerloo 2011 Grenache (Horse Heaven Hills)
## 5713 Kirkland Signature 2011 Series Cabernet Sauvignon (Oakville)
## 5714 La Poderina 2008 Poggio Abate Riserva (Brunello di Montalcino)
## 5715 Le Macchiole 2010 Scrio Syrah (Toscana)
## 5716 Château Beaumont 2011 Haut-Médoc
## 5717 Château Clément-Pichon 2010 Haut-Médoc
## 5718 Château Fonréaud 2011 Listrac-Médoc
## 5719 Château Lafite Rothschild 2011 Carruades de Lafite (Pauillac)
## 5720 Château Larose Perganson 2011 Haut-Médoc
## 5721 Château Montrose 2011 La Dame de Montrose (Saint-Estèphe)
## 5722 Abbazia di Novacella 2015 Pinot Grigio (Alto Adige Valle Isarco)
## 5723 Bacigalupi 2014 Estate Pinot Noir (Russian River Valley)
## 5724 Boatique 2014 Sauvignon Blanc (Big Valley District-Lake County)
## 5725 Brooklyn West 2012 Riesling (Santa Ynez Valley)
## 5726 Bründlmayer 2015 Langenloiser Rosé (Niederösterreich)
## 5727 Vietti 2011 Rocche di Castiglione (Barolo)
## 5728 Hearst Ranch 2013 Bunkhouse Cabernet Sauvignon (Paso Robles)
## 5729 Herzog 2012 Special Reserve Cabernet Sauvignon (Alexander Valley)
## 5730 Iron Horse 2013 Q Pinot Noir (Green Valley)
## 5731 J. Bookwalter 2013 Chapter 6 Red (Columbia Valley (WA))
## 5732 Château de Brigue 2015 Brique Prestige Rosé (Côtes de Provence)
## 5733 Collier Falls 2012 Hillside Estate Cabernet Sauvignon (Dry Creek Valley)
## 5734 Davis Family 2013 Cab 5 Rockpile Ridge Red (Rockpile)
## 5735 Domaine de la Bégude 2014 Rosé (Bandol)
## 5736 Domaine de la Vallongue 2015 Cuvée Garrigues Rosé (Les Baux de Provence)
## 5737 Domaines Ott 2015 Clos Mireille Rosé (Côtes de Provence)
## 5738 Elvio Cogno 2014 Anas-cëtta Nascetta (Langhe)
## 5739 Fallbrook 2012 33 Degrees North BDX Gracie Hill Vineyard Red (South Coast)
## 5740 Four Lanterns 2013 Shadow Grenache-Syrah (Paso Robles)
## 5741 Frank Family 2012 Petite Sirah (Napa Valley)
## 5742 Elena Walch 2010 Castel Ringberg Riserva Lagrein (Alto Adige)
## 5743 Griesbauerhof 2013 Georg Mumelter Lagrein (Alto Adige)
## 5744 Oak Farm 2015 Mohr-Fry Ranches Sauvignon Blanc (Lodi)
## 5745 Paraiso Vineyards 2014 Chardonnay (Santa Lucia Highlands)
## 5746 The Dot 2015 Austrian Pepper Grüner Veltliner (Niederösterreich)
## 5747 Ravoire et Fils 2015 Château Saint Hippolyte Rosé (Coteaux d'Aix-en-Provence)
## 5748 Replica 2014 Chardonnay (California)
## 5749 Rôtie Cellars 2014 Southern White (Washington)
## 5750 Salomon & Andrew 2012 Pinot Noir (Central Otago)
## 5751 L'Ecole No. 41 2013 Syrah (Columbia Valley (WA))
## 5752 Trefethen 2013 Chardonnay (Oak Knoll District)
## 5753 Lincourt 2013 Lindsay's Vineyard Pinot Noir (Sta. Rita Hills)
## 5754 Louis Latour 2012 Les Beaux Monts Premier Cru (Vosne-Romanée)
## 5755 Patz & Hall 2013 Pinot Noir (Sonoma Coast)
## 5756 Avennia 2013 Arnaut Boushey Vineyard Syrah (Yakima Valley)
## 5757 Boeger 2014 Walker Zinfandel (El Dorado)
## 5758 Rotta 2013 Osso Balenda Vineyard Zinfandel (Paso Robles)
## 5759 Balletto 2013 Sexton Hill Vineyard Pinot Noir (Russian River Valley)
## 5760 Bien Nacido 2012 Syrah (Santa Maria Valley)
## 5761 Cebada 2014 Estate Grown Rosé of Pinot Noir (Santa Ynez Valley)
## 5762 Cramele Recas 2013 Conocul Ambrozy Sauvignon Blanc (Recas)
## 5763 Davies 2013 Ferrington Vineyards Pinot Noir (Anderson Valley)
## 5764 Davies 2013 Nobles Vineyard Pinot Noir (Fort Ross-Seaview)
## 5765 Domaine Barmès-Buecher 2013 Leimental Riesling (Alsace)
## 5766 Domaine Zind-Humbrecht 2013 Calcaire Pinot Gris (Alsace)
## 5767 Domaine Zind-Humbrecht 2013 Terroir d'Alsace Riesling (Alsace)
## 5768 Domaines Ott 2014 Clos Mireille Rosé (Côtes de Provence)
## 5769 Errazuriz 2013 Max Reserva Cabernet Sauvignon (Aconcagua Valley)
## 5770 Fiddlehead 2014 Goosebury Sauvignon Blanc (Santa Ynez Valley)
## 5771 Landmark 2013 Escolle Road Vineyard Pinot Noir (Santa Lucia Highlands)
## 5772 Last Light 2013 Derbyshire Vineyard Pinot Noir (San Luis Obispo County)
## 5773 Le Vigne 2012 Ame de la Vigne Red (Paso Robles)
## 5774 Loring Wine Company 2013 Durell Vineyard Pinot Noir (Sonoma Coast)
## 5775 Monte del Frà 2009 Scarnocchio (Amarone della Valpolicella Classico)
## 5776 Monte Faustino 2010 Amarone della Valpolicella Classico
## 5777 Pieropan 2011 Vigna Garzon (Amarone della Valpolicella)
## 5778 Quinta Cruz 2012 Pierce Ranch Tempranillo (San Antonio Valley)
## 5779 Masi 2011 Costasera (Amarone della Valpolicella Classico)
## 5780 Testarossa 2013 Chardonnay (Santa Lucia Highlands)
## 5781 Raymond 2012 District Collection Cabernet Sauvignon (Diamond Mountain District)
## 5782 Le Petit Cochonnet 2015 Chardonnay (Vin de France)
## 5783 L'original French Kiss 2015 Chardonnay (Vin de France)
## 5784 Café du Midi 2015 Sauvignon Blanc (Vin de France)
## 5785 Château Saint Baillon 2015 Réserve du Château Rosé (Côtes de Provence)
## 5786 Voiturette 2015 Cabernet Sauvignon (Vin de France)
## 5787 Fat Gaucho 2013 Reserva Malbec (Mendoza)
## 5788 Bodega Cuarto Dominio 2013 Chento Malbec (Mendoza)
## 5789 Maison de la Villette 2015 Pinot Noir (Vin de France)
## 5790 Belle Made For You NV Cabernet Sauvignon (Vin de France)
## 5791 Balo 2014 Riesling (Anderson Valley)
## 5792 Bodegas Valdemar 2015 Conde Valdemar Rosé (Rioja)
## 5793 Castle Rock 2012 Pinot Noir (Los Carneros)
## 5794 La Vieille Ferme 2014 White (Vin de France)
## 5795 Le Pépin 2015 Sauvignon Blanc (Vin de France)
## 5796 Romantic 2015 Authentic & Chic Merlot (Vin de France)
## 5797 Vermeil 2014 Sauvignon Blanc (Calistoga)
## 5798 Café du Midi 2015 Grenache Rosé (Vin de France)
## 5799 Arzuaga 2014 La Planta (Ribera del Duero)
## 5800 Figaro 2013 Tinto Red (Calatayud)
## 5801 Region 1 2014 Malbec (Mendoza)
## 5802 Belle Made For You NV Red (Vin de France)
## 5803 Château de Saint Martin 2015 No 2 de Saint-Martin Rosé (Côtes de Provence)
## 5804 Housley's Century Oak 2013 Cabernet Sauvignon (Napa Valley)
## 5805 L. Tramier & Fils 2014 Marquis de Brim Grande Réserve Cabernet Sauvignon (Vin de France)
## 5806 Naggiar 2014 Estate Rosé (Sierra Foothills)
## 5807 Patriarche Père et Fils 2014 Pinot Noir (Vin de France)
## 5808 Patriarche Père et Fils 2015 Chardonnay (Vin de France)
## 5809 Tedeschi Family 2012 Stargazer Vineyard Merlot (Napa Valley)
## 5810 Bacalhôa Wines of Portugal 2013 Serras de Azeitão Seleção do Enólogo Branco White (Península de Setúbal)
## 5811 Borges 2013 Quinta da Soalheira Branco White (Douro)
## 5812 Nuiton-Beaunoy 2012 Réserve (Bourgogne)
## 5813 Quevedo 2013 Oscar's Branco White (Douro)
## 5814 Real Compañia de Vinos 2013 Rosado (Spain)
## 5815 Quinta do Portal NV 10-Years-Old Tawny (Port)
## 5816 Domaine Chatelain 2013 Petit Chablis
## 5817 Dominio de Eguren 2013 Protocolo White (Vino de la Tierra de Castilla)
## 5818 Bodega Catena Zapata 2013 Chardonnay (Mendoza)
## 5819 Caves Transmontanas 2010 Vértice Cuvée Reserva Brut Sparkling (Douro)
## 5820 Epilogo 2013 Sauvignon Blanc-Moscatel White (La Mancha)
## 5821 Finca Flichman 2013 Misterio Malbec (Mendoza)
## 5822 Santa Ana 2013 Reserve Chardonnay (Mendoza)
## 5823 Aveleda NV Meio Seco Sparkling White Sparkling (Vinho Espumante)
## 5824 Pittacum 2013 Tres Obispos Mencía Rosado (Bierzo)
## 5825 Tilia 2013 Torrontés (Mendoza)
## 5826 Manuel Olivier 2011 Bourgogne
## 5827 Caves Aliança 2013 Alabastro Branco White (Alentejano)
## 5828 Cave de Kientzheim-Kaysersberg NV Anne de K Brut Rosé Pinot Noir (Crémant d'Alsace)
## 5829 Quinta Vale do Armo 2013 Vila Jardim Siria (Tejo)
## 5830 Bodega Atamisque 2013 Serbal Viognier (Tupungato)
## 5831 Juan Gil 2012 Honoro Vera Monastrell (Jumilla)
## 5832 Mr. Riggs 2014 The Bolter Shiraz (South Australia)
## 5833 Poças 2016 Coroa d'Ouro Branco White (Douro)
## 5834 Quinta de Porrais 2016 Sete Vales Branco White (Douro)
## 5835 Quinta do Pôpa 2015 Contos da Terra Red (Douro)
## 5836 Renwood 2015 Sangiovese (Amador County)
## 5837 Revello Fratelli 2013 Cerretta (Barolo)
## 5838 Reyes 2011 Cabernet Sauvignon (Sierra Pelona Valley)
## 5839 Rodney Strong 2014 Cabernet Sauvignon (Alexander Valley)
## 5840 Russian Ridge 2014 Concerto Red (Santa Cruz Mountains)
## 5841 San Simeon 2016 Stefano Vineyard Viognier (Paso Robles)
## 5842 Tercero 2014 Camp 4 Vineyard Marsanne (Santa Ynez Valley)
## 5843 Valentina Cubi 2015 Iperico (Valpolicella)
## 5844 William Hill Estate 2016 Sauvignon Blanc (North Coast)
## 5845 Windy Canyon 2014 Cabernet Sauvignon (Walla Walla Valley (WA))
## 5846 Andrew Rich 2014 Ciel du Cheval Grenache (Columbia Valley (WA))
## 5847 Andrew Rich 2014 Glacial Red (Columbia Valley (WA))
## 5848 Beringer 2015 Founders' Estate Cabernet Sauvignon (California)
## 5849 Black's Station 2015 Red (Yolo County)
## 5850 Boas Quintas 2016 Fonte do Ouro Encruzado (Dão)
## 5851 Borges 2013 Reserva Tinto Red (Dão)
## 5852 Casa Santos Lima 2013 Palha Canas Red (Lisboa)
## 5853 Cave Geisse 2014 Brut Sparkling (Pinto Bandeira)
## 5854 Château Bourdieu 2015 Blaye Côtes de Bordeaux
## 5855 Château de Cranne 2015 7ème Génération (Côtes de Bordeaux)
## 5856 Château de Cranne 2015 Dompter la Bête (Cadillac Côtes de Bordeaux)
## 5857 Château de Lagarde 2015 Bordeaux Supérieur
## 5858 Château du Cèdre 2014 Le Cèdre Vintage Malbec (Vin de Liqueur)
## 5859 Château Godard Bellevue 2015 Francs Côtes de Bordeaux
## 5860 Château Haut-Rian 2015 Prestige (Côtes de Bordeaux)
## 5861 Château Landereau 2015 Bordeaux Supérieur
## 5862 Tenuta Cavalier Pepe 2015 Lila Falanghina (Irpinia)
## 5863 Teruzzi & Puthod 2016 Vernaccia di San Gimignano
## 5864 Thomas George 2014 Cresta Ridge Vineyard Estate Pinot Noir (Russian River Valley)
## 5865 Tin Barn 2013 Coryelle Fields Vineyard Syrah (Sonoma Coast)
## 5866 Triennes 2016 Rosé (Mediterranée)
## 5867 Vignerons des Terres Secrètes 2014 Pouilly-Fuissé
## 5868 Wakefield 2015 Cabernet Sauvignon (Clare Valley)
## 5869 Winter's Hill 2015 Block 9 114 Pinot Noir (Dundee Hills)
## 5870 Highway 12 2014 SRB Red (Sonoma County)
## 5871 Judd's Hill 2013 Swig Vineyard Merlot (Napa Valley)
## 5872 Keating 2014 Buchignani Vineyard Zinfandel (Dry Creek Valley)
## 5873 Kenwood 2013 Cabernet Sauvignon (Sonoma County)
## 5874 Kirkland Signature 2014 Signature Series Chardonnay (Russian River Valley)
## 5875 Labouré-Roi 2015 Savigny-lès-Beaune
## 5876 Maquis 2014 Gran Reserva Carmenère (Colchagua Valley)
## 5877 Marimar Estate 2014 La Masia Don Miguel Vineyard Pinot Noir (Russian River Valley)
## 5878 Murphy-Goode 2013 All In Claret (Alexander Valley)
## 5879 Nicora 2014 G-S-M (Central Coast)
## 5880 Peter Mertes 2015 Platinum Riesling (Mosel)
## 5881 Paraduxx 2013 Proprietary Red (Napa Valley)
## 5882 Dumas Station 2013 Cabernet Sauvignon (Walla Walla Valley (WA))
## 5883 Ernest & Julio Gallo 2014 Estate Pinot Noir (Russian River Valley)
## 5884 Florent Descombe 2014 Pouilly-Fuissé
## 5885 Ghost Pines 2014 Winemaker's Blend Merlot (Sonoma County-Napa County)
## 5886 Giornata 2015 Ramato Quattro Bassi Ranch Vineyard Pinot Grigio (San Luis Obispo)
## 5887 Gotas de Mar 2015 Albariño (Rías Baixas)
## 5888 Goyette 2014 Pinot Noir (Sonoma County)
## 5889 Hunt Cellars 2014 Moonlight Sonata Chardonnay (Monterey County)
## 5890 J Vineyards & Winery 2012 Blanc de Noirs Sparkling (Russian River Valley)
## 5891 Dr. Volkmar 2015 Kabinett Riesling (Rheinhessen)
## 5892 VinEcol 2009 Malbec (Mendoza)
## 5893 Origin 2010 Malbec (Mendoza)
## 5894 Belle Vallée 2005 Port Pinot Noir (Willamette Valley)
## 5895 Foursight 2009 Charles Vineyard Sémillon (Anderson Valley)
## 5896 Trapiche 2010 Zaphy Torrontés (Mendoza)
## 5897 Ambiente 2009 Cabernet Sauvignon (Mendoza)
## 5898 Azur 2010 Sauvignon Blanc (Rutherford)
## 5899 Cline 2009 Zinfandel (California)
## 5900 Airlie 2009 Barrel Fermented Chardonnay (Willamette Valley)
## 5901 Bodega Vistandes 2008 Viña Famatina Cabernet Sauvignon (Famatina Valley)
## 5902 Alpamanta 2009 Natal Cabernet Sauvignon (Mendoza)
## 5903 2 Copas 2009 Red (Mendoza)
## 5904 Espuela del Gaucho 2010 Cabernet Sauvignon (Mendoza)
## 5905 Além 2006 Red (Alentejano)
## 5906 Bodega Carmine Granata 2009 Sémillon (Mendoza)
## 5907 Cruz Alta 2007 Grand Reserve Malbec (Mendoza)
## 5908 Ricardo Santos 2009 Sémillon (Mendoza)
## 5909 Gardel 2009 Torrontés (Mendoza)
## 5910 Alma del Sur 2009 Colección Cabernet Sauvignon-Malbec (Mendoza)
## 5911 Domaine Leflaive 2008 Bâtard-Montrachet
## 5912 Domaine Leflaive 2008 Chevalier-Montrachet
## 5913 Copain Wines 2009 Monument Tree Pinot Noir (Anderson Valley)
## 5914 Copain Wines 2009 Wentzel Pinot Noir (Anderson Valley)
## 5915 Barker's Marque 2014 Ranga Ranga Estate Grown Certified Sustainable Sauvignon Blanc (Marlborough)
## 5916 Hogue 2013 Genesis Cabernet Sauvignon (Columbia Valley (WA))
## 5917 Jigar 2012 Pinot Noir (Russian River Valley)
## 5918 Judeka 2014 Frappato (Vittoria)
## 5919 Lamoreaux Landing 2014 T23 Unoaked Cabernet Franc (Finger Lakes)
## 5920 Maddalena 2014 Sauvignon Blanc (Paso Robles)
## 5921 Madrigal 2012 Cabernet Sauvignon (Atlas Peak)
## 5922 OS Winery 2013 Sonas Merlot (Yakima Valley)
## 5923 Pondera 2011 Cuvée Red (Columbia Valley (WA))
## 5924 Re Manfredi 2011 Aglianico del Vulture
## 5925 Rodney Strong 2012 Rockaway Cabernet Sauvignon (Alexander Valley)
## 5926 Ross Andrew 2013 Glaze Cabernet Sauvignon (Columbia Valley (WA))
## 5927 àMaurice 2014 Fred Estate Syrah (Walla Walla Valley (WA))
## 5928 Barnard Griffin 2014 Chardonnay (Columbia Valley (WA))
## 5929 Breathless NV Blanc de Noirs Sparkling (Sonoma County)
## 5930 Burnt Bridge 2013 Cove Cuvée Red (Columbia Valley (WA))
## 5931 Chateau d'Angludet 2013 Margaux
## 5932 Château de Cruzeau 2013 Pessac-Léognan
## 5933 Château de la Cour 2011 Saint-Émilion
## 5934 Château Fourcas-Borie 2013 Listrac-Médoc
## 5935 Château Frank 2009 Blanc de Noirs Methode Champanoise Estate Bottled (Finger Lakes)
## 5936 Château Frank 2009 Brut Methode Champanoise Estate Bottled (Finger Lakes)
## 5937 Château Haut Breton Larigaudière 2013 Margaux
## 5938 Château Haut-Gelineau 2012 Côtes de Bourg
## 5939 Château Lanbersac 2012 Puisseguin Saint-Émilion
## 5940 Château Lapinesse 2012 Cuvée Prestige (Graves)
## 5941 Château Larrivet Haut-Brion 2012 Les Hauts de Larrivet Haut-Brion (Pessac-Léognan)
## 5942 Château le Calvaire 2011 Bordeaux Supérieur
## 5943 Château Marquis de Terme 2013 Margaux
## 5944 Château Saint-Corbian 2012 Cuvée Tradition (Saint-Estèphe)
## 5945 Terra Valentine 2007 Cabernet Sauvignon (Spring Mountain District)
## 5946 3Fools 2008 Fools Gold Pinot Noir (Willamette Valley)
## 5947 Barton & Guestier 2008 Bordeaux
## 5948 Byron 2009 Pinot Noir (Santa Barbara County)
## 5949 Domaine de Pellehaut 2008 Harmonie de Gascogne Red (Vin de Pays des Côtes de Gascogne)
## 5950 Las Lomas 2007 Malbec-Syrah (Maule Valley)
## 5951 La Playa 2010 Estate Bottled Sauvignon Blanc (Colchagua Valley)
## 5952 Tamaya 2009 Reserva Cabernet Sauvignon (Limarí Valley)
## 5953 Ocone 2008 Greco (Taburno)
## 5954 Taj 2009 Cold Creek Ranch Chardonnay (Los Carneros)
## 5955 Little Stone Vineyard 2007 Adrian's Reserve Cabernet Sauvignon (Napa Valley)
## 5956 Barton & Guestier 2009 Mâcon-Villages
## 5957 Barton & Guestier 2009 Thomas Barton Réserve (Sauternes)
## 5958 Château Bellevue 2009 Bordeaux
## 5959 Château Denisiane 2009 Bordeaux
## 5960 Elios 2007 Mediterranean Red Red (Peloponnese)
## 5961 flipflop 2009 Chardonnay (California)
## 5962 Grotta del Sole 2007 Asprinio di Aversa
## 5963 Oberon 2008 Cabernet Sauvignon (Napa Valley)
## 5964 Priest Ranch 2009 Somerston Sauvignon Blanc (Napa Valley)
## 5965 Somerston 2009 Priest Ranch Sauvignon Blanc (Napa Valley)
## 5966 Terredora 2009 Rosaenovae Rosé (Irpinia)
## 5967 Bigi 2009 Amabile (Orvieto Classico)
## 5968 Domaines Schlumberger 2014 Les Princes Abbés Pinot Noir (Alsace)
## 5969 Faiveley 2014 Bourgogne
## 5970 Feudo di Gulfa 2012 Rosso di Gulfa (Etna)
## 5971 Feudo Maccari 2015 Grillo (Sicilia)
## 5972 Feudo Principi di Butera 2015 Grillo (Sicilia)
## 5973 Firriato 2015 Caeles Biologico Catarratto (Sicilia)
## 5974 Noble Vines 2013 181 Merlot (Lodi)
## 5975 Passopisciaro 2013 Passobianco Chardonnay (Terre Siciliane)
## 5976 Peltier 2013 Hybrid Cabernet Sauvignon (Lodi)
## 5977 Pope Valley Winery 2013 Eakle Ranch Merlot (Napa Valley)
## 5978 Kuentz-Bas 2013 White (Alsace)
## 5979 Lismore Range 2015 Reserve Chardonnay (South Eastern Australia)
## 5980 Lomas del Valle 2015 Coastal Cool Climate Wine Single Vineyard Chardonnay (Casablanca Valley)
## 5981 MacPhail 2013 Wildcat Vineyard Pinot Noir (Sonoma Coast)
## 5982 Marchesi De Gregorio 2015 del Marchese Grillo (Terre Siciliane)
## 5983 Viña Casablanca 2014 Nimbus Single Vineyard Cabernet Sauvignon (Maipo Valley)
## 5984 Hubert Meyer 2014 Pinot Noir (Alsace)
## 5985 Bogle 2014 Chardonnay (California)
## 5986 Cantine Rallo 2015 Al Qasar White (Sicilia)
## 5987 Castellucci Miano 2015 Catarratto (Sicilia)
## 5988 River Road 2014 Reserve Chardonnay (Russian River Valley)
## 5989 Tenute Girolamo 2012 Codalunga Aglianico (Puglia)
## 5990 a-non-ah-mus 2010 Alisos Vineyard Syrah (Santa Barbara County)
## 5991 Avia 2014 Hand Harvested Estate Bottled Chardonnay (Primorska)
## 5992 Barone Sergio 2015 Alègre Grillo (Terre Siciliane)
## 5993 Cantine Valenti 2015 Enrico IV Bianco (Etna)
## 5994 Celler Bàrbara Forés 2014 Blanc Garnacha Blanca (Terra Alta)
## 5995 Chanson Père et Fils 2014 Chablis
## 5996 Château de Mirande 2014 Mâcon-Villages
## 5997 Château Vartely 2014 D'Or Feteascǎ Regalǎ (Moldova)
## 5998 Iron Horse 2012 Russian Cuvée Sparkling (Green Valley)
## 5999 La Folia Winery 2014 Dolcetto (Sierra Foothills)
## 6000 Le Fraghe 2016 Bardolino
## 6001 MacMurray Estate Vineyards 2016 Pinot Gris (Russian River Valley)
## 6002 Marietta Cellars NV Old Vine Red Lot 66 Red (California)
## 6003 Masi 2013 Rosso Campofiorin Oro Red (Veronese)
## 6004 Michael David 2015 Freakshow Red (Lodi)
## 6005 Mira 2016 Chardonnay (Napa Valley)
## 6006 Narbona 2013 Roble Tannat (Uruguay)
## 6007 Newton 2014 Single Vineyard Cabernet Sauvignon (Spring Mountain District)
## 6008 Offley 2013 Late Bottled Vintage (Port)
## 6009 Ouled Thaleb 2013 Syrah (Zenata)
## 6010 Podere Forte 2012 Petrucci Sangiovese (Orcia)
## 6011 Point & Line 2015 Sierra Madre Vineyard Chardonnay (Santa Maria Valley)
## 6012 Quivira 2014 Zinfandel (Dry Creek Valley)
## 6013 Russian Ridge 2013 Martin Vineyards Cabernet Sauvignon (Santa Cruz Mountains)
## 6014 Sandeman 2013 Late Bottled Vintage (Port)
## 6015 Sokol Blosser NV Evolution Big Time Red 6th Edition Red (America)
## 6016 Speri 2015 La Roverina (Valpolicella Classico Superiore)
## 6017 Spicy Vines 2015 Foggy Mountain Chardonnay (Mendocino Ridge)
## 6018 Stolpman 2016 Estate Grown Roussanne (Ballard Canyon)
## 6019 Tamber Bey 2015 Walala Vineyard Pinot Noir (Sonoma Coast)
## 6020 Tantara 2015 Tondre Pinot Noir (Santa Lucia Highlands)
## 6021 Tenute Lunelli 2013 Lampante Riserva (Montefalco Rosso)
## 6022 Tres Palacios 2014 Cholqui Cabernet Sauvignon-Merlot (Maipo Valley)
## 6023 Truchard 2015 Chardonnay (Carneros)
## 6024 Arrowood 2014 Cabernet Sauvignon (Knights Valley)
## 6025 Aveleda 2016 Quinta da Aveleda White (Vinho Verde)
## 6026 Bel Vino 2014 Long Valley Red (California)
## 6027 Bitner 2012 Petit Verdot-Merlot Red
## 6028 Bollinger NV Special Cuvée Brut (Champagne)
## 6029 Torii Mor 1998 Balcombe Vineyard Pinot Noir (Willamette Valley)
## 6030 Vranken 1995 Demoiselle Cuvée 21 (Champagne)
## 6031 Erath 1998 Vintage Select Pinot Noir (Willamette Valley)
## 6032 Evesham Wood 1998 Temperance Hill Vineyard Pinot Noir (Willamette Valley)
## 6033 De Saint Gall 1995 Premier Cru Blanc de Blancs Brut (Champagne)
## 6034 Iron Horse 1995 Russian Cuvée (Sonoma County)
## 6035 Bear Creek 1998 Pinot Noir (Rogue Valley)
## 6036 Heritage Road 1998 Reserve Cabernet Sauvignon (Limestone Coast)
## 6037 Kenwood 1997 Nuns Canyon Zinfandel (Sonoma Valley)
## 6038 Robert Hunter 1994 Brut de Noirs (Sonoma Valley)
## 6039 Roederer Estate NV Brut (Anderson Valley)
## 6040 G. H. Mumm NV Cordon Rouge Brut (Champagne)
## 6041 Stonecroft 1998 Reserve Pinot Noir (Willamette Valley)
## 6042 Andrew Rich 1998 Les Vigneaux Corral Creek Vyd Pinot Noir (Willamette Valley)
## 6043 Argyle 1998 Spirit House Pinot Noir (Willamette Valley)
## 6044 Handley 1994 Blanc De Blancs (Anderson Valley)
## 6045 Calvet 1998 Reserve (Bordeaux Blanc)
## 6046 Tualatin Estate 1998 Pinot Noir (Willamette Valley)
## 6047 Cristom 1998 Louise Vineyard Pinot Noir (Willamette Valley)
## 6048 Girardet 1998 Reserve Pinot Noir (Umpqua Valley)
## 6049 Handley 1995 Brut (Anderson Valley)
## 6050 Heritage Road 1998 Shiraz (South Australia)
## 6051 Gloria Ferrer 1992 Royal Cuvee Brut (Carneros)
## 6052 Cooper Mountain 1998 20th Anniversary Pinot Noir (Willamette Valley)
## 6053 Fetzer 1997 Barrel Select Zinfandel (Mendocino County)
## 6054 Elk Cove 1998 Windhill Pinot Noir (Willamette Valley)
## 6055 Adelsheim 1998 Bryan Creek Vineyard Pinot Noir (Willamette Valley)
## 6056 Moët & Chandon NV Brut Rosé (Champagne)
## 6057 Valley of the Moon 1997 Zinfandel (Sonoma Valley)
## 6058 Principe Corsini 2012 Le Corti (Chianti Classico)
## 6059 Producta Vignobles 2014 La Cabane aux Oiseaux Rosé (Bordeaux Rosé)
## 6060 Raphael 2013 Cabernet Franc (North Fork of Long Island)
## 6061 Recanati 2014 Rosé (Galilee)
## 6062 Abeja 2011 Heather Hill Estate Cabernet Sauvignon (Walla Walla Valley (WA))
## 6063 Ancestry 2013 Reminiscence Riesling (Columbia Gorge (WA))
## 6064 Bedell 2013 Sauvignon Blanc (North Fork of Long Island)
## 6065 Bindi Sergardi 2011 Mocenni Gran Selezione (Chianti Classico)
## 6066 Bodega San Pedro Regalado 2011 Embocadero (Ribera del Duero)
## 6067 Borgo Scopeto 2013 Chianti Classico
## 6068 Cantalici L'Antica Fornace di Ridolfo 2012 Baruffo (Chianti Classico)
## 6069 Castellare di Castellina 2012 Riserva (Chianti Classico)
## 6070 Castello di Gabbiano 2011 Riserva (Chianti Classico)
## 6071 Cedarville Vineyard 2012 The Rules of Fair Play Red (Fair Play)
## 6072 Charles Ellner NV Qualité Extra Brut (Champagne)
## 6073 Slingshot 2013 Cabernet Sauvignon (Napa Valley)
## 6074 Tablas Creek 2012 Espirit de Tablas Red (Paso Robles)
## 6075 Tamarack Cellars 2012 Ciel du Cheval Vineyard Syrah (Red Mountain)
## 6076 Tenuta di Arceno 2013 Chianti Classico
## 6077 Terras Gauda 2014 Abadia de San Campio Albariño (Rías Baixas)
## 6078 Toscolo 2013 Chianti Classico
## 6079 Clayhouse 2013 Red Cedar Vineyard Cabernet Sauvignon (Paso Robles)
## 6080 Direder 2014 Donatus Grüner Veltliner (Wagram)
## 6081 El Coto 2010 Coto de Imaz Reserva (Rioja)
## 6082 Fattoria Il Lago 2012 Chianti Rufina
## 6083 Fattoria Valacchi 2012 Chianti
## 6084 Forgeron 2012 Merlot (Columbia Valley (WA))
## 6085 Foundry Vineyards 2012 Syrah (Columbia Valley (WA))
## 6086 Golan Heights Winery 2014 Hermon Moscato (Galilee)
## 6087 Golan Heights Winery 2014 Yarden Sauvignon Blanc (Galilee)
## 6088 Ruby Hill Winery 2012 Peacock Patch Reserve Zinfandel (Livermore Valley)
## 6089 Rule of Three 2012 Malbec (Uco Valley)
## 6090 Sonoma River 2013 Pinot Noir (Sonoma County)
## 6091 Terra Valentine 2012 Estate Grown Cabernet Sauvignon (Spring Mountain District)
## 6092 Tilia 2014 Cabernet Sauvignon (Mendoza)
## 6093 Tilia 2014 Torrontés (Salta)
## 6094 Watermill 2012 Estate Tempranillo (Walla Walla Valley (OR))
## 6095 V. Sattui 2011 Cabernet Sauvignon (Napa Valley)
## 6096 Vigin 2012 Montersino (Barbaresco)
## 6097 Viña Cobos 2014 Felino Chardonnay (Mendoza)
## 6098 Antucura NV Chérie Sparkling Pinot Noir Rosé Sparkling (Vista Flores)
## 6099 Arbéta 2011 Barolo
## 6100 Aveleda 2014 Alvarinho (Minho)
## 6101 Bouchard Père & Fils 2013 Pouilly-Fuissé
## 6102 Cantina Santadi 2011 Noras (Carignano del Sulcis)
## 6103 Casca Wines 2014 Cascas Winemaker Selection Red (Douro)
## 6104 Casca Wines 2014 Monte Cascas Branco White (Douro)
## 6105 Casca Wines 2014 Monte Cascas Colheita White (Douro)
## 6106 Château de Fuissé 2013 Saint-Véran
## 6107 Cooperativa Agricola de Santo Isidro de Pegoes 2012 Adega de Pegões Touriga Nacional (Península de Setúbal)
## 6108 Domaine Laroche 2014 Chablis
## 6109 Domaines Devillard 2013 Domaine de la Garenne (Mâcon-Azé)
## 6110 Falua 2012 Conde de Vimioso Extra Bruto Sparkling (Tejo)
## 6111 Falua 2013 Conde de Vimioso Colheita Seleccionada Red (Tejo)
## 6112 Frank Family 2012 Reserve Zinfandel (Chiles Valley)
## 6113 Giuseppe Gabbas 2011 Dule (Cannonau di Sardegna)
## 6114 V. Sattui 2011 Paradiso Red (Napa Valley)
## 6115 Vino z Czech 2013 Michlovský Sauvignon Blanc (Moravia)
## 6116 Vins des Personnets 2013 Viré-Clessé
## 6117 Nicholson Ranch 2012 Cactus Hill Estate Pinot Noir (Sonoma Coast)
## 6118 Wedell Cellars 2011 Pinot Noir (Sta. Rita Hills)
## 6119 Winderlea 2013 Winderlea Vineyard Pinot Noir (Dundee Hills)
## 6120 12 Linajes 2009 Reserva (Ribera del Duero)
## 6121 Anier 2012 Vendimia Seleccionada (Ribera del Duero)
## 6122 Ceretto 2011 Brunate (Barolo)
## 6123 Psagot 2012 Cabernet Sauvignon (Judean Hills)
## 6124 18401 Cellars 2013 Cabernet Sauvignon (Walla Walla Valley (OR))
## 6125 Angela Estate 2013 Pinot Noir
## 6126 Archery Summit 2013 Renegade Ridge Estate Pinot Noir (Dundee Hills)
## 6127 Archery Summit 2013 Whole Cluster Cuvée Pinot Noir (Dundee Hills)
## 6128 Arista 2013 U.V. Lucky Well Vineyard Pinot Noir (Russian River Valley)
## 6129 Ascension Cellars 2012 Trinity-Cass Vineyards G-S-M (Paso Robles)
## 6130 Aubry 2011 Ivoire et Ebène Premier Cru Brut (Champagne)
## 6131 Baron-Fuenté NV Esprit Grand Cru Brut (Champagne)
## 6132 Bethel Heights 2013 Casteel Pinot Noir (Willamette Valley)
## 6133 Brave & Maiden 2013 Estate Cabernet Sauvignon (Santa Ynez Valley)
## 6134 Cartuxa 2011 Foral de Evora Tinto Colheita Red (Alentejo)
## 6135 Paolo Manzone 2011 del Comune di Serralunga d'Alba (Barolo)
## 6136 William Hill Estate 2012 Cabernet Sauvignon (Napa Valley)
## 6137 Domaine Chenevières 2014 Côte de Lechet Premier Cru (Chablis)
## 6138 Domaine des Baumard 2011 Quarts de Chaume
## 6139 Francesco Rinaldi 2011 Cannubi (Barolo)
## 6140 Gary Farrell 2013 Rochioli-Allen Vineyards Oak Puncheon Fermented Chardonnay (Russian River Valley)
## 6141 Giovanni Rosso 2011 del Comune di Serralunga d'Alba (Barolo)
## 6142 Oso Libre 2011 Rojo del Patron Red (Paso Robles)
## 6143 Pali 2013 Rancho La Vina Pinot Noir (Sta. Rita Hills)
## 6144 Panther Creek 2013 Lazy River Vineyard Pinot Noir
## 6145 Paolo Scavino 2011 Carobric (Barolo)
## 6146 Proulx 2013 Petite Sirah (Central Coast)
## 6147 Raymond 2012 District Collection Cabernet Sauvignon (Rutherford)
## 6148 Artezin 2006 Garzini Ranch Petite Sirah (Mendocino County)
## 6149 Château d'Esclans 2007 Whispering Angel Rosé (Côtes de Provence)
## 6150 Château Lynch-Bages 2007 Blanc de Lynch-Bages (Bordeaux Blanc)
## 6151 Dashwood 2008 Sauvignon Blanc (Marlborough)
## 6152 Erath 2006 Hyland Pinot Noir (Willamette Valley)
## 6153 Pascal Doquet 2000 Le Mont Aimé Premier Cru Blanc de Blancs Brut Chardonnay (Champagne)
## 6154 Saint Clair 2008 Pioneer Block #3 43 Degrees Sauvignon Blanc (Marlborough)
## 6155 Taltarni 2004 Cabernet Sauvignon (Pyrenees)
## 6156 Antiyal 2006 Kuyen Red (Maipo Valley)
## 6157 Mas des Bressades 2008 Cuvée Tradition Rosé (Costières de Nîmes)
## 6158 Frank Family NV Rouge Sparkling (Napa Valley)
## 6159 Hobo 2007 Zinfandel (Alexander Valley)
## 6160 Le Colture NV Cartizze (Prosecco Superiore di Cartizze)
## 6161 Brassfield 2005 Round Mountain Volcano Zinfandel (High Valley)
## 6162 Château du Seuil 2007 Graves
## 6163 Château Tour de Mirambeau 2007 Bordeaux Blanc
## 6164 Cinnabar 2006 Chardonnay (Santa Cruz Mountains)
## 6165 Boedecker Cellars 2007 Purity Chardonnay (Willamette Valley)
## 6166 Château de Cruzeau 2007 Pessac-Léognan
## 6167 Daedalus Cellars 2007 Maresh Vineyard Riesling (Dundee Hills)
## 6168 Rimauresq 2007 Petit Rimauresq Grenache-Cinsault Rosé (Côtes de Provence)
## 6169 Jacquart NV Brut de Nominé (Champagne)
## 6170 Louis Barthélémy NV Pink Brut (Champagne)
## 6171 Spicy Vines 2015 Peter's Delight Pinot Noir (Russian River Valley)
## 6172 The Conqueror 2016 Rosé (Horse Heaven Hills)
## 6173 T'Jara 2013 Reserve Red (North Fork of Long Island)
## 6174 Urbina 2016 Rosado (Rioja)
## 6175 Villa di Corlo NV Amabile (Lambrusco Grasparossa di Castelvetro)
## 6176 Villa di Corlo NV Lambrusco Grasparossa di Castelvetro
## 6177 Viña Mayor 2014 Crianza (Ribera del Duero)
## 6178 Wölffer 2015 Chardonnay (Long Island)
## 6179 Woodbridge by Robert Mondavi 2016 Lightly Oaked Chardonnay (California)
## 6180 L. Tramier & Fils 2016 Collection (Saint-Amour)
## 6181 Le Grand Noir 2016 Black Sheep G-S-M (Pays d'Oc)
## 6182 Les Domaines Auriol 2016 La Villa de Maison Vialade Marselan (Pays d'Oc)
## 6183 Lorenzi Estate 2013 Old Vine De Ambrogio Block Zinfandel (Temecula Valley)
## 6184 Mar de Envero 2016 Troupe Albariño (Rías Baixas)
## 6185 Marqués de la Concordia 2016 Lagunilla Viura (Rioja)
## 6186 Martin Ranch 2015 J.D. Hurley Griva Vineyard Chardonnay (Arroyo Seco)
## 6187 Martinsancho 2016 Verdejo (Rueda)
## 6188 Medici Ermete NV Lambrusco I Quercioli Secco Lambrusco
## 6189 Midnight 2016 Chardonnay
## 6190 Millbrook 2016 Lollipop Hill Estate Bottled Tocai Friulano (Hudson River Region)
## 6191 Muddy Boot 2015 Black Road Red (California)
## 6192 Nada Fiorenzo 2013 Rombone (Barbaresco)
## 6193 :Nota Bene 2013 Heart of the Hill Mourvèdre (Red Mountain)
## 6194 Pascal Rollet 2015 Les Perriers (Saint-Véran)
## 6195 Pascal Rollet 2015 Vieilles Vignes (Pouilly-Fuissé)
## 6196 Pico Maccario 2016 Lavignone (Barbera d'Asti)
## 6197 Domaine Sangouard-Guyot 2015 Au Brûlé (Saint-Véran)
## 6198 Finn Hill 2013 Tenebrae Stillwater Creek Vineyard Petit Verdot (Columbia Valley (WA))
## 6199 Fulkerson 2016 William Vigne Grüner Veltliner (Seneca Lake)
## 6200 Glenora 2016 Dry Riesling (Finger Lakes)
## 6201 DiamAndes 2013 Perlita Malbec-Syrah (Uco Valley)
## 6202 Grande River 2011 Malbec (Grand Valley)
## 6203 Herdade de São Miguel 2014 Ciconia Reserva Syrah (Alentejano)
## 6204 La Chablisienne 2013 Dame Nature (Petit Chablis)
## 6205 Lyeth 2012 Malbec (California)
## 6206 Mendel 2014 Semillon (Mendoza)
## 6207 François Lurton 2014 Santa Celina Pinot Grigio (Mendoza)
## 6208 Aveleda 2014 Casal Garcia Tinto Red (Douro)
## 6209 Canyon Wind 2013 Cabernet Franc (Grand Valley)
## 6210 Casa de Vila Verde 2014 Pluma White (Vinho Verde)
## 6211 Sno Road 2014 Rosado of Tempranillo (Columbia Valley (OR))
## 6212 Summit Lake 2010 Estate Bottled Zinfandel (Howell Mountain)
## 6213 Tarara 2013 Cabernet Franc (Virginia)
## 6214 McFadden 2014 Blue Quail Chardonnay (Potter Valley)
## 6215 J. Moreau & Fils 2014 Chablis
## 6216 La Chablisienne 2013 Pas si Petit (Petit Chablis)
## 6217 V. Sattui 2012 Cabernet Franc (Alexander Valley)
## 6218 Vignerons des Terres Secrètes 2014 Mâcon-Villages
## 6219 Weisinger 2012 Meadowlark Vineyard Syrah (Rogue Valley)
## 6220 Wines & Winemakers 2014 Salsus Lua Cheia em Vinhas Velhas White (Vinho Verde)
## 6221 Grande River 2010 Cabernet Franc (Grand Valley)
## 6222 Coeur de Terre 2014 Pinot Gris (Willamette Valley)
## 6223 Compilation 2012 Cabernet Sauvignon (Rutherford)
## 6224 Cortes de Cima 2014 Sauvignon Blanc (Alentejano)
## 6225 Custard 2013 Comfort Wine Chardonnay (Sonoma Valley)
## 6226 Dão Sul 2013 Cabriz Colheita Seleccionada Red (Dão)
## 6227 DFJ Vinhos 2014 Brigando Red (Lisboa)
## 6228 DFJ Vinhos 2014 Brigando Rosé (Lisboa)
## 6229 DFJ Vinhos 2014 Casa do Lago Branco White (Lisboa)
## 6230 Domaine Michel 2013 Cray (Mâcon-Villages)
## 6231 Baron Widmann 2013 Vernatsch Schiava (Alto Adige)
## 6232 Cantina del Castello 2013 Pressoni (Soave Classico)
## 6233 Cantina Produttori Cortaccia 2012 Glen Riserva Pinot Nero (Alto Adige)
## 6234 Casa da Passarella 2011 Enxertia Alfrocheiro (Dão)
## 6235 Clos du Val 2012 Estate Cabernet Sauvignon (Stags Leap District)
## 6236 Colene Clemens 2013 Pinot Noir (Willamette Valley)
## 6237 Consilience 2012 Grenache Blanc (Santa Barbara County)
## 6238 Daou 2013 Chemin de Fleurs White (Paso Robles)
## 6239 Domaine de la Pepière 2013 Clos des Briords Sur Lie (Muscadet Sèvre et Maine)
## 6240 Domaine de l'Idylle 2014 Roussette de Savoie
## 6241 Domaine du Haut Bourg 2013 Sur Lie (Muscadet Côtes de Grandlieu)
## 6242 Domdechant Werner 2013 Hochheimer Domdechaney Trocken Gold Cap Riesling (Rheingau)
## 6243 Donkey & Goat 2013 Grenache (El Dorado)
## 6244 Elena Walch 2013 Castel Ringberg Pinot Grigio (Alto Adige)
## 6245 Flaherty 2012 Red (Aconcagua Valley)
## 6246 Fritz Haag 2013 Juffer Trocken GG Riesling (Mosel)
## 6247 Ventisquero 2011 Grey Glacier Single Block Trinidad Vineyard Carmenère (Maipo Valley)
## 6248 VML 2012 Floodgate Pinot Noir (Russian River Valley)
## 6249 WildAire 2012 Ellis Vineyards Tempranillo (Rogue Valley)
## 6250 Wines & Winemakers 2012 Abreu Callado Reserva Red (Alentejano)
## 6251 Ottella 2014 Lugana
## 6252 Perescuma 2007 Orquestra Reserva Red (Alentejano)
## 6253 Pratello 2012 Il Rivale (Lugana)
## 6254 Quinta da Alorna 2012 Marquesa da Alorna Reserva Branco White (Tejo)
## 6255 Quinta do Monte d'Oiro 2013 Madrigal Viognier (Lisboa)
## 6256 Quinta do Portal 2009 Late Bottled Vintage (Port)
## 6257 Ravenswood 2012 Dickerson Single Vineyard Zinfandel (Napa Valley)
## 6258 Renteria 2012 Cabernet Sauvignon (Mount Veeder)
## 6259 Seghesio 2012 Old Vine Zinfandel (Sonoma County)
## 6260 St. Pauls 2013 Passion Sauvignon (Alto Adige)
## 6261 Doubleback 2010 Cabernet Sauvignon (Walla Walla Valley (WA))
## 6262 Nickel & Nickel 2010 Harris Vineyard Merlot (Oakville)
## 6263 Leonetti Cellar 2010 Reserve Red (Walla Walla Valley (WA))
## 6264 Lynmar 2011 Quail Hill Vineyard Chardonnay (Russian River Valley)
## 6265 Von Strasser 2010 Estate Vineyard Cabernet Sauvignon (Diamond Mountain District)
## 6266 Von Strasser 2010 Sori Bricco Vineyard Cabernet Sauvignon (Diamond Mountain District)
## 6267 Sirius 2010 Eaglepoint Ranch Petite Sirah (Mendocino County)
## 6268 Stottle 2011 Lucille Late Harvest Viognier (Yakima Valley)
## 6269 Dr. Loosen & J. Christopher 2007 Appassionata Pinot Noir (Willamette Valley)
## 6270 Gary Farrell 2010 Bien Nacido Vineyard Pinot Noir (Santa Maria Valley)
## 6271 Silverado 2009 Limited Cabernet Sauvignon (Napa Valley)
## 6272 Captûre 2010 Harmonie Red (Pine Mountain-Cloverdale Peak)
## 6273 Markus Molitor 2010 Zeltinger Sonnenuhr Auslese Riesling (Mosel)
## 6274 Leonetti Cellar 2010 Cabernet Sauvignon (Walla Walla Valley (WA))
## 6275 King Estate 2009 Domaine Pinot Noir (Oregon)
## 6276 Lynmar 2011 La Serenité Chardonnay (Russian River Valley)
## 6277 Sequum 2009 Four Soil Melange Cabernet Sauvignon (Napa Valley)
## 6278 Calera 2010 Selleck Vineyard Pinot Noir (Mt. Harlan)
## 6279 The Eyrie Vineyards 2000 Marguerite Pinot Noir (Dundee Hills)
## 6280 Von Strasser 2010 Vineyard 2131 Cabernet Sauvignon (Diamond Mountain District)
## 6281 Lynmar 2011 Susanna's Vineyard Chardonnay (Russian River Valley)
## 6282 McCrea Cellars 2008 Cuvée Orleans Syrah (Yakima Valley)
## 6283 Failla 2011 Whistler Vineyard Pinot Noir (Sonoma Coast)
## 6284 Gary Farrell 2010 Rochioli Vineyard Chardonnay (Russian River Valley)
## 6285 Captûre 2010 Révélation Cabernet Sauvignon (Pine Mountain-Cloverdale Peak)
## 6286 Williams Selyem 2011 Olivet Lane Vineyard Chardonnay (Russian River Valley)
## 6287 Chateau Chevalier 2009 Cabernet Sauvignon (Spring Mountain District)
## 6288 Acordeón 2012 Cabernet Sauvignon (Mendoza)
## 6289 Alexander Valley Vineyards 2011 Sin Zin Zinfandel (Alexander Valley)
## 6290 Château d'Arlay 2007 Pinot Noir (Côtes du Jura)
## 6291 DFJ Vinhos 2011 Bigode Red (Lisboa)
## 6292 Drouet Frères 2012 La Forcine (Sancerre)
## 6293 Miracle Valley 2010 Cabernet Sauvignon (Virginia)
## 6294 Prince Michel 2009 Cabernet Franc (Virginia)
## 6295 Raymond 2012 R Collection Lot No. 7 Field Blend Red (California)
## 6296 Sottano 2013 Reserva 3S Viognier (Mendoza)
## 6297 Thacher 2011 Petite Sirah (Paso Robles)
## 6298 Tiago Teles 2012 Gilda Red (Bairrada)
## 6299 Tower 15 2012 Grenache Blanc (Paso Robles)
## 6300 Truett Hurst 2012 California Square Cabernet Sauvignon (Paso Robles)
## 6301 Montpellier 2012 Pinot Noir (California)
## 6302 Natale Verga 2011 Chianti Classico
## 6303 Marquis de la Tour NV Brut Sparkling (Vin Mousseux)
## 6304 Quinta da Maritávora NV White (Port)
## 6305 Remy-Pannier 2012 Vouvray
## 6306 Road i Red NV Red (California)
## 6307 Sobon Estate 2011 Barbera (California)
## 6308 Anemoi 2012 Lips Syrah (Grand Valley)
## 6309 Colle Bereto 2011 Chianti Classico
## 6310 Vignaioli del Morellino di Scansano 2010 Riserva Roggiano (Morellino di Scansano)
## 6311 Zolo 2013 Unoaked Chardonnay (Mendoza)
## 6312 Cupcake 2012 Petite Sirah (Central Coast)
## 6313 Fenestra 2012 Semonnay Chardonnay-Semillon (Livermore Valley)
## 6314 Milliaire 2010 Ghirardelli Heritage Old Vine Zinfandel (Calaveras County)
## 6315 Natale Verga 2010 Riserva (Chianti Classico)
## 6316 Andreola 2016 Dirupo Brut (Valdobbiadene Prosecco Superiore)
## 6317 Bouvet-Ladubay NV Trésor Brut (Saumur)
## 6318 Les Frères Couillaud 2016 Château de la Ragotière Sélection Vieilles Vignes Sur Lie (Muscadet Sèvre et Maine)
## 6319 Siduri 2015 Lingenfelder Vineyard Pinot Noir (Russian River Valley)
## 6320 Ashan 2016 Barrel Fermented Chardonnay (Columbia Valley (WA))
## 6321 Les Frères Couillaud 2015 Château de la Ragotière Cuvée Amélie Sur Lie (Muscadet Sèvre et Maine)
## 6322 Nino Franco 2016 Primo Franco Dry (Valdobbiadene Prosecco Superiore)
## 6323 Walla Walla Vintners 2012 Cut Bank Estate Vottavo Red (Walla Walla Valley (WA))
## 6324 Carrick 2013 Bannockburn Pinot Noir (Central Otago)
## 6325 Cave de Cleebourg 2014 Symphonie en P Sparkling (Crémant d'Alsace)
## 6326 Cave du Roi Dagobert NV Prestige Rosé Sparkling (Crémant d'Alsace)
## 6327 Clay Pigeon 2014 Chardonnay (Columbia Valley (OR))
## 6328 DanCin 2015 Plié Pinot Noir (Southern Oregon)
## 6329 De Toren 2013 Z Red (Stellenbosch)
## 6330 De Toren 2014 Fusion V Red (Stellenbosch)
## 6331 Decroux 2015 Radian Vineyard Pinot Noir (Sta. Rita Hills)
## 6332 Domaine Fernand Engel 2015 Gloeckelberg Grand Cru Pinot Gris (Alsace)
## 6333 Forrest 2013 Pinot Noir (Marlborough)
## 6334 Framingham 2015 Pinot Noir (Marlborough)
## 6335 Henriet-Bazin NV Blanc de Noirs Pinot Meunier Brut Pinot Meunier (Champagne)
## 6336 Jean de la Fontaine NV L'Eloquente Brut (Champagne)
## 6337 Joseph Cattin 2016 Hatschbourg Grand Cru Riesling (Alsace)
## 6338 La Tordera 2016 Oltreval Rive di Guia Zero (Valdobbiadene Prosecco Superiore)
## 6339 Lombard et Cie NV Brut Nature Grand Cru (Champagne)
## 6340 Noble Vines 2016 152 Pinot Grigio (San Bernabe)
## 6341 Paix Sur Terre 2015 Comes a Time Alta Colina Vineyard Mourvèdre (Adelaida District)
## 6342 Paskett 2016 Viognier (Lodi)
## 6343 Raymond 2014 District Collection Cabernet Sauvignon (Diamond Mountain District)
## 6344 Rioja Vega 2008 Gran Reserva Edición Limitada (Rioja)
## 6345 Roark Wine Co. 2015 Merlot (Santa Ynez Valley)
## 6346 Easton 2012 Old Vine Rinaldi Vineyard Zinfandel (Fiddletown)
## 6347 Felten Cellars 2013 Zinfandel (Paso Robles)
## 6348 Philipp Kuhn 2009 Laumersheimer Vom Kalksteinfels Trocken Spätburgunder (Pfalz)
## 6349 Quevedo NV 30 Year Old White (Port)
## 6350 Rasa 2012 Fiachetto XL Vineyard Red (Walla Walla Valley (OR))
## 6351 Sojourn 2012 Cabernet Sauvignon (Oakville)
## 6352 Tenuta Montanello 2011 Montanello (Barolo)
## 6353 Trisaetum 2014 Estates Reserve Riesling (Willamette Valley)
## 6354 William Fèvre 2013 Mont de Milieu Premier Cru (Chablis)
## 6355 Valdez 2012 St. Peter's Church Zinfandel (Alexander Valley)
## 6356 Vigne Surrau 2014 Sciala Superiore (Vermentino di Gallura)
## 6357 Luigi Oddero & Figli 2010 Barbaresco
## 6358 William Fèvre 2013 Vaillons Premier Cru (Chablis)
## 6359 Orfila 2013 Stem Head Pinot Noir (Santa Maria Valley)
## 6360 Penfolds 2012 Bin 28 Kalimna Shiraz (South Australia)
## 6361 Pio Cesare 2011 Barbaresco
## 6362 Sequum 2012 Riverwash Zinfandel (Dry Creek Valley)
## 6363 Albert Bichot 2012 Domaine Long-Depaquit Les Blanchots Grand Cru (Chablis)
## 6364 Albert Bichot 2013 Domaine Long-Depaquit Vaucoupin Premier Cru (Chablis)
## 6365 Albino Rocca 2012 Ovello Vigna Loreto (Barbaresco)
## 6366 Baxter 2012 Langley Vineyard Pinot Noir (Anderson Valley)
## 6367 Beauregard 2013 Beaureagard Ranch Chardonnay (Ben Lomond Mountain)
## 6368 Bodega Renacer 2011 Punto Final Gran Edición Limitada Cabernet Franc (Mendoza)
## 6369 Castello di Neive 2012 Barbaresco
## 6370 Cavalier Bartolomeo 2011 Altenasso (Barolo)
## 6371 Delmas 2013 SJR Vineyard Syrah (Walla Walla Valley (OR))
## 6372 Domaine Laroche 2012 Les Fourneaux Premier Cru (Chablis)
## 6373 Jean-Marc Brocard 2014 Vaulorent Premier Cru (Chablis)
## 6374 John Duval Wines 2012 Entity Shiraz (Barossa)
## 6375 Duorum 2015 Tons de Duorum Red (Douro)
## 6376 Famiglia Cielo 2015 Appassionatamente Rosso Red (Veneto)
## 6377 Fleur Du Cap 2016 Bergkelder Selection Chenin Blanc (South Africa)
## 6378 Georges Vigouroux 2015 Gouleyant Malbec (Cahors)
## 6379 Hawk Watch Winery 2013 Cold Fusion Red (South Coast)
## 6380 Tikal 2014 Certified Biodynamic Malbec-Syrah (Mendoza)
## 6381 Tussock Jumper 2015 Chenin Blanc (Western Cape)
## 6382 Kitchen Sink NV Red (California)
## 6383 Kitchen Sink NV White (California)
## 6384 Kuleto Estate 2014 Homestead Block Chardonnay (Napa Valley)
## 6385 Ramos-Pinto 2015 Duas Quintas Branco White (Douro)
## 6386 Castle Rock 2014 Cuvée Red (Columbia Valley (WA))
## 6387 Companhia das Quintas 2014 Barão de Figueira Red (Beira Interior)
## 6388 De Stefani 2015 Nature (Prosecco)
## 6389 Domaine de Grange Neuve 2015 La Fleur Lily Sauvignon Blanc (Bergerac Sec)
## 6390 Dona Maria-Júlio Bastos 2015 White (Alentejano)
## 6391 Falua 2015 Conde Vimioso Colheita Seleccionada Red (Tejo)
## 6392 Georges Vigouroux 2015 Pigmentum Merlot-Malbec (Buzet)
## 6393 Ironstone 2015 Cabernet Franc (Lodi)
## 6394 Jamesport 2013 Estate Riesling (North Fork of Long Island)
## 6395 Mauricio Lorca 2014 MIO Malbec-Syrah (Mendoza)
## 6396 Ngumu 2015 Chenin Blanc (Western Cape)
## 6397 Bodega Las Cañitas 2009 Familia Navarro Torrre Grand Gold Medal Malbec-Cabernet Sauvignon (Argentina)
## 6398 Valdo NV Cuvée Viviana (Valdobbiadene Superiore di Cartizze)
## 6399 Zorzal 2016 Terroir Único Pinot Noir Rosé (Tupungato)
## 6400 Adega Cooperativa de Borba 2015 Convento da Vila Red (Alentejano)
## 6401 Adega de Cantanhede NV Marquês de Marialva Rosé Bruto Baga (Beira Atlantico)
## 6402 Angeline 2015 Reserve Pinot Noir (Mendocino County)
## 6403 Greenwood Ridge 2013 Hundred Point Cabernet Sauvignon (Mendocino Ridge)
## 6404 Indaba 2015 Sauvignon Blanc (Western Cape)
## 6405 Caparzo 2007 Doga delle Clavule Rosato Rosé (Maremma)
## 6406 Château de Pennautier 2006 Cabernet Sauvignon de Pennautier Cabernet Sauvignon (Vin de Pays d'Oc)
## 6407 Corte Cariano 2006 Terra Solinas Corvina (Veneto)
## 6408 Gernot and Heike Heinrich 2007 Zweigelt (Burgenland)
## 6409 Hafner 2002 Essencia Kosher Trockenbeerenauslese Riesling (Burgenland)
## 6410 Olivini 2007 Lugana
## 6411 Olson Ogden 2006 Pinot Noir (Russian River Valley)
## 6412 Sausal 2006 Private Reserve Zinfandel (Alexander Valley)
## 6413 Stone Paddock 2007 Sauvignon Blanc (Hawke's Bay)
## 6414 Blue Cove 2007 Viognier (Western Cape)
## 6415 Cairnbrae 2007 The Stones Sauvignon Blanc (Marlborough)
## 6416 Coniglio 2004 Cabernet Sauvignon (Oakville)
## 6417 Corvo 2007 Bianco White (Sicilia)
## 6418 Domaines Barons de Rothschild (Lafite) 2007 Aussières Blanc Chardonnay (Vin de Pays d'Oc)
## 6419 Fairvalley 2008 Chenin Blanc (Western Cape)
## 6420 Fleur Du Cap 2008 Sauvignon Blanc (Western Cape)
## 6421 Fortant 2006 Cabernet Sauvignon (Vin de Pays d'Oc)
## 6422 Quivira 2007 Barrel Complete Sauvignon Blanc (Dry Creek Valley)
## 6423 Silver Lake 2006 Merlot (Rattlesnake Hills)
## 6424 Château Trotanoy 2010 Pomerol
## 6425 Mocali 2007 Riserva (Brunello di Montalcino)
## 6426 Château Montrose 2010 Saint-Estèphe
## 6427 Bollinger 2004 La Grande Année Brut (Champagne)
## 6428 Château Ducru Beaucaillou 2010 Saint-Julien
## 6429 Domaine de Chevalier 2010 Pessac-Léognan
## 6430 Le Dôme 2010 Saint-Émilion
## 6431 Château Smith Haut Lafitte 2010 Pessac-Léognan
## 6432 B Cellars 2009 Beckstoffer Dr. Crane Vineyard Cabernet Sauvignon (St. Helena)
## 6433 B Cellars 2009 Beckstoffer To Kalon Vineyard Cabernet Sauvignon (Oakville)
## 6434 Château Pape Clément 2010 Pessac-Léognan
## 6435 Château Cos d'Estournel 2010 Saint-Estèphe
## 6436 Clos du Marquis 2010 Saint-Julien
## 6437 Il Poggione 2007 Vigna Paganelli Riserva (Brunello di Montalcino)
## 6438 Numanthia 2009 Termanthia (Toro)
## 6439 Larmandier-Bernier 2006 Vieilles Vignes de Cramant Grand Cru Chardonnay (Champagne)
## 6440 Castello Banfi 2007 Poggio all'Oro Riserva (Brunello di Montalcino)
## 6441 Château Bélair-Monange 2010 Saint-Émilion
## 6442 Château Haut-Bailly 2010 Pessac-Léognan
## 6443 Château la Fleur-Pétrus 2010 Pomerol
## 6444 Domaine de Chevalier 2010 Pessac-Léognan
## 6445 Vieux Château Mazerat 2010 Saint-Émilion
## 6446 Castello Banfi 2007 Poggio alle Mura Riserva (Brunello di Montalcino)
## 6447 Château Canon 2010 Saint-Émilion
## 6448 Les Astéries 2010 Saint-Émilion
## 6449 Stone The Crows 2010 Three Twins Vineyard Cabernet Sauvignon (Napa Valley)
## 6450 Tarlant NV Hommage à Louis Tarlant Brut (Champagne)
## 6451 Uccelliera 2008 Brunello di Montalcino
## 6452 Brian Carter Cellars 2010 1 Grenache (Columbia Valley (WA))
## 6453 Villa Spinosa 2001 Guglielmi di Jago (Amarone della Valpolicella Classico)
## 6454 Pascal Bouchard 2010 Les Vieilles Vignes Montmains Premier Cru (Chablis)
## 6455 Punch 2009 Cabernet Sauvignon (California)
## 6456 Sleight of Hand 2010 Levitation Syrah (Columbia Valley (WA))
## 6457 Sleight of Hand 2010 The Enchantress Old Vine Chardonnay (Yakima Valley)
## 6458 Sleight of Hand 2010 The Funkadelic Syrah (Walla Walla Valley (WA))
## 6459 Del Dotto 2009 Cinghiale Vineyard Pinot Noir (Sonoma Coast)
## 6460 Domaine Heresztyn 2010 Les Millandes Premier Cru (Morey-Saint-Denis)
## 6461 Domaine Vincent Girardin 2010 Santenots Premier Cru (Volnay)
## 6462 Efeste 2009 Final-Final Cabernet Sauvignon-Syrah (Columbia Valley (WA))
## 6463 Efeste 2011 Babbitt Rosé (Columbia Valley (WA))
## 6464 Fabiano 2005 I Fondatori Riserva (Amarone della Valpolicella Classico)
## 6465 D.G. Viticultors NV Caligo Sweet White Wine White (Spain)
## 6466 Inniskillin 2008 Ice Wine Riesling (Niagara Peninsula)
## 6467 Le Salette 2009 I Progni (Valpolicella Classico Superiore Ripasso)
## 6468 Mark Ryan 2009 Wild Eyed Syrah (Red Mountain)
## 6469 Joseph Drouhin 2010 Chassagne-Montrachet
## 6470 Latium di Morini 2008 Campo Leòn (Amarone della Valpolicella)
## 6471 Louis Latour 2010 Meursault Blagny Premier Cru (Meursault)
## 6472 Rosenblum 2010 Rockpile Road Vineyard Zinfandel (Rockpile)
## 6473 Rubinelli Vajol 2008 Amarone della Valpolicella Classico
## 6474 Sleight of Hand 2009 Levitation Syrah (Columbia Valley (WA))
## 6475 Soos Creek 2009 Sundance Red (Columbia Valley (WA))
## 6476 Alpha Omega 2009 Proprietary Red (Napa Valley)
## 6477 Avennia 2010 Arnaut Syrah (Yakima Valley)
## 6478 Bailly-Lapierre 2007 Vive-la-Joie Brut (Crémant de Bourgogne)
## 6479 Brunelli 2009 Amarone della Valpolicella Classico
## 6480 Del Bondio 2006 Cabernet Sauvignon (Rutherford)
## 6481 Parras Wines 2014 Terra Grande Branco White (Alentejano)
## 6482 Lavradores de Feitoria 2014 Meruge Red (Douro)
## 6483 Altocedro 2015 Año Cero Pinot Noir (La Consulta)
## 6484 Wetzel Estate NV Cuvée Blanc Sparkling (Willamette Valley)
## 6485 Montefrasco 2015 Montefresco (Montepulciano d'Abruzzo)
## 6486 Château Bianca 2015 Riesling (Willamette Valley)
## 6487 Quinta do Romeu 2011 Red (Douro)
## 6488 Sonoma Collection 2014 District 3 Red (Sonoma County)
## 6489 Zerran 2014 Red (Montsant)
## 6490 Wetzel Estate 2012 Estate Reserve Pinot Noir (Willamette Valley)
## 6491 Meeker 2012 Petite Sirah (Dry Creek Valley)
## 6492 Altos de Cristimil 2015 Albariño (Rías Baixas)
## 6493 Marques Escriba 2013 Monastrell-Tempranillo Red (Jumilla)
## 6494 Casa Montes 2014 Ampakama Cabernet Sauvignon (San Juan)
## 6495 Del Rio 2014 Cabernet Sauvignon (Rogue Valley)
## 6496 Oak Knoll NV Toasted Cow 5th Edition Red (Columbia Valley (WA))
## 6497 Bodegas Lozano NV Ophicus Brut Cuvée Sparkling (Spain)
## 6498 Il Chiosso 2008 Ghemme
## 6499 Marqués de Vargas 2013 Conde de San Cristóbal (Ribera del Duero)
## 6500 Pigro 2014 Montepulciano d'Abruzzo
## 6501 Quara 2015 Estate Cabernet Sauvignon (Cafayate)
## 6502 Roncão 2012 Quinta da Levandeira Reserva Red (Douro)
## 6503 Del Rio 2013 Syrah (Rogue Valley)
## 6504 Quinta do Romeu 2012 Reserva Red (Douro)
## 6505 Haarth 2013 Made With Organic Grapes Bonarda (Argentina)
## 6506 Hacienda del Carche NV Brut Sparkling (Cava)
## 6507 Trencalòs 2015 Sauvignon Blanc (Vino de la Tierra de Castilla)
## 6508 Josep Grau Viticultor 2015 L'Efecte Volador Red (Montsant)
## 6509 Via Revolucionaria 2015 Pura Bonarda (Mendoza)
## 6510 Altos de Torona 2013 Barrica Albariño (Rías Baixas)
## 6511 Domaine Patrick Javillier 2010 Cuvée Oligocene (Bourgogne)
## 6512 Finca Vieja 2004 Reserva Tempranillo (La Mancha)
## 6513 Jeunesse 2011 Cabernet Sauvignon (California)
## 6514 Lupé-Cholet 2010 Bourgogne
## 6515 2 Lads 2009 Cabernet Franc-Merlot (Old Mission Peninsula)
## 6516 Brys 2010 Estate Grown Pinot Noir (Old Mission Peninsula)
## 6517 Silver Thread 2011 Gewurztraminer (Finger Lakes)
## 6518 Mount Pleasant Winery 2007 Bethlehem Valley Norton (Missouri)
## 6519 Domaine L. Chatelain 2011 Chablis
## 6520 L. Tramier & Fils 2010 La Minée (Bourgogne)
## 6521 Louis Jadot 2010 Bourgogne
## 6522 André Guichot 2009 Bourgogne
## 6523 Vivác Winery 2009 Montepulciano (New Mexico)
## 6524 Gladium 2009 Crianza Tempranillo (La Mancha)
## 6525 Mount Pleasant Winery NV Dry Norton (Missouri)
## 6526 Mount Pleasant Winery NV Estates Cabernet Sauvignon (America)
## 6527 Three Fox 2010 La Boheme Viognier (Virginia)
## 6528 Truro 2007 Estate Grown Cabernet Franc (Southeastern New England)
## 6529 Santa Quiteria 2010 Altitud 1.100 Garnacha Tintorera Alicante Bouschet (Almansa)
## 6530 Bodegas Navarro López 2009 Old Vines Crianza Tempranillo (Valdepeñas)
## 6531 Vivác Winery 2009 Tempranillo (New Mexico)
## 6532 Wine Spots 2009 Cabernet Sauvignon (Napa Valley)
## 6533 Jaume Serra NV Cristalino Extra-Dry Sparkling (Cava)
## 6534 Lost Angel 2011 Pinot Noir (California)
## 6535 Peltier 2011 Hybrid Pinot Grigio (Lodi)
## 6536 Peltier 2011 Hybrid Vermentino (Lodi)
## 6537 Pierre André 2010 Octavie Crémieux (Bourgogne)
## 6538 Domaine Verret et Fils 2010 Chablis
## 6539 Georges Duboeuf 2011 Mâcon-Villages
## 6540 Debonné 2009 Cabernet Franc (Grand River Valley)
## 6541 Middle Sister NV Surfer Chick Sauvignon Blanc (California)
## 6542 Quintay 2014 Clava Reserve Pinot Noir (Casablanca Valley)
## 6543 14 Hands 2014 The Reserve Sauvignon Blanc (Horse Heaven Hills)
## 6544 Santa Alba 2013 Reserve Carmenère (Curicó Valley)
## 6545 Sarah's Vineyard 2013 Viognier (Santa Clara Valley)
## 6546 St. Francis 2014 Sauvignon Blanc (Sonoma County)
## 6547 Thirsty Owl Wine Company 2014 Dry Riesling (Finger Lakes)
## 6548 Flying Leap 2013 Tempranillo (Sonoita)
## 6549 Viña Casablanca 2013 Cefiro Reserva Carmenère (Rapel Valley)
## 6550 Ascension Cellars 2014 Halo Cass Vineyard Viognier (Paso Robles)
## 6551 Barnstormer 2014 Dry Riesling (Seneca Lake)
## 6552 Clos du Lac 2014 Estate Sauvignon Blanc (Sierra Foothills)
## 6553 Falernia 2014 Reserva Viognier (Elqui Valley)
## 6554 Viña La Fortuna 2013 Ventura Reserve Malbec (Lontué Valley)
## 6555 Vistamar 2013 Sepia Reserva Malbec (Maule Valley)
## 6556 Vistamar 2014 Reserva Sepia Pinot Noir (Casablanca Valley)
## 6557 Morandé 2014 Reserva Pinot Noir (Casablanca Valley)
## 6558 Ripken 2011 El Matador Graciano (Lodi)
## 6559 Sierra Batuco 2015 Reserva Pinot Grigio (Maule Valley)
## 6560 Adirondack Winery 2013 Summit Solitude Seyval Blanc (New York)
## 6561 Bedell 2013 Gewürztraminer (North Fork of Long Island)
## 6562 Bowers Harbor 2013 Unwooded Chardonnay (Old Mission Peninsula)
## 6563 Concha y Toro 2013 Marques de Casa Concha Merlot (Maule Valley)
## 6564 Haak 2011 Light Madeira Blanc du Bois (Texas)
## 6565 Indomita NV Rosé Sparkling (Casablanca Valley)
## 6566 Intipalka 2013 Valle del Sol Tannat (Ica)
## 6567 Lobster Reef 2014 Sauvignon Blanc (Marlborough)
## 6568 Messina Hof 2012 Paulo Limited Edition Primitivo (Texas)
## 6569 Millaman 2014 Estate Reserve Sauvignon Blanc (Curicó Valley)
## 6570 La Chablisienne 2006 Les Preuses Grand Cru (Chablis)
## 6571 Lookout Ridge 2006 Greg La Follette Van de Kamp Vineyard Pinot Noir (Sonoma Mountain)
## 6572 Olivier Leflaive 2006 Corton-Charlemagne
## 6573 Xavier Monnot 2006 Les Charmes Premier Cru (Meursault)
## 6574 Domaine Leflaive 2006 Les Pucelles Premier Cru (Puligny-Montrachet)
## 6575 Fielding Hills 2006 RiverBend Vineyard Syrah (Wahluke Slope)
## 6576 Royal Tokaji 1999 Mézes Mály Aszú 6 Puttonyos (Tokaji)
## 6577 Domaine Laroche 2006 Les Clos Grand Cru (Chablis)
## 6578 Domaine Leflaive 2006 Clavoillon Premier Cru (Puligny-Montrachet)
## 6579 Sheridan Vineyard 2005 Reserve Cabernet Sauvignon (Yakima Valley)
## 6580 Whitehall Lane 2005 Reserve Cabernet Sauvignon (Napa Valley)
## 6581 Woodward Canyon 2006 Old Vines Dedication Series #26 Cabernet Sauvignon (Columbia Valley (WA))
## 6582 Dutton-Goldfield 2006 McDougall Vineyard Pinot Noir (Sonoma Coast)
## 6583 Chanson Père et Fils 2005 Champs Gains Premier Cru (Puligny-Montrachet)
## 6584 Joseph Swan Vineyards 2006 Great Oak Vineyard Pinot Noir (Russian River Valley)
## 6585 Lost Canyon 2007 Trenton Station Vineyard Syrah (Russian River Valley)
## 6586 Mark Ryan 2006 Chardonnay (Columbia Valley (WA))
## 6587 Olivier Leflaive 2006 Les Pucelles Premier Cru (Puligny-Montrachet)
## 6588 Roberts & Rogers 2005 Cabernet Sauvignon (Howell Mountain)
## 6589 Quivet Cellars 2006 Las Madres Vineyard Syrah (Carneros)
## 6590 The Foundry 2004 Syrah (Coastal Region)
## 6591 Villa Cerna 2006 Chianti Classico
## 6592 Williams Selyem 2006 Pinot Noir (Sonoma Coast)
## 6593 Gagliole 2006 Rubiolo (Chianti Classico)
## 6594 Guilbaud Frères 2007 Le Soleil Nantais (Muscadet Sèvre et Maine)
## 6595 Cameron Hughes 2006 Lot 59 Chardonnay (Russian River Valley)
## 6596 Casa alle Vacche 2007 Vernaccia di San Gimignano
## 6597 Castello Vicchiomaggio 2006 Montevasco (Chianti Classico)
## 6598 D'Argenzio 2004 Tom Feeney Ranch Old Vine Zinfandel (Russian River Valley)
## 6599 Domaine du Clos du Fief 2007 Cuvée Tradition (Juliénas)
## 6600 Domaine Philippe Delesvaux 2005 La Montée de l'Epine Cabernet Sauvignon (Anjou)
## 6601 Georges Duboeuf 2007 Beaujolais-Villages
## 6602 Vagnoni 2007 Vernaccia di San Gimignano
## 6603 Valle Frio 2004 Reserva Merlot-Carmenère-Cabernet Sauvignon Red (Maule Valley)
## 6604 Villa Poggio Salvi 2006 Caspagnolo (Chianti Colli Senesi)
## 6605 Williams Selyem 2006 Pinot Noir (Central Coast)
## 6606 La Playa 2007 Block Selection Limari Reserve Sauvignon Blanc (Limarí Valley)
## 6607 Le Solive 2007 Vigna Aprico (Vernaccia di San Gimignano)
## 6608 Mount Nelson 2007 Sauvignon Blanc (Marlborough)
## 6609 Remy-Pannier 2007 Muscadet Sèvre et Maine
## 6610 Remy-Pannier 2007 Sancerre
## 6611 Robertson Winery 2007 Chardonnay (Robertson)
## 6612 Sbragia 2006 Home Ranch Chardonnay (Dry Creek Valley)
## 6613 Serdonis 2004 Ink Grade Vineyard Cabernet Sauvignon (Howell Mountain)
## 6614 Seven Terraces 2007 Sauvignon Blanc (Marlborough)
## 6615 Shark Trust 2007 Great White Unwooded Chardonnay (Western Cape)
## 6616 Kellerei Kaltern Caldaro 2010 Pinot Nero (Alto Adige)
## 6617 Janzen 2010 Cabernet Sauvignon (Napa Valley)
## 6618 Jean-Luc and Paul Aegerter 2010 Clos Roussots Premier Cru (Maranges)
## 6619 Kendall-Jackson 2011 Vintner's Reserve Cabernet Sauvignon (Sonoma County)
## 6620 Koenig Vineyards 2010 Ice Wine Riesling
## 6621 La Tordera NV Serrai Extra Dry (Conegliano Valdobbiadene Prosecco Superiore)
## 6622 Le P'tit Paysan 2011 Pierre's Pirouette Rosé of Mourvèdre (San Benito County)
## 6623 Luis Duarte 2012 Rapariga da Quinta Branco White (Alentejano)
## 6624 Monte delle Vigne 2009 Nabucco Red (Emilia)
## 6625 Pfendler 2011 Pinot Noir (Sonoma Coast)
## 6626 Podere Guado al Melo 2010 Guado al Melo White (Toscana)
## 6627 Querciavalle 2007 Losi Millennium Riserva (Chianti Classico)
## 6628 Season 2012 Viognier (Southern Oregon)
## 6629 Stonestreet 2011 Aurora Point Sauvignon Blanc (Alexander Valley)
## 6630 Stonestreet 2011 Terrace Ridge Semillon-Sauvignon Blanc (Alexander Valley)
## 6631 Storyteller 2011 Once Upon a Dream Merlot (Sonoma County)
## 6632 Suavia 2010 Monte Carbonare (Soave Classico)
## 6633 Sutcliffe 2010 Syrah (Sonoma Valley)
## 6634 Sutcliffe 2011 Pinot Gris (Carneros)
## 6635 TintoNegro 2010 Finca la Escuela Estate Grown Altamira Malbec (Mendoza)
## 6636 Altavins 2009 Tempus Red (Terra Alta)
## 6637 Tenuta Olim Bauda 2008 I Boschi Chardonnay (Piedmont)
## 6638 Husch 2011 Vine One Chardonnay (Anderson Valley)
## 6639 Bortolotti 2012 Extra Dry 47 (Conegliano Valdobbiadene Prosecco Superiore)
## 6640 Cava Aragon 2011 Madera 5 Nebbiolo (San Vicente)
## 6641 Chiarello Family Vineyards 2010 Giana Zinfandel (St. Helena)
## 6642 Coppo 2010 Costebianche Chardonnay (Piedmont)
## 6643 Dutton Estate 2011 Kylie's Cuvée Sauvignon Blanc (Russian River Valley)
## 6644 Firestone 2011 Chardonnay (Santa Ynez Valley)
## 6645 B.R. Cohn 2007 Pinot Noir (Russian River Valley)
## 6646 Baglio del Cristo di Campobello 2007 Laudàri Chardonnay (Sicilia)
## 6647 Castello Banfi 2008 Fontanelle Chardonnay (Toscana)
## 6648 Gunter Triebaumer 2007 Ruster Ausbruch Welschriesling (Burgenland)
## 6649 Nugan Family Estates 2008 Frasca's Lane Vineyard Chardonnay (King Valley)
## 6650 Pegasus Bay 2007 Chardonnay (Waipara Valley)
## 6651 Ruffino 2008 Tenuta La Solatìa Chardonnay (Toscana)
## 6652 Schug 2008 Chardonnay (Sonoma Coast)
## 6653 Simonnet-Febvre NV Pinot Noir Brut (Crémant de Bourgogne)
## 6654 Tasca d'Almerita 2007 Tenuta Regaleali Chardonnay (Sicilia)
## 6655 Tenuta Rapitalà 2007 Grand Cru Chardonnay (Sicilia)
## 6656 Hopper Creek 2006 Los Chamizal Chardonnay (Sonoma Valley)
## 6657 Viu Manent 2007 El Olivar Alto Single Vineyard Syrah (Colchagua Valley)
## 6658 David Arthur 2008 Sauvignon Blanc (Napa Valley)
## 6659 Domaine de la Mordorée 2009 La Dame Rousse (Tavel)
## 6660 Domaine Faiveley 2007 Les Rugiens Premier Cru (Pommard)
## 6661 Graffigna 2006 Grand Reserve Malbec (San Juan)
## 6662 Kaiken 2007 Ultra Malbec (Mendoza)
## 6663 Sticks 2008 Chardonnay (Yarra Valley)
## 6664 Te Awa 2007 Chardonnay (Hawke's Bay)
## 6665 Maison Jessiaume 2006 Clos de Vougeot
## 6666 Padilla Erickson 2007 Cabernet Sauvignon (Napa Valley)
## 6667 Santa Barbara Winery 2008 Sauvignon Blanc (Santa Ynez Valley)
## 6668 Bouchard Père & Fils 2007 Chassagne-Montrachet
## 6669 Force Majeure 2011 Collaboration Series VI Ciel du Cheval Vineyard G-S-M (Red Mountain)
## 6670 Sanguis 2011 Infidels Red (Santa Barbara County)
## 6671 Sanguis 2011 Loner W11-A Chardonnay (Sta. Rita Hills)
## 6672 Sanguis 2011 Misfit Syrah (Central Coast)
## 6673 Sparkman 2011 Stella Mae Red (Yakima Valley)
## 6674 Sula 2011 Dindori Reserve Shiraz (Nashik)
## 6675 Barons 2011 Cabernet Sauvignon (Columbia Valley (WA))
## 6676 Côtes de Ciel 2012 Ciel du Cheval Vineyard Cabernet Sauvignon (Red Mountain)
## 6677 Double Canyon 2012 Double Canyon Vineyard Cabernet Sauvignon (Horse Heaven Hills)
## 6678 Poças 2012 Reserva Red (Douro)
## 6679 Domaine Ehrhart 2011 Domaine Saint-Rémy Hengst Grand Cru Riesling (Alsace)
## 6680 Gaja 2011 Costa Russi Red (Langhe)
## 6681 Quintessa 2011 Red (Rutherford)
## 6682 San Simeon 2010 Estate Reserve Cabernet Sauvignon (Paso Robles)
## 6683 Still Waters 2009 Reflections of Still Waters Estate Grown Red (Paso Robles)
## 6684 Viberti 2007 San Pietro Riserva (Barolo)
## 6685 Foxen 2012 Tinaquaic Vineyard Syrah (Santa Maria Valley)
## 6686 Domaine Zind-Humbrecht 2012 Clos Häuserer Wintzenheim Riesling (Alsace)
## 6687 Dutton-Goldfield 2012 Dutton Ranch Morelli Lane Zinfandel (Russian River Valley)
## 6688 Côtes de Ciel 2012 Ciel du Cheval Vineyard Petit Verdot (Red Mountain)
## 6689 Diamond Creek 2011 Red Rock Terrace Cabernet Sauvignon (Napa Valley)
## 6690 Poderi Colla 2011 Roncaglie (Barbaresco)
## 6691 Red Car 2010 Estate Syrah (Fort Ross-Seaview)
## 6692 René Muré 2012 Clos Saint Landelin Vorbourg Grand Cru Gewurztraminer (Alsace)
## 6693 Rizzi 2011 Nervo (Barbaresco)
## 6694 Robert Biale 2012 Stagecoach Vineyards The Biale Block Zinfandel (Napa Valley)
## 6695 Sottimano 2011 Pajorè (Barbaresco)
## 6696 Trimbach 2011 Réserve Riesling (Alsace)
## 6697 La Braccesca 2009 Bramasole Syrah (Cortona)
## 6698 La Crema 2013 Pinot Noir (Sonoma Coast)
## 6699 La Purísima 2010 X Alphabet Wines Red (Yecla)
## 6700 WesMar 2012 Balletto Vineyard Pinot Noir (Russian River Valley)
## 6701 Wiston Estate Winery 2010 Cuvée Brut Sparkling (England)
## 6702 Mt. Brave 2011 Cabernet Sauvignon (Mount Veeder)
## 6703 Northstar 2012 Cabernet Sauvignon (Columbia Valley (WA))
## 6704 Onesta 2012 Bechthold Vineyard Cinsault (Lodi)
## 6705 Palmina 2011 Alisos Red (Santa Barbara County)
## 6706 Artadi 2012 El Sequé Monastrell (Alicante)
## 6707 Barrister 2012 Merlot (Walla Walla Valley (WA))
## 6708 Brovia 2012 Ciabot del Fì (Barbera d'Alba)
## 6709 Bucher 2014 Rosé of Pinot Noir (Russian River Valley)
## 6710 Casa Donoso 2012 D Red (Maule Valley)
## 6711 Château d'Or et de Gueules 2013 Les Cimels Red (Costières de Nîmes)
## 6712 Château Phélan-Ségur 2012 La Croix Bonis (Saint-Estèphe)
## 6713 Covington 2011 Cabernet Franc (Columbia Valley (WA))
## 6714 Deltetto 2011 Bussia (Barolo)
## 6715 Domaine de la Petite Cassagne 2013 Red (Costières de Nîmes)
## 6716 Domaine du Haut Bourg 2010 Signature du Haut Bourg (Muscadet Côtes de Grandlieu)
## 6717 Duemani 2012 Altrovino Red (Costa Toscana)
## 6718 Dunham 2012 Trutina Red (Columbia Valley (WA))
## 6719 Hermann J. Wiemer 2012 Lemberger (Seneca Lake)
## 6720 Judd's Hill 2010 Founder's Art Reserve Cabernet Sauvignon (Napa Valley)
## 6721 Lawrelin 2002 Cabernet Sauvignon (Columbia Valley (WA))
## 6722 Madrigal 2011 Petite Sirah (Napa Valley)
## 6723 Marimar Estate 2013 Don Miguel Vineyard La Masía Chardonnay (Russian River Valley)
## 6724 Milbrandt 2012 Sentinel Red (Wahluke Slope)
## 6725 Morgan 2013 12 Clones Pinot Noir (Santa Lucia Highlands)
## 6726 Nacido del Quórum 2011 Selección Monastrell (Jumilla)
## 6727 Tre Monti 2007 Casa Lola (Albana di Romagna)
## 6728 Domaine Chandon de Briailles 2006 Ile de Vergelesses Premier Cru (Pernand-Vergelesses)
## 6729 Gorman 2008 The Evil Twin Cabernet Sauvignon-Syrah (Red Mountain)
## 6730 Iron Horse 1996 Joy! Rosé Sparkling (Green Valley)
## 6731 Joseph Drouhin 2007 Grands-Echezeaux
## 6732 Joseph Drouhin 2008 Les Amoureuses Premier Cru (Chambolle-Musigny)
## 6733 Coquelicot 2008 Sixer Red (Happy Canyon of Santa Barbara)
## 6734 Domaine des Comtes Lafon 2008 Clos des Chênes Premier Cru (Volnay)
## 6735 Domaine Henri Gouges 2008 Les St.-Georges Premier Cru (Nuits-St.-Georges)
## 6736 Domaine Parent 2003 Les Rugiens Premier Cru (Pommard)
## 6737 Emmerich Knoll 2008 Ried Loibenberg Smaragd Grüner Veltliner (Wachau)
## 6738 Abeja 2009 Chardonnay (Washington)
## 6739 Atlas Peak 2006 Cabernet Sauvignon (Napa Valley)
## 6740 Blue Rock 2007 Best Barrels Cabernet Sauvignon (Alexander Valley)
## 6741 Roar 2008 Rosella's Vineyard Pinot Noir (Santa Lucia Highlands)
## 6742 La Poderina 2008 Vendemmia Tardiva (Moscadello di Montalcino)
## 6743 Robert Craig 2007 Cabernet Sauvignon (Howell Mountain)
## 6744 Domaine de Courcel 2007 Les Rugiens Premier Cru (Pommard)
## 6745 Henri de Villamont 2007 Mazis-Chambertin
## 6746 Château Saint-Pierre 2008 Saint-Julien
## 6747 DaMa 2009 DaMaNation G-S-M (Columbia Valley (WA))
## 6748 De Loach 2011 Marin Pinot Noir (Marin County)
## 6749 Dry Creek Vineyard 2012 Dry Chenin Blanc (Clarksburg)
## 6750 Dutton Estate 2012 Dutton Ranch Kylie's Cuvée Sauvignon Blanc (Russian River Valley)
## 6751 Fattoria La Lecciaia 2009 Vigna Manapetra (Brunello di Montalcino)
## 6752 Forstreiter 2011 Das weiße Mammut Reserve Grüner Veltliner (Kremstal)
## 6753 François Lurton 2012 Piedra Negra Alta Colección Malbec (Mendoza)
## 6754 Giovanni Chiappini 2012 Ferruggini (Bolgheri)
## 6755 HandCraft 2012 Artisan Collection Pinot Noir (California)
## 6756 Kessler-Haak 2011 Lafond Vineyard Syrah (Sta. Rita Hills)
## 6757 Kurt Angerer 2012 Loam Grüner Veltliner (Niederösterreich)
## 6758 La Collina dei Lecci 2009 Brunello di Montalcino
## 6759 Pacific Rim 2012 Sweet Riesling (Columbia Valley (WA))
## 6760 Poggio Antico 2009 Brunello di Montalcino
## 6761 Sattlerhof 2012 Sernauberg Sauvignon Blanc (Südsteiermark)
## 6762 Schwarzböck 2012 Kirchberg Reserve Grüner Veltliner (Niederösterreich)
## 6763 Stadlmann 2012 Anninger Zierfandler (Thermenregion)
## 6764 Tinhof 2012 White (Leithaberg)
## 6765 Bernhard Ott 2012 Stein Grüner Veltliner (Wagram-Donauland)
## 6766 Wölffer 2010 Lombardo Merlot (The Hamptons, Long Island)
## 6767 ZaHa 2011 Red Blend Malbec-Cabernet Sauvignon (Mendoza)
## 6768 Hubert Weber 2007 Cellar Selection Cabernet Sauvignon (Mendoza)
## 6769 Val do Sosego 2012 Albariño (Rías Baixas)
## 6770 Canalicchio Franco Pacenti 2009 Brunello di Montalcino
## 6771 Caparzo 2009 Brunello di Montalcino
## 6772 Château Andron Blanquet 2011 Saint-Estèphe
## 6773 Château Charmail 2011 Haut-Médoc
## 6774 Château Grand Bertin de Saint Clair 2011 Médoc
## 6775 Château la Patache 2010 Pomerol
## 6776 Château Lestage Simon 2011 Haut-Médoc
## 6777 Louis Métaireau 2006 Grand Mouton (Muscadet Sèvre et Maine)
## 6778 Ponzi 2006 Pinot Noir (Willamette Valley)
## 6779 Spier 2005 Pinotage (Stellenbosch)
## 6780 Ninquén 2006 Antu Mountain Vineyard Cabernet Sauvignon-Carmenère (Colchagua Valley)
## 6781 Dancing Coyote 2006 Petite Sirah (Clarksburg)
## 6782 Georges Vigouroux 2005 Château de Mercuès Red (Cahors)
## 6783 Chamonix 2006 Reserve Pinot Noir (Franschhoek)
## 6784 Hamilton Russell 2006 Pinot Noir (Walker Bay)
## 6785 Bastianich 2006 Vespa White (Venezia Giulia)
## 6786 Clos Triguedina 2005 Le Moelleux du Clos Chenin Blanc (Vin de Pays du Comté Tolosan)
## 6787 Oak Grove 2007 Reserve Viognier (California)
## 6788 Pago de los Capellanes 2005 Crianza (Ribera del Duero)
## 6789 Phelps Creek 2007 Celilo Vineyard Chardonnay (Columbia Gorge (OR))
## 6790 Producteurs Plaimont 2002 Château de Crouseilles Red (Madiran)
## 6791 Le Riche 2003 Cabernet Sauvignon (Stellenbosch)
## 6792 Winzer Krems 2007 Sandgrube 13 Edition Chremisa Grüner Veltliner (Kremstal)
## 6793 Guardian Peak 2006 Shiraz (Western Cape)
## 6794 Black Rock 2006 Red Blend Red (Swartland)
## 6795 Bodegas Vidal Soblechero 2007 Viña Clavidor Cepas Viejas Verdejo (Rueda)
## 6796 Lisini 2008 Brunello di Montalcino
## 6797 Marqués de la Concordia 2007 Hacienda de Susar (Rioja)
## 6798 Nottingham Cellars 2009 Supremacy Red (Livermore Valley)
## 6799 Pieve Santa Restituta 2008 Sugarille (Brunello di Montalcino)
## 6800 Château Teyssier 2010 Saint-Émilion
## 6801 Cuda Ridge Wines 2010 Merlot (Livermore Valley)
## 6802 Fattoria La Lecciaia 2007 Riserva (Brunello di Montalcino)
## 6803 Franciscan 2010 Cabernet Sauvignon (Napa Valley)
## 6804 Hawley 2010 Estines Vineyard Pinot Noir (Russian River Valley)
## 6805 Robertson Winery 2009 Number One Constitution Road Shiraz (Robertson)
## 6806 San Filippo di Giannelli 2008 Brunello di Montalcino
## 6807 Smashberry 2011 Red (Central Coast)
## 6808 Tarlant NV Rosé Zéro Extra Brut (Champagne)
## 6809 Terre Nere di Campigli - Vallone 2008 Brunello di Montalcino
## 6810 Trapiche 2010 Iscay Syrah-Viognier (Mendoza)
## 6811 3 Horse Ranch Vineyards 2011 Reserve Rosé
## 6812 Baron De Ley 2009 Finca Monasterio (Rioja)
## 6813 Bodega Otto Bestué 2009 Finca Santa Sabina Cabernet Sauvignon-Tempranillo (Somontano)
## 6814 Château Baracan 2010 Cadillac Côtes de Bordeaux
## 6815 Château Carignan 2009 Cadillac Côtes de Bordeaux
## 6816 Château Côte Montpezat 2010 Cuvée Compostelle (Castillon Côtes de Bordeaux)
## 6817 Château la Croix Saint-Pierre 2010 Grande Réserve (Blaye Côtes de Bordeaux)
## 6818 Château Suau 2010 Cadillac Côtes de Bordeaux
## 6819 PasoPort 2009 Vinho Tinto Red (Paso Robles)
## 6820 Peter Cellars 2010 Estate Pinot Noir (Carneros)
## 6821 Ridolfi 2008 Brunello di Montalcino
## 6822 Sawtooth 2010 Skyline Red
## 6823 Seagrape 2010 Jump Up Pinot Noir (Sta. Rita Hills)
## 6824 Le Chiuse 2007 Riserva (Brunello di Montalcino)
## 6825 Londer 2010 Paraboll Pinot Noir (Anderson Valley)
## 6826 Montevannos 2005 Crianza (Ribera del Duero)
## 6827 Pannier 2005 Blanc de Blancs Brut Chardonnay (Champagne)
## 6828 Andeluna 2010 Altitud Malbec (Tupungato)
## 6829 Avanthia 2011 Godello (Valdeorras)
## 6830 Casanuova delle Cerbaie 2008 Brunello di Montalcino
## 6831 Casato1 2008 Voliero (Brunello di Montalcino)
## 6832 Castiglion del Bosco 2008 Campo del Drago (Brunello di Montalcino)
## 6833 Cava d'Onice 2008 Brunello di Montalcino
## 6834 Viñas del Cenit 2009 Via Cenit Tempranillo (Tierra del Viños de Zamora)
## 6835 Yann Alexandre 2004 Millésime Premier Cru Extra Brut (Champagne)
## 6836 Reyneke 2008 Reserve Syrah-Cabernet Sauvignon (Stellenbosch)
## 6837 Château Bouscaut 2010 Pessac-Léognan
## 6838 Château Lalande-Borie 2010 Saint-Julien
## 6839 Château Potensac 2010 Médoc
## 6840 Château Suau 2010 L'Artolie (Cadillac Côtes de Bordeaux)
## 6841 Domaine Chandon 2010 Chardonnay (Carneros)
## 6842 Fossacolle 2008 Brunello di Montalcino
## 6843 Gianni Brunelli 2008 Le Chiuse di Sotto (Brunello di Montalcino)
## 6844 Abbadia Ardenga 2008 Vigna Piaggia (Brunello di Montalcino)
## 6845 Altesino 2008 Brunello di Montalcino
## 6846 Anthony Road 2009 Martini Reinhardt Selection Riesling (Finger Lakes)
## 6847 Bodega Norton 2010 Privada Red (Mendoza)
## 6848 Bonacchi 2008 Molino della Suga (Brunello di Montalcino)
## 6849 Castello Banfi 2008 Brunello di Montalcino
## 6850 Château Bouscaut 2010 Pessac-Léognan
## 6851 Château Manon la Lagune 2010 Blaye Côtes de Bordeaux
## 6852 Il Marroneto 2008 Selezione Madonna delle Grazie (Brunello di Montalcino)
## 6853 Keller Estate 2010 Oro de Plata Chardonnay (Sonoma Coast)
## 6854 Baron Albert NV L'Universelle Brut (Champagne)
## 6855 Bellenda 2016 Miravel Extra Dry (Valdobbiadene Prosecco Superiore)
## 6856 Bortolomiol 2015 Grand Cuvée del Fondatore Motus Vitae Rive San Pietro di Barbozza Brut Nature (Valdobbiadene Prosecco Superiore)
## 6857 Bressia 2014 Monteagrelo Cabernet Franc (Mendoza)
## 6858 Buttonwood 2016 Estate Grown Grenache Blanc (Santa Ynez Valley)
## 6859 Viñas del Cenit 2014 Venta Mazzaron Tempranillo (Vino de la Tierra de Castilla y León)
## 6860 Terre di San Venanzio Fortunato NV Extra Dry (Valdobbiadene Prosecco Superiore)
## 6861 Canard-Duchêne NV Charles VII Grande Cuvée des Lys Blanc de Noirs Brut (Champagne)
## 6862 Cave de Turckheim NV Mayerling Brut Rosé Sparkling (Crémant d'Alsace)
## 6863 Cave du Roi Dagobert NV Prestige Brut Sparkling (Crémant d'Alsace)
## 6864 Cave Spring 2014 Cabernet Franc (Niagara Escarpment)
## 6865 Cinnabar 2014 Carignan (Contra Costa County)
## 6866 Colomé 2016 Estate Torrontés (Salta)
## 6867 Dr. Leimbrock 2015 Graacher Himmelreich Kabinett Feinherb Riesling (Mosel)
## 6868 Emile Leclère NV Blanc de Blancs Brut Chardonnay (Champagne)
## 6869 Finca Flichman 2015 Paisaje de Tupungato Malbec (Mendoza)
## 6870 Fuchs und Hase 2015 Pet Nat Vol. 5 Sparkling (Weinland Österreich)
## 6871 Goose Bay 2015 Kosher Sauvignon Blanc (South Island)
## 6872 Guerrieri Rizzardi 2015 Soave Classico
## 6873 Henriet-Bazin NV Blanc de Blancs Premier Cru Demi-Sec Chardonnay (Champagne)
## 6874 Inurrieta 2011 Cuatrocientos Crianza Red (Navarra)
## 6875 Le Colture NV Fagher Brut (Valdobbiadene Prosecco Superiore)
## 6876 Legras & Haas NV Tradition Brut (Champagne)
## 6877 Leonard Kreusch 2016 Weinkellerei Riesling (Rheinhessen)
## 6878 Misty Cove 2015 Pinot Noir (Marlborough)
## 6879 St. Innocent 2015 Freedom Hill Vineyard Pinot Blanc (Willamette Valley)
## 6880 Stephen Ross 2015 Dante Dusi Vineyard Zinfandel (Paso Robles)
## 6881 Studert-Prüm 2016 Bernkasteler Badstube Kabinett Riesling (Mosel)
## 6882 Tercero 2016 Aberration Cabernet Franc (Santa Barbara County)
## 6883 Adami NV Dry (Valdobbiadene Superiore di Cartizze)
## 6884 Cantina Cortaccia 2014 Pinot Grigio (Alto Adige)
## 6885 Ca'Ronesca 2014 Pinot Bianco (Collio)
## 6886 Ca'Ronesca 2014 Sauvignon (Collio)
## 6887 Castello di Buttrio 2014 Friulano (Friuli Colli Orientali)
## 6888 Castello di Buttrio 2014 Sauvignon (Friuli Colli Orientali)
## 6889 Mogollon 2012 Malbec (Uco Valley)
## 6890 Von Der Leyen 2014 Riesling (Nahe)
## 6891 Griffin Creek 2012 Cabernet Franc (Rogue Valley)
## 6892 Griffin Creek 2012 Syrah (Rogue Valley)
## 6893 Dorigo 2014 Ribolla Gialla (Friuli Colli Orientali)
## 6894 Erste Neue 2014 Classic Sauvignon (Alto Adige)
## 6895 Fiegl 2013 Leopold White (Collio)
## 6896 Fruscalzo 2014 Friulano (Collio)
## 6897 Fullerton 2013 Five Faces Pinot Noir (Willamette Valley)
## 6898 Gigante 2013 Chardonnay (Friuli Colli Orientali)
## 6899 Gooseneck 2014 Pinot Noir (Oregon)
## 6900 Domaine Le Billoud 2011 Familia Giraud Billoud Malbec (Mendoza)
## 6901 Meran 2014 Graf von Meran Kerner (Alto Adige)
## 6902 Mezzacorona 2014 Riserva Pinot Grigio (Trentino)
## 6903 Mezzacorona 2015 Pinot Grigio (Trentino)
## 6904 Michael David 2014 Chardonnay (Lodi)
## 6905 Monteviejo 2014 Festivo Malbec (Mendoza)
## 6906 Nathaniel Rose 2012 Left Bank Abigail's Vineyard Domaine Barrien Cabernet Sauvignon (Lake Michigan Shore)
## 6907 Petrucco 2014 Sauvignon (Friuli Colli Orientali)
## 6908 Pflücken 2014 Semidry Riesling (Mosel)
## 6909 Rui Roboredo Madeira 2014 Beyra Reserva Quartz White (Beira Interior)
## 6910 Salentein 2013 Reserve Chardonnay (Valle de Uco)
## 6911 Kris 2014 Pinot Grigio (Delle Venezie)
## 6912 Viu Manent 2011 Viu 1 Malbec (Colchagua Valley)
## 6913 Wines & Winemakers 2012 Companhia das Lezírias Tyto Alba Vinhas Protegidas Touriga Nacional (Tejo)
## 6914 Dion 2012 Winemaker's Reserve Pinot Noir (Chehalem Mountains)
## 6915 Domaine de l'Ecu 2013 Granite (Muscadet Sèvre et Maine)
## 6916 Flowers 2012 Camp Meeting Ridge Estate Vineyard Pinot Noir (Sonoma Coast)
## 6917 Genium Celler 2009 Poboleda Vi de la Villa Red (Priorat)
## 6918 Gini 2013 La Froscà (Soave Classico)
## 6919 Amalie Robert 2012 Our Muse Viognier (Willamette Valley)
## 6920 Au Bon Climat 2011 Knox Alexander Pinot Noir (Santa Maria Valley)
## 6921 Aveleda 2013 Reserva da Familia White (Bairrada)
## 6922 Bonnet-Huteau 2010 Goulaine Vieilles Vignes (Muscadet Sèvre et Maine)
## 6923 Brewer-Clifton 2012 Machado Chardonnay (Sta. Rita Hills)
## 6924 Center of Effort 2012 Pinot Noir (Edna Valley)
## 6925 Les Belles Collines 2013 Pinot Noir (Russian River Valley)
## 6926 Wrath 2012 Swan/828 Pinot Noir (Monterey)
## 6927 Merry Edwards 2011 Angel Wing Pinot Noir (Russian River Valley)
## 6928 Paul Hobbs 2011 Beckstoffer Las Piedras Vineyard Cabernet Sauvignon (St. Helena)
## 6929 Quinta de Foz de Arouce 2011 Red (Beira Atlantico)
## 6930 Herdade do Esporão 2011 Esporão Reserva Red (Alentejo)
## 6931 J. Christopher 2012 Sandra Adele Pinot Noir (Dundee Hills)
## 6932 Maximin Grünhäuser 2011 Spätburgunder (Mosel)
## 6933 Quinta da Rede 2012 Reserva Red (Douro)
## 6934 Quinta Nova de Nossa Senhora do Carmo 2012 Grande Reserva Red (Douro)
## 6935 Ad Vivum 2012 Sleeping Lady Vineyard Cabernet Sauvignon (Yountville)
## 6936 Chanin 2013 Zotovich Vineyard Pinot Noir (Sta. Rita Hills)
## 6937 Russiz Superiore 2013 Sauvignon (Collio)
## 6938 Senses 2012 Pinot Noir (Sonoma Coast)
## 6939 Wine & Soul 2012 Pintas Character Red (Douro)
## 6940 Wrath 2012 Tondre Vineyard Pinot Noir (Santa Lucia Highlands)
## 6941 Herdade das Servas 2011 Reserva Alicante Bouschet (Alentejano)
## 6942 Henschke 2007 Julius Riesling (Eden Valley)
## 6943 Brampton 2008 Sauvignon Blanc (Western Cape)
## 6944 Château de Bel-Air 2005 Lalande de Pomerol
## 6945 Mitchelton 2002 Print Shiraz (Central Victoria)
## 6946 Müller-Catoir 2007 Haardt Trocken Riesling (Pfalz)
## 6947 Pfeffingen 2007 Dry Riesling (Pfalz)
## 6948 Pfeffingen 2007 Ungsteiner Herrenberg Spätlese Scheurebe (Pfalz)
## 6949 Rietvallei Estate Wine 2007 Cabernet Sauvignon (Robertson)
## 6950 Robert Karl 2005 Gunselman Bench Vineyard Cabernet Sauvignon (Horse Heaven Hills)
## 6951 Sesti 2004 Brunello di Montalcino
## 6952 Podere Paganico 2004 Brunello di Montalcino
## 6953 J.L. Wolf 2006 Wachenheimer Belz Spätlese Riesling (Pfalz)
## 6954 Lustau NV Light Fino Jarana Sherry (Jerez)
## 6955 :Nota Bene 2006 Verhey Vineyard Malbec (Yakima Valley)
## 6956 Ökonomierat Rebholz 2007 Von Rotliegenden Spätlese Riesling (Pfalz)
## 6957 Fitz-Ritter 2006 Dürkheimer Michelsberg Grosses Gewächs Riesling (Pfalz)
## 6958 Geh. Rat Dr. von Bassermann-Jordan 2006 Deidesheimer Leinhöhle Spätlese Riesling (Pfalz)
## 6959 Château Franc-Cardinal 2005 Bordeaux Côtes de Francs
## 6960 Château Haut Beyzac 2005 I Second Haut Beyzac (Haut-Médoc)
## 6961 Vèscine 2005 Lodolaio Riserva (Chianti Classico)
## 6962 Quinta de Paços 2016 White (Vinho Verde)
## 6963 Reyes 2011 Robby's Red (California)
## 6964 Santi 2015 Ventale (Valpolicella Superiore)
## 6965 Scotto Family Cellars 2015 Cabernet Sauvignon (Lodi)
## 6966 Séamus Wines 2014 Shannon Wood Vineyard Sauvignon Blanc (Russian River Valley)
## 6967 Tenuta Casaletti 2016 Valpolicella
## 6968 Uphill Vineyards 2016 Estate Grown Rosato di Primitivo (Amador County)
## 6969 Veramar 2016 JB Winemaker Series Cabernet Franc (Shenandoah Valley)
## 6970 Viñedo de los Vientos 2012 Eolo Gran Reserva Red (Atlantida)
## 6971 Vini 2016 Veni Vidi Vici Rosé (Thracian Valley)
## 6972 Woodbridge by Robert Mondavi 2015 Cabernet Sauvignon (California)
## 6973 Adega Vila Real 2016 Premium White (Douro)
## 6974 Agustinos 2016 Reserva Sauvignon Blanc (Bío Bío Valley)
## 6975 Arbor Bench Vineyards 2013 Estate Cabernet Sauvignon (Dry Creek Valley)
## 6976 Aveleda 2015 Casal Garcia Red (Douro)
## 6977 Belle Ambiance 2016 Pinot Grigio (California)
## 6978 Bogle 2016 Chardonnay (California)
## 6979 Château Gardut Haut Cluzeau 2016 Blaye Côtes de Bordeaux
## 6980 Château La Fleur Ribeyrolles 2016 Entre-Deux-Mers
## 6981 Château Larrivaux 2013 Haut-Médoc
## 6982 Chilensis 2015 Reserva Estate Bottled Malbec (Maule Valley)
## 6983 Clairault 2016 Sauvignon Blanc-Semillon (Margaret River)
## 6984 Delibori 2016 Bardolino Classico
## 6985 DFJ Vinhos 2016 Brigando Red (Lisboa)
## 6986 Feist 2014 Chardonnay (California)
## 6987 Hardys 2014 Stamp of Australia Shiraz (South Eastern Australia)
## 6988 Jidvei 2016 Treasure of Transylvania Medium Sweet Gewurztraminer (Tarnave)
## 6989 Karah Estate 2015 Estate Pinot Noir (Sonoma Coast)
## 6990 Les Rocailles 2016 Rosé (Savoie)
## 6991 Les Rocailles NV Caprice des Rocailles Gamay (Savoie)
## 6992 Brander 2012 Merlot (Santa Ynez Valley)
## 6993 Haka by Labyrinth 2010 Freebird Red (Paso Robles)
## 6994 Krutz 2010 Stagecoach Vineyard Limited Edition Artist Series Cabernet Sauvignon (Napa Valley)
## 6995 Monchiero Carbone 2012 Sire Nebbiolo (Langhe)
## 6996 Montes 2011 Alpha Malbec (Colchagua Valley)
## 6997 Naggiar 2010 Don Giovanni Estate Grown Red (Sierra Foothills)
## 6998 Batič 2009 Angel Grande Cuvée Rezerva White (Vipavska Dolina)
## 6999 Batič 2010 Cabernet Franc (Vipavska Dolina)
## 7000 Borgognot 2010 Barolo
## 7001 Ca' del Baio 2012 Nebbiolo (Langhe)
## 7002 Charles Sparr 2011 Leimengrub Pinot Noir (Alsace)
## 7003 Château Henri Bonnaud 2013 Rosé (Palette)
## 7004 Château la Coste 2013 Bellugue Rosé (Coteaux d'Aix-en-Provence)
## 7005 Château Lagrave 2012 Le Second (Saint-Émilion)
## 7006 Château le Moulin d'Ulysse 2011 Haut-Médoc
## 7007 Domaine Gérard Neumeyer 2012 Le Berger Pinot Gris (Alsace)
## 7008 Elvio Cogno 2011 Bordini (Barbaresco)
## 7009 Wise Villa 2012 Estate Grown and Produced Touriga Nacional (Sierra Foothills)
## 7010 Broken Earth 2010 CV Reserve Cabernet Sauvignon (Paso Robles)
## 7011 Château Terrasson 2012 Cuvée Prevenche (Castillon Côtes de Bordeaux)
## 7012 Cleto Chiarli 2013 Vigneto Cialdini (Lambrusco Grasparossa di Castelvetro)
## 7013 Concha y Toro 2013 Marques de Casa Concha Chardonnay (Limarí Valley)
## 7014 Caves Aliança 2011 Alabastro Reserva Red (Alentejano)
## 7015 Château de Palayson 2009 Grande Cuvée Cabernet-Syrah (Var)
## 7016 Château des Matards 2012 Cuvée Nathan (Blaye Côtes de Bordeaux)
## 7017 Columbia Winery 2013 Grenache Rosé (Horse Heaven Hills)
## 7018 Comartin 2011 The Porterhouse Syrah-Grenache (Central Coast)
## 7019 Cooper-Garrod 2010 Finley Vineyard Estate Syrah (Santa Cruz Mountains)
## 7020 Dunham 2011 Trutina Red (Columbia Valley (WA))
## 7021 Hugel 2009 Jubiléé Pinot Noir (Alsace)
## 7022 Domaine Zind-Humbrecht 2007 Wintzheim Gewurztraminer (Alsace)
## 7023 Hobo 2008 Treborce Vineyard Zinfandel (Dry Creek Valley)
## 7024 La Montina 2005 Millesimato Brut Sparkling (Franciacorta)
## 7025 La Valle 2000 Zerum Riserva Dosaggio Zero Chardonnay (Franciacorta)
## 7026 Valli 2008 Bannockburn Vineyard Pinot Noir (Central Otago)
## 7027 William Harrison 2006 Estate Bottled Cabernet Franc (Rutherford)
## 7028 Brion 2005 Cabernet Sauvignon (Napa Valley)
## 7029 Craggy Range 2007 Sophia Gimblett Gravels Red (Hawke's Bay)
## 7030 Peju 2006 Reserve Estate Bottled Cabernet Franc (Rutherford)
## 7031 William Harrison 2006 Estate Bottled Cabernet Sauvignon (Rutherford)
## 7032 Barnett 2007 Cabernet Sauvignon (Spring Mountain District)
## 7033 Bellavista NV Gran Cuvée Satèn Chardonnay (Franciacorta)
## 7034 Brittan Vineyards 2006 Basalt Block Pinot Noir (Willamette Valley)
## 7035 Château Coutet 2005 Saint-Émilion
## 7036 Teso La Monja 2007 Almirez (Toro)
## 7037 Trinity Hill 2007 The Gimblett Red (Hawke's Bay)
## 7038 Kendall-Jackson 2007 Highlands Estates Trace Ridge Red (Knights Valley)
## 7039 Merry Edwards 2007 Flax Vineyard Pinot Noir (Russian River Valley)
## 7040 Miraflores 2006 Botricelli Semillon-Sauvignon Blanc (California)
## 7041 Hobo 2008 Branham Rockpile Vineyard Zinfandel (Rockpile)
## 7042 Ken Wright 2008 McCrone Vineyard Pinot Noir
## 7043 Markus Molitor 2008 Zeltinger Sonnenuhr Spätlese Riesling (Mosel)
## 7044 Bernier 2014 Chardonnay (Val de Loire)
## 7045 Campelo 2014 Casal da Seara White (Vinho Verde)
## 7046 Cartuxa 2014 Vinea Tinto Red (Alentejano)
## 7047 Ricordi 2012 Cabernet Sauvignon (Mendoza)
## 7048 Septima 2014 Malbec (Mendoza)
## 7049 Mossback 2014 Chardonnay (Russian River Valley)
## 7050 Quintas de Melgaço 2014 Lagar Rosé (Vinho Verde)
## 7051 Bodegas San Valero 2014 Particular Chardonnay (Cariñena)
## 7052 Halleck 2013 Three Sons Cuvee Pinot Noir (Russian River Valley)
## 7053 Henry Estate 2014 Pinot Noir (Umpqua Valley)
## 7054 Luis Segundo Correas 2011 Valle Las Acequias Cabernet Sauvignon (Mendoza)
## 7055 Ramspur 2012 Otton Vineyards Pinot Noir (Carneros)
## 7056 Aljibes 2014 VA Viña Aljibes Sauvignon Blanc-Chardonnay (Vino de la Tierra de Castilla)
## 7057 Baron De Ley 2014 White (Rioja)
## 7058 Buena Vista 2012 Merlot (Carneros)
## 7059 Clément Bosquet 2014 Malbec (Cahors)
## 7060 Domaine d'Arton 2014 Ysé Rosé (Côtes de Gascogne)
## 7061 Adega Cooperativa de Borba 2014 Senses Alvarinho (Alentejano)
## 7062 Castro Martin 2013 Family Estate Selection Albariño (Rías Baixas)
## 7063 Vieira de Plata 2014 Albariño (Rías Baixas)
## 7064 Wines & Winemakers 2014 Companhia das Lezírias Tyto Alba Vinhas Protegidas Sauvignon Blanc (Tejo)
## 7065 Twisted 2013 Moscato (California)
## 7066 Paso a Paso 2014 White (Vino de la Tierra de Castilla)
## 7067 Herdade do Rocim 2014 Mariana Rosé (Alentejano)
## 7068 Château Laulerie 2014 White (Bergerac Sec)
## 7069 Egeo 2014 Verdejo (Rueda)
## 7070 Costa di Bussia 2011 Vigna Campo del Gatto (Barbera d'Alba)
## 7071 Oak Knoll 2012 Dion Vineyard Pinot Noir (Willamette Valley)
## 7072 Wines & Winemakers 2013 Monta da Baía Red (Península de Setúbal)
## 7073 Fowles Wine 2012 Are You Game? Pinot Noir (Victoria)
## 7074 Wente 2005 Crane Ridge Merlot (Livermore Valley)
## 7075 Folie à Deux 2006 Cabernet Sauvignon (Napa Valley)
## 7076 Gimenez Riili 2007 Perpetuum Torrontés (La Rioja)
## 7077 Achaval-Ferrer 2007 Malbec (Mendoza)
## 7078 Baywood 2006 Vineyard Select Symphony (California)
## 7079 Wente 2006 The Nth Degree Chardonnay (Livermore Valley)
## 7080 Louis d'Armont 2006 Bourgogne
## 7081 Midnight 2005 Malbec (Paso Robles)
## 7082 De Bortoli 2006 Estate Grown Pinot Noir (Yarra Valley)
## 7083 Giant Steps 2006 Sexton Vineyard Pinot Noir (Yarra Valley)
## 7084 Brutocao 2005 Contento Vineyard Primitivo (Mendocino)
## 7085 Maryhill 2005 Cabernet Franc (Columbia Valley (WA))
## 7086 Verve 2006 Pinot Noir (Sonoma Coast)
## 7087 Deerfield Ranch 2004 Cuveé Merlot (North Coast)
## 7088 Tamaya 2007 Winemaker's Selection Single Vineyard Sauvignon Blanc (Limarí Valley)
## 7089 Arns 2004 Estate Grown Cabernet Sauvignon (Napa Valley)
## 7090 Jacuzzi 2006 Morine Ranch Primitivo (Lake County)
## 7091 Trapiche NV Extra Brut Sparkling (Mendoza)
## 7092 Tamaya 2007 Pink Goat Rosé (Limarí Valley)
## 7093 Undurraga NV Brut (Maipo Valley)
## 7094 Bodega Don Bosco 2007 Torrontés (Maipú)
## 7095 Finca El Origen 2007 Gran Reserva Malbec (Uco Valley)
## 7096 Pascual Toso 2007 Torrontés (Maipú)
## 7097 Domaines Barons de Rothschild (Lafite) 2008 Los Vascos Rosé (Colchagua Valley)
## 7098 Signorello 2005 Padrone Proprietary Red Wine Red (Napa Valley)
## 7099 Cockburn's 2009 Late Bottled Vintage (Port)
## 7100 Cyatho 2014 Verdejo (Rueda)
## 7101 De Faveri 2014 GeG (Valdobbiadene Prosecco Superiore)
## 7102 Domaine Fernand Engel 2013 Tradition Sparkling (Crémant d'Alsace)
## 7103 Domaine François Schmitt NV Rosé Sparkling (Crémant d'Alsace)
## 7104 Dorigo NV Blanc de Blancs Pas Dosé Metodo Classico Chardonnay (Vino Spumante)
## 7105 Chehalem 2013 Ridgecrest Vineyards Gamay Noir (Ribbon Ridge)
## 7106 Collet NV Extra Brut (Champagne)
## 7107 Fiuza 2014 Premium Sauvignon Blanc (Tejo)
## 7108 G. H. Mumm NV Cordon Rouge Brut (Champagne)
## 7109 Poças 2010 Late Bottled Vintage (Port)
## 7110 Pride Mountain 2013 Vintner Select Chardonnay (Sonoma County)
## 7111 Primarius 2013 Pinot Noir (Oregon)
## 7112 Sanguis 2012 1/1 Syrah (Central Coast)
## 7113 Santa Barbara Winery 2013 Pinot Noir (Santa Barbara County)
## 7114 Siduri 2013 Pinot Noir (Sonoma County)
## 7115 Simonsig 2014 Sunbird Sauvignon Blanc (Western Cape)
## 7116 Sonoma-Cutrer 2014 Winemaker's Release Sauvignon Blanc (Russian River Valley)
## 7117 Il Follo 2014 Villa Luigia Extra Dry (Valdobbiadene Prosecco Superiore)
## 7118 Jacquart NV Extra Brut (Champagne)
## 7119 La Gioiosa NV Extra Dry (Valdobbiadene Prosecco Superiore)
## 7120 Villa Sandi NV Cuvée Oris (Valdobbiadene Prosecco Superiore)
## 7121 Vivanco 2012 Colección Vivanco 4 Varietales Tempranillo-Graciano-Garnacha-Mazuelo (Rioja)
## 7122 Yohan Lardy 2014 Les Michelons (Moulin-à-Vent)
## 7123 Zardetto 2014 Viti di San Mor Brut (Valdobbiadene Prosecco Superiore)
## 7124 Beckmen 2012 Cuvee Le Bac Red (Santa Ynez Valley)
## 7125 Bodegas Landaluce 2014 White (Rioja)
## 7126 Burrowing Owl 2011 Meritage (Okanagan Valley)
## 7127 François Lurton 2015 Piedra Negra Alta Colección Pinot Gris (Valle de Uco)
## 7128 Joullian 2014 Family Reserve Sauvignon Blanc (Carmel Valley)
## 7129 Torii Mor 2009 Hawks View Vineyard Pinot Noir (Chehalem Mountains)
## 7130 V. Sattui 2010 Dry Riesling (Napa Valley)
## 7131 Hedgeline 2010 Pinot Noir (Oregon)
## 7132 Herdade do Esporão 2010 4 Quatro Castas Red (Alentejano)
## 7133 Chilcas 2011 Reserva Sauvignon Blanc (Casablanca Valley)
## 7134 Ciavolich Giuseppe 2005 Antrum (Montepulciano d'Abruzzo)
## 7135 Clos des Augustins 2010 Les Bambins Red (Coteaux du Languedoc Pic Saint Loup)
## 7136 Ventisquero 2011 Gran Reserva Sauvignon Blanc (Casablanca Valley)
## 7137 Vigne & Vini 2008 Passione (Primitivo del Salento)
## 7138 Indigené 2007 Cabernet Sauvignon (Carmel Valley)
## 7139 King Estate 2010 Chardonnay (Oregon)
## 7140 Niepoort NV Tawny (Port)
## 7141 Panther Creek 2008 Verde Vineyards Pinot Noir (Willamette Valley)
## 7142 Quails' Gate 2009 Pinot Noir (Okanagan Valley)
## 7143 Palladino 2005 Bricco delle Olive (Barbera d'Alba Superiore)
## 7144 Altamura 2004 Cabernet Sauvignon (Napa Valley)
## 7145 William Hill Estate 2006 Estate Chardonnay (Napa Valley)
## 7146 Guy Saget 2010 La Petite Perrière Sauvignon Blanc (Vin de France)
## 7147 Cono Sur 2009 Grapes Organically Grown Sauvignon Blanc (San Antonio)
## 7148 Pinanfarina 2006 Vino Rosso Red (Napa Valley)
## 7149 Longoria 2008 Clover Creek Vineyard Tempranillo (Santa Ynez Valley)
## 7150 Château Musar 2004 Cuvée Rouge Red (Bekaa Valley)
## 7151 Geyser Peak 2007 Sauvignon Blanc (California)
## 7152 Silverado 2008 Chardonnay (Napa County)
## 7153 Anakena 2010 Indo Sauvignon Blanc (San Antonio)
## 7154 Tosti NV Torlasco (Moscato d'Asti)
## 7155 Red Guitar 2006 Old Vine Garnacha Rosé (Navarra)
## 7156 Peter Weber 2007 Gewürztraminer (Alsace)
## 7157 Gruppo Casaleone 2001 Rosa del Marchese (Barbera d'Asti)
## 7158 Michele Chiarlo 2005 Le Orme (Barbera d'Asti)
## 7159 Tenimenti Ca' Bianca 2003 Barolo
## 7160 Tosti NV Prosecco (Italy)
## 7161 Ca'Romè 2003 Vigna Cerretta (Barolo)
## 7162 Il Falchetto 2004 Lurëi (Barbera d'Asti Superiore)
## 7163 Fujishin 2009 Bitner Vineyard Viognier
## 7164 Domaine Terre de Mistral 2013 Rosalie Rosé (Côtes de Provence Sainte-Victoire)
## 7165 Durigutti 2011 Reserva Cabernet Franc (Mendoza)
## 7166 Fattoria La Rivolta 2012 Fiano (Sannio)
## 7167 Feudi di San Gregorio 2012 Cutizzi (Greco di Tufo)
## 7168 Fire Road 2013 Sauvignon Blanc (Marlborough)
## 7169 Galil Mountain 2010 Alon Red (Upper Galilee)
## 7170 Golan Heights Winery 2012 Gilgal White Riesling (Galilee)
## 7171 Montespina 2013 Verdejo (Rueda)
## 7172 Novy 2011 Garys' Vineyard Syrah (Santa Lucia Highlands)
## 7173 One Woman 2010 Estate Reserve Merlot (North Fork of Long Island)
## 7174 Planeta 2012 Cometa Fiano (Sicilia)
## 7175 Raymond 2009 District Collection Cabernet Sauvignon (Oakville)
## 7176 Sheldrake Point 2012 Dry Riesling (Finger Lakes)
## 7177 Simonsig 2010 Tiara Red (Stellenbosch)
## 7178 Simonsig 2012 Chenin Avec Chêne Chenin Blanc (Stellenbosch)
## 7179 Vilafonté 2010 Series M Red (Paarl)
## 7180 Vinyes del Terrer 2010 Terrer d'Aubert Red (Tarragona)
## 7181 Château Maupague 2013 Rosé (Côtes de Provence Sainte-Victoire)
## 7182 Château Réal Martin 2013 Perle de Rosé (Côtes de Provence)
## 7183 Corley Reserve 2012 Estate Grown Chardonnay (Oak Knoll District)
## 7184 Cult X 2011 Pinot Noir (Russian River Valley)
## 7185 Domaine Albert Mann 2010 Brut Sparkling (Crémant d'Alsace)
## 7186 Doyenne 2011 Métier Red (Red Mountain)
## 7187 Doyenne 2011 Signature Syrah (Red Mountain)
## 7188 Dr. Konstantin Frank 2013 Dry Rosé Pinot Noir (Finger Lakes)
## 7189 Emblem 2011 Cabernet Sauvignon (Napa Valley)
## 7190 Ferré I Catasús 2008 Terra de Fic 2 Red (Priorat)
## 7191 Gloria Ferrer 2003 Carneros Cuvée Sparkling (Carneros)
## 7192 Greywacke 2013 Sauvignon Blanc (Marlborough)
## 7193 Novelty Hill 2011 Merlot (Columbia Valley (WA))
## 7194 Chehalem 2016 INOX Unoaked Chardonnay (Willamette Valley)
## 7195 Cloudy Bay 2014 Pinot Noir (Marlborough)
## 7196 Cockburn's 2015 Bicentenary Vintage (Port)
## 7197 Daniel Chotard 2015 Sancerre
## 7198 DFJ Vinhos 2014 Grand'Arte Alicante Bouschet (Lisboa)
## 7199 Domaine Girard 2016 Philippe Girard Cuvée Silex (Sancerre)
## 7200 Domaine Joël Delaunay 2015 La Voûte Sauvignon Blanc
## 7201 Domaine Matthias et Emile Roblin 2015 Origine (Sancerre)
## 7202 Duck Pond 2016 Hylo Vineyard Rosé of Pinot Noir (Willamette Valley)
## 7203 Fairsing 2015 Dardis Pinot Noir
## 7204 Finca Agostino 2013 De la Cava Red (Mendoza)
## 7205 Fiuza 2016 Babu Reserva Red (Tejo)
## 7206 Fritz Haag 2015 Brauneberger Kabinett Riesling (Mosel)
## 7207 Fullerton 2015 Croft Vineyard Pinot Noir (Willamette Valley)
## 7208 Fullerton 2015 Fir Crest Vineyard Pinot Noir
## 7209 Gadais Père et Fils 2016 Sur Lie (Muscadet Sèvre et Maine)
## 7210 Gérard Bertrand 2014 Kosmos Red (Vin de France)
## 7211 Graziano 2013 Reserve Zinfandel (Mendocino County)
## 7212 Monte da Ravasqueira 2015 Reserva Branco White (Alentejano)
## 7213 Morgante 2013 Don Antonio Nero d'Avola (Sicilia)
## 7214 Olek Bondonio 2014 Starderi (Barbaresco)
## 7215 Pertinace 2014 Marcarini (Barbaresco)
## 7216 Quinta do Crasto 2015 Vintage (Port)
## 7217 Robert Renzoni 2015 Barile Chardonnay (Temecula Valley)
## 7218 Roco 2015 Marsh Estate Vineyard Pinot Noir
## 7219 Salvano 2014 Barbaresco
## 7220 Sidecar 2015 G-Force Red (Oregon)
## 7221 Union de Vignerons de l'Île de Beauté 2016 Domaine Petroni Vermentino (Corse)
## 7222 King Estate 2014 Hyland Vineyard Pinot Noir (McMinnville)
## 7223 Kokomo 2015 Grenache (Dry Creek Valley)
## 7224 Monte del Frá 2010 Tenuta Lena di Mezzo (Valpolicella Classico Superiore)
## 7225 Montresor 2010 Capitel della Crosara (Valpolicella Ripasso)
## 7226 Nice 2008 Cabernet Sauvignon (Napa Valley)
## 7227 Niner 2009 Twisted Spur Red (Paso Robles)
## 7228 Olabisi 2010 Chappell Vineyard Chardonnay (Napa Valley)
## 7229 Patz & Hall 2010 Hudson Vineyard Chardonnay (Carneros)
## 7230 Romain Bouchard 2010 Le Grand Bois (Chablis)
## 7231 Roza Ridge 2009 Cabernet Sauvignon (Rattlesnake Hills)
## 7232 Senda 66 2010 Tempranillo (La Mancha)
## 7233 Shaya 2011 Arindo Verdejo (Rueda)
## 7234 Terre di Leone 2010 Il Re Pazzo (Valpolicella Classico)
## 7235 Thelema 2010 Sutherland Chardonnay (Elgin)
## 7236 Volteo 2010 Tempranillo (Vino de la Tierra de Castilla)
## 7237 Keuka Spring 2010 Cabernet Franc (Finger Lakes)
## 7238 L. Tramier & Fils 2010 Château Mi-Pont (Mercurey)
## 7239 Lamoreaux Landing 2011 Estate Bottled Gewürztraminer (Finger Lakes)
## 7240 Buitenverwachting 2011 Beyond Sauvignon Blanc (Coastal Region)
## 7241 Ca' Rugate 2009 Valpolicella Superiore Ripasso
## 7242 Graham Beck 2007 Brut Blanc de Blancs Sparkling (Robertson)
## 7243 Denis Dutron 2010 Mâcon-Fuissé
## 7244 Domaine Bernard Millot 2010 Bourgogne
## 7245 Domaine Jean-Paul et Benoît Droin 2010 Chablis
## 7246 Folie à Deux 2009 Cabernet Sauvignon (Alexander Valley)
## 7247 Henri de Villamont 2009 Prestige (Bourgogne)
## 7248 Maculan 2009 Brentino Red (Veneto)
## 7249 Peza do Rei 2009 Mencía (Ribeira Sacra)
## 7250 Pictor 2009 12 Meses (Toro)
## 7251 Nuiton-Beaunoy 2010 Les Dames Huguettes (Hautes Côtes de Nuits)
## 7252 Rooster Hill 2010 Estate Cabernet Franc (Finger Lakes)
## 7253 Saddleback Cellars 2010 Chardonnay (Napa Valley)
## 7254 Epiphany 2012 Colson Canyon Vineyard Syrah (Santa Barbara County)
## 7255 Flora Springs 2013 Merlot (Napa Valley)
## 7256 Garcia Schwaderer 2012 Bravado Red (Itata Valley)
## 7257 Gérard Bertrand 2014 L'Hospitalet Grand Vin White (La Clape)
## 7258 Lone Birch 2013 Syrah (Yakima Valley)
## 7259 Market Vineyards 2011 Arbitrage Cabernet Sauvignon (Columbia Valley (WA))
## 7260 Poiema 2012 Pinot Noir (Santa Lucia Highlands)
## 7261 Sauska 2011 Cuvée 7 Red (Villány)
## 7262 Sauska 2012 Cuvée 13 Red (Villány)
## 7263 Arboleda 2013 Carmenère (Aconcagua Valley)
## 7264 Chateau Ste. Michelle 2014 Riesling (Columbia Valley (WA))
## 7265 College Cellars 2013 Cockburn Ranch Vineyard Syrah (Walla Walla Valley (WA))
## 7266 Columbia Crest 2014 Reserve Estate Unoaked Chardonnay (Columbia Valley (WA))
## 7267 Davino 2010 Purpura Valahica Feteasca Neagra (Dealu Mare)
## 7268 Naggiar 2011 Estate Petite Sirah (Sierra Foothills)
## 7269 Poseidon 2013 Estate Pinot Noir (Los Carneros)
## 7270 Ruhlmann 2014 Cuvée Jean-Charles Riesling (Alsace)
## 7271 Santa Alba 2012 Grand Reserve Cabernet Sauvignon (Curicó Valley)
## 7272 Seven Angels 2012 Kindred Red (Paso Robles)
## 7273 Stapleton & Springer 2007 Roucí Red (Moravia)
## 7274 Waters Crest 2010 Campania Rosso Red (North Fork of Long Island)
## 7275 Volatus 2014 Inside Passage Reserve White (Paso Robles)
## 7276 Montevina 2013 Skyland Ridge Zinfandel (Amador County)
## 7277 Philo Ridge 2013 Ferrington Vineyard Gewürztraminer (Anderson Valley)
## 7278 Sauska 2012 Estate Furmint (Tokaj)
## 7279 Sipp Mack 2013 Vieilles Vignes Riesling (Alsace)
## 7280 Standing Sun 2012 G-S-M (Santa Barbara County)
## 7281 Tenuta San Leonardo 2007 San Leonardo Red (Vigneti delle Dolomiti)
## 7282 Tenute Lunelli 2012 Maso Montalto Pinot Nero (Trentino)
## 7283 Anthony Nappa 2013 Piccolo Pio Petit Verdot (North Fork of Long Island)
## 7284 Seven Hills 2014 McClellan Estate Cabernet Sauvignon (Walla Walla Valley (WA))
## 7285 Shannon 2014 Home Ranch Reserve Malbec (Lake County)
## 7286 Sleeping Giant 2014 Las Amigas Partners Vineyard Chardonnay (Carneros)
## 7287 Spoto 2014 Cuvée Susan Diane Oakville Station Red (Napa Valley)
## 7288 Starmont 2014 Merlot (Carneros)
## 7289 Terra d'Oro 2015 SHR Field Blend Zinfandel (Amador County)
## 7290 Uptick Vineyards 2011 Estate Syrah (Russian River Valley)
## 7291 Vigne Guadagno 2013 Contrada Sant'Aniello (Fiano di Avellino)
## 7292 Villa Wolf 2015 Dry Riesling (Pfalz)
## 7293 Wittmann 2015 100 Hills Dry Riesling (Rheinhessen)
## 7294 Kuentz-Bas 2015 Tradition Edelzwicker (Alsace)
## 7295 Lone Madrone 2014 Oveja Negra Red (Paso Robles Willow Creek District)
## 7296 Mark Ryan 2014 Water Witch Red (Red Mountain)
## 7297 Materra Cunat Family Vineyards 2016 Sauvignon Blanc (Oak Knoll District)
## 7298 Angove 2014 Family Crest Grenache-Shiraz-Mourvèdre Red (McLaren Vale)
## 7299 A.P. Vin 2015 Kanzler Vineyard Pinot Noir (Sonoma Coast)
## 7300 Baily 2016 Montage Sauvignon Blanc-Semillon (Temecula Valley)
## 7301 Beckmen 2014 Clone #1 Purisima Mountain Vineyard Syrah (Ballard Canyon)
## 7302 Castelvecchio 2015 Pinot Grigio
## 7303 Cave de Ribeauvillé 2016 Collection Riesling (Alsace)
## 7304 Château de Chaintres 2015 Les Sables (Saumur-Champigny)
## 7305 Chateau Ste. Michelle 2015 Canoe Ridge Estate Chardonnay (Horse Heaven Hills)
## 7306 Chateau Ste. Michelle 2015 Cold Creek Vineyard Chardonnay (Columbia Valley (WA))
## 7307 Château Tour de Mirambeau 2016 Réserve (Bordeaux Blanc)
## 7308 Château Vircoulon 2016 Bordeaux Blanc
## 7309 Child's Play 2016 Rosé of Pinot Noir (Willamette Valley)
## 7310 Domaine Charles Frey 2016 Collines de Granit Gewurztraminer (Alsace)
## 7311 Domaine du Petit Clocher NV Brut (Crémant de Loire)
## 7312 Domaine Gérard Neumeyer 2016 Les Hospices Riesling (Alsace)
## 7313 Domaine Pfister 2015 Tradition Gewurztraminer (Alsace)
## 7314 Martin & Weyrich 2005 Flamenco Rojo Tempranillo (Paso Robles)
## 7315 Montevina 2006 Pinot Grigio (Amador County)
## 7316 Esser Cellars 2006 Pinot Noir (California)
## 7317 Quinta do Casal Branco 2006 Terra de Lobos White (Ribatejano)
## 7318 Señorío de Sarria 2005 Vino Dulce Natural Moscatel (Navarra)
## 7319 Lucas Vineyards 2005 Chardonnay (Finger Lakes)
## 7320 Cinnabar 2004 Cabernet Franc (Lodi)
## 7321 Standing Stone 2005 Reserve Chardonnay (Finger Lakes)
## 7322 Tenuta Sette Ponti 2005 Vigna di Pallino Sangiovese (Toscana)
## 7323 José Maria da Fonseca NV Lancers Rosé Red (Table wine)
## 7324 Kadesh Barnea 2004 Estate Bottled Reserve Kosher Merlot (Negev Hills)
## 7325 Fortant 2005 Kosher Chardonnay (Vin de Pays d'Oc)
## 7326 Barkan 2005 16 Months Barrel Aged Kosher Tempranillo (Samson)
## 7327 Valsanzo 2005 Vall Sanzo (Ribera del Duero)
## 7328 Wellington 2004 Mohrhardt Ridge Cabernet Sauvignon (Sonoma County)
## 7329 Brotherhood 2005 Pinot Noir (New York)
## 7330 Damiani 2006 Chardonnay (Finger Lakes)
## 7331 La Capilla 2005 Melange Red (Paso Robles)
## 7332 Esser Cellars 2005 Cabernet Sauvignon (California)
## 7333 Eleusis 2006 Albariño (Rías Baixas)
## 7334 Esser Cellars 2005 Zinfandel (California)
## 7335 Vina Robles 2004 Cabernet Sauvignon (Paso Robles)
## 7336 Avignonesi 1995 Occhio di Pernice (Vin Santo di Montepulciano)
## 7337 Talley 2005 Rosemary's Vineyard Pinot Noir (Arroyo Grande Valley)
## 7338 Occasio 2010 Thatcher Bay Vineyard Merlot (Livermore Valley)
## 7339 Peachy Canyon 2011 Petite Sirah (Paso Robles)
## 7340 Langtry 2010 Tephra Ridge Vineyard Cabernet Sauvignon (Lake County)
## 7341 Leth 2012 Steinagrund Grüner Veltliner (Wagram-Donauland)
## 7342 Maior de Mendoza 2012 Argos Albariño (Rías Baixas)
## 7343 Market Vineyards 2010 Merval Malbec (Columbia Valley (WA))
## 7344 Mastrojanni 2009 Brunello di Montalcino
## 7345 Pacific Rim 2012 Riesling (Columbia Valley (WA))
## 7346 Palazzo 2009 Brunello di Montalcino
## 7347 Paso a Paso 2012 Estate Bottled Tempranillo (La Mancha)
## 7348 Patterson 2012 Forbidden White (Columbia Valley (WA))
## 7349 Piccini 2009 Villa al Cortile (Brunello di Montalcino)
## 7350 Pietroso 2009 Brunello di Montalcino
## 7351 Poseidon 2012 Estate Grown Pinot Noir (Carneros)
## 7352 Radius 2012 Riesling (Washington)
## 7353 San Giacomo 2009 Brunello di Montalcino
## 7354 Syncline 2012 Underwood Mountain Vineyard Grüner Veltliner (Columbia Gorge (WA))
## 7355 Trapiche 2012 Oak Cask Malbec (Mendoza)
## 7356 Cameron Hughes 2012 Lot 426 Red Hen Ranch Meritage (Oak Knoll District)
## 7357 Château Bibian 2011 Haut-Médoc
## 7358 Château Cap Léon Veyrin 2011 Listrac-Médoc
## 7359 Château de Braude 2011 Haut-Médoc
## 7360 Helix by Reininger 2010 Syrah (Columbia Valley (WA))
## 7361 Heron Hill 2010 Bunch Select Late Harvest Riesling (Finger Lakes)
## 7362 Il Poggiolo 2009 Annata (Brunello di Montalcino)
## 7363 La Rasina 2009 Brunello di Montalcino
## 7364 Zarate 2012 Albariño (Rías Baixas)
## 7365 Del Dotto 2012 Cinghiale Vineyard Pinot Noir Rosé (Fort Ross-Seaview)
## 7366 Eleven 2012 La Donella Sauvignon Blanc (Washington)
## 7367 Elsom Cellars 2009 Autonomous Red (Columbia Valley (WA))
## 7368 Fayolle Fils & Fille 2009 Les Dionnières White (Hermitage)
## 7369 Finca Albret 2007 La Viña de Mi Madre Reserva Red (Navarra)
## 7370 Insania 2010 White (Red Mountain)
## 7371 Jean Daneel 2010 Signature Chenin Blanc (Western Cape)
## 7372 Kendall-Jackson 2009 Grand Reserve Merlot (Sonoma County)
## 7373 La Rochelle 2010 Rosella's Vineyard Chardonnay (Santa Lucia Highlands)
## 7374 Kendall-Jackson 2010 Grand Reserve Chardonnay (Santa Barbara-Monterey)
## 7375 Kirchmayr 1992 Solist Riesling (Kamptal)
## 7376 Lynmar 2010 La Sereinité Chardonnay (Russian River Valley)
## 7377 Maggy Hawk 2009 Unforgettable Pinot Noir (Anderson Valley)
## 7378 Pride Mountain 2009 Cabernet Sauvignon (Napa-Sonoma)
## 7379 Rabl 2010 Schenkenbichl Reserve Riesling (Kamptal)
## 7380 Ken Forrester 2009 T Noble Late Harvest Chenin Blanc (Stellenbosch)
## 7381 Maurodos 2007 San Román (Toro)
## 7382 AntoLin Cellars 2010 Glacier Estate Vineyard Riesling (Yakima Valley)
## 7383 Babcock 2010 Slice of Heaven Pinot Noir (Sta. Rita Hills)
## 7384 Bernardus 2009 Marinus Red Wine Red (Carmel Valley)
## 7385 Black Kite 2009 Angel Hawk Pinot Noir (Anderson Valley)
## 7386 Domaines Ott 2011 Château de Romassan Rosé (Bandol)
## 7387 Elyse 2010 Barrel Select Petite Sirah (Napa Valley)
## 7388 Clarendon Hills 2008 Brookman Syrah (Clarendon)
## 7389 Domaine du Grand Montmirail 2009 Cuvée Vieilles Vignes (Gigondas)
## 7390 Walla Walla Vintners 2009 Cabernet Franc (Columbia Valley (WA))
## 7391 Agricola Punica 2008 Barrua Red (Isola dei Nuraghi)
## 7392 Cellers Sant Rafel 2005 Solpost Red (Montsant)
## 7393 Jarvis 2007 Estate Grown Cave Fermented Cabernet Franc (Napa Valley)
## 7394 Lynmar 2010 Freestone Pinot Noir (Russian River Valley)
## 7395 Lynmar 2011 Rosé of Pinot Noir (Russian River Valley)
## 7396 Cantina Terlano 2010 Quarz Sauvignon (Alto Adige)
## 7397 Sobon Estate 2006 Rezerve Zinfandel (Amador County)
## 7398 Sogevinus 2006 Curva Tinto Red (Douro)
## 7399 Testarossa 2007 Castello Chardonnay (Central Coast)
## 7400 Valdez 2005 Rockpile Road Vineyard Zinfandel (Rockpile)
## 7401 XYZin 2006 Zinfandel (Russian River Valley)
## 7402 Elements of Sonoma 2004 E3 Red (Knights Valley)
## 7403 Forchini 2006 Proprietor's Reserve Old Vine Zinfandel (Dry Creek Valley)
## 7404 Gallo Family Vineyards 2007 Chardonnay (Sonoma County)
## 7405 Gary Farrell 2004 Encounter Red (Sonoma County)
## 7406 Marc Kreydenweiss 2005 Au Dessus de la Loi Andlau Riesling (Alsace)
## 7407 Abacela 2006 Umpqua Cuvée Tempranillo (Southern Oregon)
## 7408 Abacela NV Vintner's Blend #9 Red Table Wine Red (Southern Oregon)
## 7409 Blandy's NV Duke of Clarence Rich Madeira (Madeira)
## 7410 Buena Vista 2005 Merlot (Carneros)
## 7411 Ca' del Solo 2006 Dolcetto (Monterey County)
## 7412 Cloudline 2007 Pinot Gris (Oregon)
## 7413 Dão Sul 2006 Cortello Touriga Nacional (Estremadura)
## 7414 Francis Ford Coppola 2006 Director's Cut Cabernet Sauvignon (Alexander Valley)
## 7415 Hazlitt 1852 Vineyards 2007 Sauvignon Blanc (Finger Lakes)
## 7416 Macari 2007 No 1 Sauvignon Blanc (North Fork of Long Island)
## 7417 Marqués de Cáceres 2005 Crianza (Rioja)
## 7418 Pierre Sparr 2006 Reserve Gewurztraminer (Alsace)
## 7419 Trentadue 2005 Geyserville Estate Cabernet Sauvignon (Alexander Valley)
## 7420 Scala Dei 2006 Negre Red (Priorat)
## 7421 Koenig Vineyards 2006 Estate Vineyard Merlot
## 7422 Meadowcroft 2007 Viognier (Sonoma County)
## 7423 Domaines Schlumberger 2006 Les Princes Abbés Riesling (Alsace)
## 7424 Plaisir De Merle 1998 Merlot (Paarl)
## 7425 Elk Cove 2001 Riesling (Willamette Valley)
## 7426 Firestone 2002 Riesling (Central Coast)
## 7427 Havana Hills 1999 Shiraz (Western Cape)
## 7428 J. Lohr 2002 Bay Mist Riesling (Monterey)
## 7429 Thelema 1999 Merlot (Stellenbosch)
## 7430 Mas Nicolas 2000 Cape Shiraz-Cabernet Sauvignon (Stellenbosch)
## 7431 Mendocino Gold 2000 Cabernet Sauvignon (Mendocino County)
## 7432 Hardys 2001 Tintara Chardonnay (Adelaide Hills)
## 7433 Sokol Blosser NV Evolution 6th Edition White (Oregon)
## 7434 Abacela 2000 Cabernet Franc (Oregon)
## 7435 New World 2002 Syrah (Western Cape)
## 7436 Niel Joubert 2000 African Tradition Collection - Elephant Shiraz (Paarl)
## 7437 Perry Creek 2001 Chardonnay (El Dorado County)
## 7438 Glenora 2002 Dry Riesling (Finger Lakes)
## 7439 Imagery 2000 Artist Collection Petite Sirah (Paso Robles)
## 7440 Torres 2002 Viña Sol White (Penedès)
## 7441 Maddalena 2000 Merlot (Central Coast)
## 7442 Ken Forrester 2001 Merlot (Stellenbosch)
## 7443 Hugel 2000 Riesling (Alsace)
## 7444 Imagery 1999 Sunny Slope Vineyard Merlot (Sonoma Valley)
## 7445 Rosenblum 2001 Gallagher Ranch Black Muscat (California)
## 7446 Omaka Springs 2002 Riesling (Marlborough)
## 7447 Redwood 2000 Merlot (California)
## 7448 Yering Station 2000 Chardonnay (Yarra Valley)
## 7449 Bodegas Concavins 2000 Proyecto 4 Red (Conca de Barberà)
## 7450 Viña Maipo 2015 Gran Devoción Sauvignon Blanc (Casablanca Valley)
## 7451 Wild Pig 2016 Viognier (Pays d'Oc)
## 7452 Barton & Guestier 2016 B&G Réserve Grenache Noir (Pays d'Oc)
## 7453 Cantina del Nebbiolo 2013 Meruzzano (Barbaresco)
## 7454 CarlindePaolo 2016 Cursus Vitae (Barbera d'Asti)
## 7455 Cascina Radice 2015 Roccanera (Barbera d'Asti Superiore)
## 7456 Castello di Neive 2014 Barbaresco
## 7457 Clos Pons 2015 Jan Petit Red (Costers del Segre)
## 7458 Coleccion Privada 2015 Gran Reserva Pinot Noir (Maule Valley)
## 7459 Cuyen 2016 Merlot (Central Valley)
## 7460 Dante Rivetti 2012 Bricco di Neive Riserva (Barbaresco)
## 7461 Domaine Gueguen 2016 Domaine Marie B. (Bourgogne)
## 7462 Domaine Pascal et Mireille Renaud 2016 Mâcon-Villages
## 7463 Hosmer 2016 Estate Winery Pinot Gris (Cayuga Lake)
## 7464 J. Bouchon 2016 Canto Sur Red (Maule Valley)
## 7465 Albert Bichot 2016 Mâcon-Villages
## 7466 TerraNoble 2013 Reserva Terroir La Higuera Carmenère (Maule Valley)
## 7467 Kestrel 2013 Falcon Series Tribute Red (Yakima Valley)
## 7468 Kestrel 2014 Falcon Series Frizzante White (Yakima Valley)
## 7469 Kestrel 2016 Falcon Series Estate Chardonnay (Yakima Valley)
## 7470 La Spinetta 2013 Vigneto Bordini (Barbaresco)
## 7471 Le Grand Noir 2016 Rosé (Pays d'Oc)
## 7472 Loron et Fils 2016 Château de Mirande (Mâcon-Villages)
## 7473 Maryhill 2014 Les Collines Vineyard Cabernet Sauvignon (Walla Walla Valley (WA))
## 7474 Maryhill 2015 Winemaker's Red (Columbia Valley (WA))
## 7475 Muddy Boot 2016 Rosé of Pinot Noir (California)
## 7476 Napa Cellars 2016 Sauvignon Blanc (Napa Valley)
## 7477 Pietro Rinaldi 2013 Santo Cristoforo (Barbaresco)
## 7478 Punset 2012 Basarin Riserva (Barbaresco)
## 7479 Cascina Radice 2015 S. Martino (Barbera d'Asti Superiore)
## 7480 French Hill 2005 Premium Select Pinotage (Sierra Foothills)
## 7481 Grgich Hills 2004 Merlot (Napa Valley)
## 7482 Bridgeview 2006 Viognier (Southern Oregon)
## 7483 Castoro Cellars 2006 Roussanne (Paso Robles)
## 7484 Vin Nostro 2004 Cabernet Sauvignon (Alexander Valley)
## 7485 Kalbarri 2006 Bin Select 513 Cabernet Sauvignon (South Eastern Australia)
## 7486 Harveys NV Fino Light Sherry (Jerez)
## 7487 Septima 2006 Tempranillo (Mendoza)
## 7488 Erath 2006 Pinot Noir (Oregon)
## 7489 Bridgeview 2006 Gewürztraminer (Southern Oregon)
## 7490 Snake River 2003 Arena Valley Vineyard Cabernet Sauvignon (Idaho)
## 7491 Vivác Winery 2005 V. Single Vineyard Nebbiolo (New Mexico)
## 7492 Bridgeview 2006 Blue Moon Pinot Gris (Oregon)
## 7493 Cartlidge & Browne 2005 Merlot (California)
## 7494 Celler La Bollidora 2005 Plan B Red (Terra Alta)
## 7495 Chaddsford 2005 Merlot (Pennsylvania)
## 7496 Pacific Oasis 2006 Sauvignon Blanc (Santa Barbara County)
## 7497 Shannon Ridge 2006 Grenache (Lake County)
## 7498 Norman 2003 Conquest Cabernet Sauvignon (Paso Robles)
## 7499 Funky Llama 2007 Sauvignon Blanc (Mendoza)
## 7500 Michel Torino 2006 Coleccion Chardonnay (Calchaquí Valley)
## 7501 Bridgeview 2004 Black Beauty Syrah (Southern Oregon)
## 7502 Melville 2014 Clone 76 Inox Chardonnay (Sta. Rita Hills)
## 7503 Panthea 2012 Estate Pinot Noir (Anderson Valley)
## 7504 Kitá 2013 Camp 4 Vineyard Grenache Blanc (Santa Ynez Valley)
## 7505 LaStella 2013 Moscato d'Osoyoos Moscato (Okanagan Valley)
## 7506 Lorenzi Estate 2011 The Phantom Red (Temecula)
## 7507 Loring Wine Company 2013 Keefer Ranch Vineyard Pinot Noir (Russian River Valley)
## 7508 Lucien Lardy 2014 Côte du Py (Morgon)
## 7509 Andeluna 2012 Pasionado Malbec (Tupungato)
## 7510 Barone Pizzini 2011 Naturae Sparkling (Franciacorta)
## 7511 Billecart-Salmon NV Grand Cru Blanc de Blancs Brut Chardonnay (Champagne)
## 7512 Bodega Catena Zapata 2011 Nicolas Catena Zapata Red (Mendoza)
## 7513 Ca' dei Zago 2013 Dosaggio Zero (Valdobbiadene Prosecco Superiore)
## 7514 Cave Spring 2012 CSV Estate Bottled Riesling (Beamsville Bench)
## 7515 Cedarville Vineyard 2012 Naylor Vineyard Petite Sirah (El Dorado)
## 7516 D.R. Stephens 2012 Walther River Block Cabernet Sauvignon (Rutherford)
## 7517 Ehlers Estate 2012 Estate Merlot (St. Helena)
## 7518 Giant Steps 2014 Sexton Vineyard Pinot Noir (Yarra Valley)
## 7519 Henriet-Bazin 2009 Premier Cru Brut Nature Millésime (Champagne)
## 7520 Jean Laurent NV Blanc de Blancs Réserve Brut Chardonnay (Champagne)
## 7521 Louis Roederer NV Brut Premier (Champagne)
## 7522 Quinta das Carvalhas 2012 Reserva Red (Douro)
## 7523 A.R. Lenoble 2009 Premier Cru Blanc de Noirs Bisseuil Brut Pinot Noir (Champagne)
## 7524 Bergström 2013 Gregory Ranch Pinot Noir
## 7525 Corte Moschina 2009 Lessini Durello
## 7526 McEvoy Ranch 2012 The Evening Standard Pinot Noir (Marin County)
## 7527 Meadowcroft 2014 Louvau Vineyard Viognier (Dry Creek Valley)
## 7528 Melville 2013 Verna's Vineyard Chardonnay (Santa Barbara County)
## 7529 Mercy 2012 Cedar Lane Vineyard Pinot Noir (Arroyo Seco)
## 7530 Merryvale 2012 Cabernet Sauvignon (St. Helena)
## 7531 Metz Road 2012 Riverview Vineyard Estate Grown Chardonnay (Monterey)
## 7532 Starborough 2009 Sauvignon Blanc (Marlborough)
## 7533 Wellington 2009 Sauvignon Blanc (Sonoma Valley)
## 7534 Kokomo 2008 Gopher Hill Block Peter's Vineyard Pinot Noir (Sonoma Coast)
## 7535 Vignamaggio 2008 Il Morino Sangiovese (Toscana)
## 7536 Manzoni 2008 Lucia Highland Vineyard Chardonnay (Santa Lucia Highlands)
## 7537 Piccini 2006 Riserva (Chianti Classico)
## 7538 Simi 2009 Chardonnay (Sonoma County)
## 7539 St. Supéry 2006 Elu Red (Napa Valley)
## 7540 Tenuta di Trecciano 2006 Terra Rossa Riserva (Chianti Colli Senesi)
## 7541 Textbook 2008 Fin de Journée Cabernet Sauvignon (Napa Valley)
## 7542 Banfi 2007 Riserva (Chianti Classico)
## 7543 Bellini 2005 Riserva (Chianti Rufina)
## 7544 Blue Rock 2008 Baby Blue Red (Alexander Valley)
## 7545 Juan Gil 2007 Monastrell (Jumilla)
## 7546 Juan Gil 2008 Monastrell (Jumilla)
## 7547 Montes 2009 Malbec (Colchagua Valley)
## 7548 Heron Hill 2008 Ingle Vineyard Riesling (Finger Lakes)
## 7549 Sterling 2007 SVR Reserve Red (Napa Valley)
## 7550 Aia Vecchia 2008 Lagone Red (Toscana)
## 7551 Atmosphere 2008 Bismark Mountain Vineyard Cabernet Sauvignon (Sonoma Valley)
## 7552 Bacalhôa Wines of Portugal 2009 Catarina White (Península de Setúbal)
## 7553 Bodegas Mähler-Besse 2005 Taja Excelecia Red (Jumilla)
## 7554 Calera 2007 Jensen Vineyard Pinot Noir (Mt. Harlan)
## 7555 Cipriana 2007 San Martino (Bolgheri Superiore)
## 7556 Eucaliptus 2008 Clarice (Bolgheri)
## 7557 Wines & Winemakers 2009 Touquinheiras White (Vinho Verde)
## 7558 Ànima Negra 2007 ÀN/2 Red (Vi de la Terra Illes Balears)
## 7559 Borges NV Roncão 20-Year-Old Tawny (Port)
## 7560 Chamisal Vineyards 2008 Estate Bottled Chardonnay (Edna Valley)
## 7561 Château de Minière 2008 Vieilles Vignes Cabernet Franc (Bourgueil)
## 7562 Château Fonguillon 2005 Montagne-Saint-Émilion
## 7563 Château La Rame 2005 Saint-Croix-du-Mont
## 7564 King Estate 2008 Domaine Pinot Noir (Oregon)
## 7565 Lynmar 2008 Quail Hill Vineyard Chardonnay (Russian River Valley)
## 7566 Pascal & Nicolas Reverdy 2008 Les Coûtes (Sancerre)
## 7567 Bernardus 2007 Marinus Red (Carmel Valley)
## 7568 Byzantium 2005 Rosso di Valachia Red (Dealu Mare)
## 7569 Chrysorroyiatissa 2008 Ayios Andronicos White (Cyprus)
## 7570 Cramele Recas 2008 Chardonnay (Recas)
## 7571 Frank Cornelissen 2008 Susucaru 2 Rosato Rosé (Etna)
## 7572 Gnarly Head 2007 Old Vine Zinfandel (Lodi)
## 7573 Yali 2009 Wetland Winemaker's Selection Sauvignon Blanc (Rapel Valley)
## 7574 Yvon Mau 2007 Premius Bordeaux Sauvignon (Bordeaux Blanc)
## 7575 One Hope 2006 Merlot (California)
## 7576 Paradise Ridge 2007 Nagasawa Vineyard Chardonnay (Russian River Valley)
## 7577 Pasion de Tango 2007 Reserve Malbec (Mendoza)
## 7578 Simone 2008 Special Reserve Sauvignon Blanc (Maule Valley)
## 7579 Bellenda 2005 Col di Luna Cabernet Sauvignon (Piave)
## 7580 Château Lamothe-Vincent 2008 Sauvignon (Bordeaux Blanc)
## 7581 Montresor 2003 Capitel della Crosara (Amarone della Valpolicella Classico)
## 7582 Domaine Costa Lazaridi 2008 Amethystos Sauvignon Blanc (Drama)
## 7583 Dutch Bill Creek 2007 Heintz Ranch Chardonnay (Sonoma Coast)
## 7584 Heavenly Retreat 2007 Riesling (Recas)
## 7585 Alpataco 2007 Reserve Merlot (Neuquén)
## 7586 Aresti 2008 Estate Selection Carmenère (Curicó Valley)
## 7587 Black Box 2008 Chardonnay (Monterey County)
## 7588 Château Lamothe-Vincent 2007 Intense (Bordeaux)
## 7589 Pommery NV POP Extra Dry (Champagne)
## 7590 Protopapas 2008 Traminer (Pageon)
## 7591 Rancho Sisquoc 2006 Flood Family Vineyards Cabernet Sauvignon (Santa Barbara County)
## 7592 Domaines Barons de Rothschild (Lafite) 2001 Los Vascos Cabernet Sauvignon (Colchagua Valley)
## 7593 San Giuseppe 2002 Pinot Grigio (Veneto)
## 7594 Zenaida Cellars 2000 Pinot Noir (Paso Robles)
## 7595 Morandé 2002 Sauvignon Blanc (Central Valley)
## 7596 Calama 2001 Cabernet Sauvignon (Central Valley)
## 7597 Casa Rivas 2001 Estate Bottled Carmenère (Maipo Valley)
## 7598 Cantina Terlano 2000 Classico White (Alto Adige)
## 7599 Santi 2001 Sortesele Pinot Grigio (Trentino)
## 7600 Pepperwood Grove 2001 Viognier (California)
## 7601 Piccini 2001 Chianti
## 7602 Viña Casas del Bosque 2002 Reserve Sauvignon Blanc (Casablanca Valley)
## 7603 La Palma 2002 Estate Bottled Chardonnay (Cachapoal Valley)
## 7604 Calama 2001 Merlot (Casablanca Valley)
## 7605 Guelbenzu 2002 Jardin Chardonnay (Colchagua Valley)
## 7606 San Pedro 2002 Gato Negro Cabernet Sauvignon (Central Valley)
## 7607 MacMurray Ranch 2001 Pinot Noir (Sonoma Coast)
## 7608 Quinta da Romeira 2001 Estate Bottled Arinto (Bucelas)
## 7609 L.A. Cetto 1999 Petite Sirah (Valle de Guadalupe)
## 7610 Bartenura 2000 Pinot Grigio (Veneto)
## 7611 Château Los Boldos 1999 CLB Reserve Chardonnay (Rapel Valley)
## 7612 Quinta da Aveleda NV Casal Garcia White (Vinho Verde)
## 7613 Vino de Eyzaguirre 2001 San Francisco de Mostazal Reserva Especial Syrah (Colchagua Valley)
## 7614 Collet NV Rosé Dry Collection Privée (Champagne)
## 7615 Domaine François Schmitt NV Rosé Sparkling (Crémant d'Alsace)
## 7616 Domaine Michel Fonne NV Sparkling (Crémant d'Alsace)
## 7617 Fetzer 2016 Echo Ridge Sauvignon Blanc (California)
## 7618 Freja 2016 Albariño (Chehalem Mountains)
## 7619 Gino Fasoli 2016 Tasi Brut (Prosecco)
## 7620 Miklus 2014 Malvasia (Collio)
## 7621 Muddy Boot 2016 Johas Vineyard Chardonnay (Clarksburg)
## 7622 Nga Waka 2015 Three Paddles Pinot Noir (Martinborough)
## 7623 North 42 Degrees 2016 Sweet Riesling (Lake Erie North Shore)
## 7624 Portalupi 2016 Las Brisas Vineyard Vermentino (Carneros)
## 7625 Schlumberger Wein- und Sektkellerei NV White Secco Méthode Traditionelle Sparkling (Niederösterreich)
## 7626 Shooting Star 2014 Cabernet Sauvignon (Lake County)
## 7627 Township 7 2014 Rock Pocket Vineyard Cabernet Franc (Okanagan Valley)
## 7628 Jean Laurent NV Brut Rosé Pinot Noir (Champagne)
## 7629 Krupp Brothers 2014 The Water Witch Stagecoach Vineyard Red (Napa Valley)
## 7630 La Tordera 2016 Saomì Brut (Prosecco Treviso)
## 7631 Lasseter 2013 Paysage Estate Grown Red (Sonoma Valley)
## 7632 Louis Chalvon NV Grande Réserve Brut (Champagne)
## 7633 Mailly Grand Cru NV Délice Demi-Sec (Champagne)
## 7634 Wilderotter 2014 Barbera (Shenandoah Valley (CA))
## 7635 Yamhill Valley 2014 Estate Pinot Noir (McMinnville)
## 7636 Apolloni 2016 L Cuvée Pinot Gris (Willamette Valley)
## 7637 Bellenda 2016 San Fermo Brut (Conegliano Valdobbiadene Prosecco Superiore)
## 7638 Borgoluce NV Brut (Valdobbiadene Prosecco Superiore)
## 7639 Humberto Canale 2015 Estate Cabernet Franc (Patagonia)
## 7640 Indaba 2016 Mosaic Red (Western Cape)
## 7641 Althéa 2016 Brut (Valdobbiadene Prosecco Superiore)
## 7642 Andreola 2016 Rive di Col San Martino Brut 26° Primo (Valdobbiadene Prosecco Superiore)
## 7643 Bellenda NV Cosmo E' Col Fondo (Conegliano Valdobbiadene Prosecco Superiore)
## 7644 eco.love 2009 Riesling (South Island)
## 7645 Fondo Antico 2010 I Versi Bianco White (Sicilia)
## 7646 Frank Family 2010 Chardonnay (Napa Valley)
## 7647 Henry Fessy 2011 Nouveau (Beaujolais)
## 7648 Tamber Bey 2009 Deux Chevaux Vineyard Cabernet Sauvignon (Yountville)
## 7649 Tenuta di Serramarrocco 2008 Baglio di Serramarrocco Nero d'Avola (Sicilia)
## 7650 Viña Bujanda 2010 Tinto (Rioja)
## 7651 Viticultori Associati Canicatti 2010 Aquilae Grillo (Sicilia)
## 7652 Zarate 2010 Albariño (Rías Baixas)
## 7653 Vignerons de Bel Air 2010 Automne Festif (Côte de Brouilly)
## 7654 Windsor Sonoma 2009 Cabernet Sauvignon (Alexander Valley)
## 7655 Y Rousseau 2009 Cavedale Vineyards Pépé Merlot (Sonoma Valley)
## 7656 Smasne Cellars 2010 Viognier (Columbia Valley (WA))
## 7657 Tasca d'Almerita 2009 Sallier de la Tour Grillo (Sicilia)
## 7658 Thirsty Owl Wine Company 2010 Pinot Gris (Finger Lakes)
## 7659 Château Tanunda 2010 Grand Barossa Riesling (Barossa)
## 7660 Cornellana 2011 Reserve Sauvignon Blanc (Cachapoal Valley)
## 7661 Corvo 2008 Red (Sicilia)
## 7662 Corvo 2010 Bianco White (Sicilia)
## 7663 Di Giovanna 2009 Nerello Mascalese (Sicilia)
## 7664 Domaine Marc Jambon 2009 Cuvée Fût de Chêne (Mâcon-Pierreclos)
## 7665 Duca di Salaparuta 2009 Calanìca Frappato-Syrah Red (Sicilia)
## 7666 Hangtime 2010 Force Canyon Vineyard Pinot Noir (Arroyo Seco)
## 7667 Hosmer NV Brut Rosé Pinot Noir (Cayuga Lake)
## 7668 Hosmer NV Sparkling Wine Sparkling (New York)
## 7669 J. Garcia Carrion 2010 Opera Prima Tempranillo (La Mancha)
## 7670 Knapp 2010 Sunrise Hill Vineyard Semi-Dry Gewürztraminer (Cayuga Lake)
## 7671 Markham 2010 Chardonnay (Napa Valley)
## 7672 Murganheira 2005 Bruto Sparkling (Vinho Espumante de Qualidade)
## 7673 Allure NV Moscato (California)
## 7674 Wrath 2013 Ex Anima Sauvignon Blanc (Monterey)
## 7675 Adams Bench 2010 the V Cabernet Sauvignon (Columbia Valley (WA))
## 7676 Animale 2011 Dolcetto (Columbia Valley (WA))
## 7677 Argyros 2013 Assyrtiko (Santorini)
## 7678 Castellroig 2009 Gran Reserva Brut Nature Sparkling (Cava)
## 7679 Testarossa 2012 Sierra Madre Vineyard Chardonnay (Santa Maria Valley)
## 7680 Thymiopoulos 2012 Young Vines Xinomavro (Naoussa)
## 7681 Va Piano 2013 Rosé of Cabernet Franc (Columbia Valley (WA))
## 7682 Jean-Claude Debeaune 2012 Pouilly-Fuissé
## 7683 Louis Latour 2011 Morgeot Premier Cru (Chassagne-Montrachet)
## 7684 Mano A Mano 2011 Tempranillo (Vino de la Tierra de Castilla)
## 7685 Ousterhout 2013 800 Vines Vineyard Rosé of Pinot Noir (Russian River Valley)
## 7686 Suvla 2011 Reserve Single Vineyard Bozokbag Cabernet Sauvignon (Thrace)
## 7687 Ceuso 2009 Red (Sicilia)
## 7688 Decoy 2012 Zinfandel (Sonoma County)
## 7689 Domaine Carneros 2011 La Terre Promise Pinot Noir (Carneros)
## 7690 Domaine La Soufrandise 2012 Vieilles Vignes (Pouilly-Fuissé)
## 7691 Finca La Mata 2011 Ribera del Duero
## 7692 Hauner 2012 Hierà Red (Salina)
## 7693 Mulderbosch 2007 Sauvignon Blanc (Western Cape)
## 7694 Amador Foothill Winery 2005 Estate Sangiovese (Shenandoah Valley (CA))
## 7695 Antonino Tringali-Casanuova 2004 Patrimonio (Bolgheri)
## 7696 Château Toumilon 2005 Graves
## 7697 Courtney Benham 2006 Sauvignon Blanc (Napa Valley)
## 7698 Eventide Cellar 2005 Cabernet Sauvignon (Wellington)
## 7699 Bonneau 2005 Epos Meritage (Napa Valley)
## 7700 Valsanzo 2005 Viña Sanzo Tempranillo (Rueda)
## 7701 Hunter Ashby 2005 Cabernet Sauvignon (Napa Valley)
## 7702 Nicholls 2005 Cabernet Sauvignon (Napa Valley)
## 7703 Southern Right 2007 Sauvignon Blanc (Walker Bay)
## 7704 Stephen Ross 2006 Chardonnay (Edna Valley)
## 7705 Pago de Larrainzar 2005 Red (Navarra)
## 7706 Pago de los Capellanes 2006 Joven Roble (Ribera del Duero)
## 7707 Vergelegen 2004 Merlot (Stellenbosch)
## 7708 Viña Albali 1998 Gran Reserva de Familia Red (Valdepeñas)
## 7709 Judd's Hill 2006 Estate Pinot Noir (Napa Valley)
## 7710 L'Egrégoire 2004 Bordeaux
## 7711 Loring Wine Company 2006 Russell Family Vineyard Pinot Noir (Paso Robles)
## 7712 Old Well House 2007 Sauvignon Blanc (Western Cape)
## 7713 De Bortoli 2007 Deen de Bortoli Vat 7 Chardonnay (South Eastern Australia)
## 7714 Dr. H. Thanisch (Erben Thanisch) 2006 Bernkasteler Badstube Kabinett Riesling (Mosel-Saar-Ruwer)
## 7715 Beau Joubert 2006 Oak Lane Merlot-Cabernet Sauvignon (Stellenbosch)
## 7716 Beau Joubert 2007 Oak Lane Chenin Blanc - Sauvignon Blanc White (Stellenbosch)
## 7717 Bodegas Franco-Españolas 2003 Rioja Bordón Crianza (Rioja)
## 7718 Bodegas Leza García 2001 Arderius Reserva (Rioja)
## 7719 Bernard Magrez 2014 Château Tour Blanche (Médoc)
## 7720 Boatique 2014 Petite Sirah (Red Hills Lake County)
## 7721 Campolargo 2014 Campolargo Branco White (Bairrada)
## 7722 Cerulean 2010 Underwood Mountain Riesling (Columbia Gorge (WA))
## 7723 Charles Smith 2014 The Velvet Devil Merlot (Washington)
## 7724 Château Abelyce 2011 Saint-Émilion
## 7725 Château Bellevue Peycharneau 2013 Sainte-Foy Bordeaux
## 7726 Château Haut Bertinerie 2014 Elegance (Blaye Côtes de Bordeaux)
## 7727 Château le Prieuré 2014 Délice du Prieuré (Saint-Émilion)
## 7728 Château Marquis de Terme 2014 Margaux
## 7729 Château Moncets 2011 Lalande de Pomerol
## 7730 Château Moulin de Blanchon 2014 Haut-Médoc
## 7731 Clarendelle 2015 Bordeaux Blanc
## 7732 DENO 2008 Paso Rouge Alto Pomar Vineyard Estate G-S-M (Paso Robles)
## 7733 Domaine de la Bonne Tonne 2014 Côte de Py (Morgon)
## 7734 Quevedo 2014 Claudia's Red (Douro)
## 7735 Quinta Nova de Nossa Senhora do Carmo 2014 Reserva Unoaked Red (Douro)
## 7736 Sextant 2014 Pinot Noir (Santa Lucia Highlands)
## 7737 Sweet Cheeks 2015 Riesling (Oregon)
## 7738 Telaya 2014 Boushey Vineyard Cabernet Sauvignon (Yakima Valley)
## 7739 Von Schleinitz 2015 Nitor Dry Riesling (Mosel)
## 7740 Winc 2014 Porter and Plot Pinot Noir (Sonoma Coast)
## 7741 Kooyong 2015 Estate Chardonnay (Mornington Peninsula)
## 7742 L. Tramier & Fils 2015 Collection (Chiroubles)
## 7743 Laurelwood 2015 Pinot Gris (Willamette Valley)
## 7744 Lion des Aubrots 2014 Côtes de Bourg
## 7745 Mamete Prevostini 2014 Sassella (Valtellina Superiore)
## 7746 Messias 2012 Quinta do Valdoeiro Colheita Red (Bairrada)
## 7747 Pacific Rim 2015 Twin Vineyards Gewürztraminer (Yakima Valley)
## 7748 Donati 2013 Cabernet Sauvignon (Paicines)
## 7749 Iron Horse 2014 Estate Pinot Noir (Green Valley)
## 7750 Jalits 2015 Pinot Noir (Burgenland)
## 7751 Levendi 2014 Charisma Pinot Noir (Napa Valley)
## 7752 Lincourt 2014 Courtney's Chardonnay (Sta. Rita Hills)
## 7753 Luna 2014 Cabernet Sauvignon (Napa Valley)
## 7754 Markus Huber 2016 Terrassen Grüner Veltliner (Traisental)
## 7755 Markus Huber 2016 Terrassen Riesling (Traisental)
## 7756 Matthews 2014 Claret Red (Columbia Valley (WA))
## 7757 Michael Mondavi Family Estate 2013 Animo Cabernet Sauvignon (Napa Valley)
## 7758 Morell-Peña 2015 Amylla Loren Chardonnay (Columbia Valley (WA))
## 7759 Parusso 2013 Bussia (Barolo)
## 7760 Ramey 2014 Chardonnay (Russian River Valley)
## 7761 Rasa 2013 Fianchetto Xl Vineyard Red (Walla Walla Valley (WA))
## 7762 Rasa 2014 For the Love of the Game Cabernet Sauvignon (Horse Heaven Hills)
## 7763 Ron Rubin 2014 Gunsalus Vineyard Pinot Noir (Green Valley)
## 7764 Saintsbury 2015 Sangiacomo Green Acres Catarina Clone 4 Chardonnay (Carneros)
## 7765 Saracina 2016 Sauvignon Blanc (Mendocino County)
## 7766 Sequel 2014 Syrah (Columbia Valley (WA))
## 7767 Stadlmann 2016 Anning Weissburgunder (Thermenregion)
## 7768 Stevens 2014 StevensBlackTongue Syrah (Yakima Valley)
## 7769 Stift Klosterneuburg 2015 Blaufränkisch (Thermenregion)
## 7770 Toccata 2013 Classico Red (Santa Barbara County)
## 7771 Türk 2016 Kremser Weinberge Riesling (Niederösterreich)
## 7772 Umathum 2015 Blaufränkisch (Burgenland)
## 7773 Umathum 2016 Sauvignon Blanc (Burgenland)
## 7774 Ferraton Pere et Fils 2014 Les Miaux Marsanne (Hermitage)
## 7775 Mas Champart 2013 Causse du Bousquet Red (Saint-Chinian)
## 7776 Sonsierra 2010 Gran Reserva (Rioja)
## 7777 Tardieu-Laurent 2013 Vieilles Vignes (Crozes-Hermitage)
## 7778 Morell-Peña 2015 Gemma Camaryn Chardonnay (Columbia Valley (WA))
## 7779 Jada Vineyard & Winery 2012 WCS Jack John Red (Paso Robles)
## 7780 Laughing Stock 2011 LFNG Blind Trust Red (Okanagan Valley)
## 7781 Leth 2013 Scheiben Roter Veltliner (Wagram-Donauland)
## 7782 Manzone Fratelli 2009 Vigna Fraschin (Barolo)
## 7783 Markus Huber 2013 Berg Reserve Grüner Veltliner (Traisental)
## 7784 Michael Gill Cellars 2012 Black Tie Syrah (Paso Robles)
## 7785 Ca' Viola 2009 Sottocastello di Novello (Barolo)
## 7786 D'Arenberg 2010 The Blind Tiger Single Vineyard Shiraz (McLaren Vale)
## 7787 Darioush 2013 Viognier (Napa Valley)
## 7788 Dürnberg 2013 Endlos Reserve Grüner Veltliner (Niederösterreich)
## 7789 Georges Vigouroux 2011 Château de Haute-Serre Cuvée Prestige Malbec (Cahors)
## 7790 Gordon Estate 2012 Estate Grown Late Harvest Gewürztraminer (Columbia Valley (WA))
## 7791 Prinsi 2008 Fausoni Riserva (Barbaresco)
## 7792 Jardin 2012 Barrel Fermented Chardonnay (Stellenbosch)
## 7793 Mascarello Giuseppe e Figlio 2009 Villero (Barolo)
## 7794 Alzinger 2013 Steinertal Smaragd Grüner Veltliner (Wachau)
## 7795 Anton Bauer 2013 Spiegel Grüner Veltliner (Wagram)
## 7796 Arndorfer 2012 Die Leidenschaft Zweigelt (Niederösterreich)
## 7797 Barden 2012 Syrah (Santa Barbara County)
## 7798 J & J 2012 Les Collines Vineyard Syrah (Walla Walla Valley (WA))
## 7799 Jurtschitsch 2013 Heiligenstein Alte Reben Reserve Riesling (Kamptal)
## 7800 Unger 2013 Gottschelle Reserve Grüner Veltliner (Kremstal)
## 7801 Vasse Felix 2013 Heytesbury Chardonnay (Margaret River)
## 7802 Vista d'Oro 2007 D'Oro Red (Okanagan Valley)
## 7803 Walla Walla Vintners 2012 Dolcetto (Walla Walla Valley (WA))
## 7804 Waterbrook 2012 Syrah (Columbia Valley (WA))
## 7805 Col d'Orcia 2008 Rosso di Montalcino
## 7806 Companhia das Quintas 2009 Quinta do Cardo White (Beira Interior)
## 7807 Eliseo Silva 2007 Merlot (Columbia Valley (WA))
## 7808 Enkidu 2008 Kick Ranch Sauvignon Blanc (Sonoma County)
## 7809 Flinders Run 2008 Little Flinders Shiraz-Cabernet Sauvignon (Southern Flinders Ranges)
## 7810 Frostwatch 2009 Kismet White (Bennett Valley)
## 7811 Glen Fiona 2006 Basket Press Syrah (Columbia Valley (WA))
## 7812 Guarachi Family 2007 Cabernet Sauvignon (Napa Valley)
## 7813 Hightower 2006 Cabernet Sauvignon (Columbia Valley (WA))
## 7814 Maximo 2007 Tempranillo (Vino de la Tierra de Castilla)
## 7815 Mirassou 2008 Sauvignon Blanc (California)
## 7816 Villa San Juliette 2007 Petite Sirah (Paso Robles)
## 7817 Viña Albali 2004 Reserva Tempranillo (Valdepeñas)
## 7818 Wild Horse 2008 Pinot Noir (Central Coast)
## 7819 Bleasdale 2009 Potts' Catch Verdelho (Langhorne Creek)
## 7820 Bouchaine 2008 Estate Vineyard Chardonnay (Napa-Carneros)
## 7821 Fournier Père et Fils 2008 La Charnivolle (Menetou-Salon)
## 7822 Magnificent Wine Company 2008 Steak House Cabernet Sauvignon (Columbia Valley (WA))
## 7823 Grant Burge 1999 Miamba Shiraz (Barossa Valley)
## 7824 Columbia Crest 1999 Grand Estates Merlot (Columbia Valley (WA))
## 7825 Coto de Imaz 1994 Gran Reserva (Rioja)
## 7826 Pontin del Roza 1999 Cabernet Sauvignon (Yakima Valley)
## 7827 Peirano 1998 Shiraz (Lodi)
## 7828 Ste. Chapelle 2000 Fumé Blanc (Idaho)
## 7829 Stefano Lubiana 1999 Pinot Noir (Tasmania)
## 7830 Kangarilla Road 2000 Shiraz (McLaren Vale)
## 7831 Marchesi de' Frescobaldi 2000 Campo ai Sasso (Rosso di Montalcino)
## 7832 Hollick 1998 Wilgha Shiraz (Coonawarra)
## 7833 Hollick 1999 Shiraz-Cabernet Sauvignon (Limestone Coast)
## 7834 Huguet de Can Feixes 2000 Can Feixes Blanc Selecciò White (Catalonia)
## 7835 Sariah Cellars 2000 Syrah (Red Mountain)
## 7836 Rutz 1999 Martinelli Vineyard Pinot Noir (Russian River Valley)
## 7837 Mayo 2000 Ricci Vineyard Unfiltered Zinfandel Port Zinfandel (Russian River Valley)
## 7838 Mayoral 2000 Cosecha Red (Jumilla)
## 7839 Craneford 2000 Quartet Red (Barossa Valley)
## 7840 Columbia Winery 1999 Merlot (Columbia Valley (WA))
## 7841 Columbia Winery 2001 Gewürztraminer (Columbia Valley (WA))
## 7842 Chateau Ste. Michelle 2001 Gewürztraminer (Columbia Valley (WA))
## 7843 Yorkville Cellars 1997 Cabernet Franc (Yorkville Highlands)
## 7844 Arbor Crest 2000 Chardonnay (Columbia Valley (WA))
## 7845 Gordon Brothers 1999 Cabernet Sauvignon (Columbia Valley (WA))
## 7846 Columbia Crest 2001 Johannisberg Riesling (Columbia Valley (WA))
## 7847 Condes de Albarei 2000 Albariño (Rías Baixas)
## 7848 Gallo of Sonoma 1997 Frei Vineyard Cabernet Sauvignon (Dry Creek Valley)
## 7849 Gargiulo 2000 Rosato di Sangiovese Sangiovese (Oakville)
## 7850 Oliverhill 2000 Bradey Block Grenache (McLaren Vale)
## 7851 II Moons 2011 Ardor Red (Paso Robles)
## 7852 Alta Vista 2012 Single Vineyard Alizarine Malbec (Luján de Cuyo)
## 7853 Alta Vista 2012 Single Vineyard Serenade Malbec (Luján de Cuyo)
## 7854 Asuncion Ridge 2012 Barrel Select Pinot Noir (San Luis Obispo County)
## 7855 B Cellars 2013 Manzana Vineyard Pinot Noir (Russian River Valley)
## 7856 Billecart-Salmon 2006 Vintage Extra Brut (Champagne)
## 7857 Ca' del Bosco 2010 Vintage Collection Brut Sparkling (Franciacorta)
## 7858 Chimney Rock 2012 Elevage Estate Grown Red (Stags Leap District)
## 7859 Joseph Perrier 2004 Cuvée Josephine Brut (Champagne)
## 7860 Ruinart 2002 Dom Ruinart Brut Rosé (Champagne)
## 7861 Domaine Drouhin Oregon 2013 Édition Limitée Chardonnay (Dundee Hills)
## 7862 Maso Martis 2010 Dosaggiozero Riserva Sparkling (Trento)
## 7863 Mount Eden Vineyards 2012 Chardonnay (Santa Cruz Mountains)
## 7864 Robert Biale 2013 Stagecoach Vineyard The Biale Block Zinfandel (Napa Valley)
## 7865 Rosenhof 2012 Orion Eiswein Grüner Veltliner (Burgenland)
## 7866 Taittinger 2006 Comtes de Champagne Brut Rosé (Champagne)
## 7867 Viña Cobos 2012 Bramare Marchiori Vineyard Malbec (Luján de Cuyo)
## 7868 Viña Cobos 2012 Bramare Touza Vineyard Malbec (Luján de Cuyo)
## 7869 Von Strasser 2012 Agira Vineyard Cabernet Sauvignon (Diamond Mountain District)
## 7870 Mvemve Raats 2011 MR de Compostella Red (Stellenbosch)
## 7871 Von Strasser 2012 Spaulding Vineyard Cabernet Sauvignon (Diamond Mountain District)
## 7872 Mvemve Raats 2012 MR de Compostella Red (Stellenbosch)
## 7873 Paul Hobbs 2012 Ulises Valdez Vineyard Chardonnay (Russian River Valley)
## 7874 Spell 2012 Alder Springs Vineyard Pinot Noir (Mendocino County)
## 7875 Thomas Fogarty 2012 Albutom Vineyard Chardonnay (Santa Cruz Mountains)
## 7876 Pol Roger 2008 Blanc de Blancs Brut Chardonnay (Champagne)
## 7877 Beaulieu Vineyard 2012 Georges de Latour Private Reserve Cabernet Sauvignon (Napa Valley)
## 7878 Ca' del Bosco 2006 Cuvée Annamaria Clementi Sparkling (Franciacorta)
## 7879 Cave Spring 2013 Riesling Icewine Riesling (Niagara Peninsula)
## 7880 Ch.igai Takaha 2013 Samurai Chardonnay (Sta. Rita Hills)
## 7881 Gary Farrell 2011 Russian River Selection Pinot Noir (Russian River Valley)
## 7882 Petite Sirène 2012 Bordeaux
## 7883 Plungerhead 2012 Cabernet Sauvignon (Dry Creek Valley)
## 7884 Quinta do Casal Branco 2013 Quartilho Fernão Pires (Tejo)
## 7885 Quinta do Casal Branco 2013 Terra de Lobos Branco White (Tejo)
## 7886 Ventisquero 2010 Herú Pinot Noir (Casablanca Valley)
## 7887 Viña Casablanca 2013 Cefiro Reserva Sauvignon Blanc (Casablanca Valley)
## 7888 Laird 2010 Cold Creek Chardonnay (Carneros)
## 7889 Louis Chavy 2012 Bourgogne
## 7890 Santa Barbara Winery 2011 Syrah (Sta. Rita Hills)
## 7891 Sweet Cheeks 2012 Pinot Fusion Red (Oregon)
## 7892 Tinazzi 2013 Ca' de' Rocchi (Lugana)
## 7893 Cru 2012 Vineyard Montage Chardonnay (Monterey County)
## 7894 Dão Sul 2010 Encontro Special Cuvée Brut Sparkling (Bairrada)
## 7895 Domaine de Pajot 2012 Les Quatre Cépages White (Côtes de Gascogne)
## 7896 Guyomar 2010 Oblate Red (Paso Robles)
## 7897 Herdade do Rocim 2012 Bojador Branco White (Alentejano)
## 7898 Vigneti Villabella 2012 Ca' del Lago (Lugana)
## 7899 Château la Petite Roque 2010 Blaye Côtes de Bordeaux
## 7900 Château le Castellot 2006 L'Excellence (Montravel)
## 7901 Chilcas 2012 Reserva Chardonnay (Maule Valley)
## 7902 Collection 35 2012 Brut Sparkling (Sta. Rita Hills)
## 7903 Due Cani 2009 Bella's Collection Syrah (Spring Mountain District)
## 7904 Fleury 2012 Ilixens (Bordeaux)
## 7905 Grochau 2011 Zenith Vineyard Pinot Noir (Eola-Amity Hills)
## 7906 Gunsight Rock 2011 Cabernet Sauvignon (Paso Robles)
## 7907 Quinta das Arcas 2013 Arca Nova White (Vinho Verde)
## 7908 Sanglier Cellars 2011 Rouge du Tusque Red (Sonoma County)
## 7909 Stama 2011 Old Vine Zinfandel (Lodi)
## 7910 The Full 2011 Cabernet Sauvignon (Napa Valley)
## 7911 The Federalist 2013 Zinfandel (Lodi)
## 7912 Tofanelli Family 2012 Estate Charbono (Napa Valley)
## 7913 Ugo Lequio 2010 Gallina Riserva (Barbaresco)
## 7914 Vallana 2009 Boca
## 7915 Vigne Surrau 2014 Sciala Vendemmia Tardiva (Vermentino di Gallura)
## 7916 Vite Colte 2012 La Casa in Collina (Barbaresco)
## 7917 Wirra Wirra 2012 Catapult Shiraz (McLaren Vale)
## 7918 Albert Bichot 2013 Saint-Véran
## 7919 Angove 2013 Family Crest G-S-M (McLaren Vale)
## 7920 Animale 2012 Pinot Noir (Oregon)
## 7921 Anselmo Mendes 2014 Muros de Melgaço Alvarinho (Vinho Verde)
## 7922 Argiolas 2013 I Selis Rosso Superiore (Monica di Sardegna)
## 7923 Artesa 2013 Estate Reserve Pinot Noir (Carneros)
## 7924 August Briggs 2012 Old Vines Zinfandel (Calistoga)
## 7925 Azamor 2010 Selected Vines Red (Alentejano)
## 7926 Azamor 2011 Petite Verdot (Alentejano)
## 7927 Beni di Batasiolo 2012 Barbaresco
## 7928 Benvenuto de la Serna 2014 Mil Piedras Malbec (Vista Flores)
## 7929 Bodega Tacuil 2013 33 de Dávalos Malbec-Cabernet Sauvignon (Salta)
## 7930 Fenestra 2013 Semillon (Livermore Valley)
## 7931 Fess Parker 2013 Rodney's Vineyard Riesling (Santa Barbara County)
## 7932 Herdade de São Miguel 2013 Ciconia Reserva Red (Alentejano)
## 7933 Yalumba 2012 The Strapper Grenache-Shiraz-Mataro G-S-M (Barossa)
## 7934 Bulgariana 2012 Cabernet Sauvignon (Thracian Valley)
## 7935 Canyon Wind 2012 Clone 4 Cabernet Sauvignon (Grand Valley)
## 7936 Cascina Saria 2012 Colle del Gelso (Barbaresco)
## 7937 Castello di Verduno 2010 Rabajà Riserva (Barbaresco)
## 7938 Cave des Grands Crus Blancs 2014 Vieilles Vignes (Pouilly-Vinzelles)
## 7939 Chateau Burgozone 2014 Chardonnay (Danube River Plains)
## 7940 Christophe Cordier 2013 Vieilles Vignes (Pouilly-Fuissé)
## 7941 Airfield Estates NV Cabernet Sauvignon (Yakima Valley)
## 7942 Wakefield 2005 Promised Land Shiraz-Cabernet Sauvignon (South Australia)
## 7943 Woodinville Wine Cellars 2005 Little Bear Creek Red Wine Red (Columbia Valley (WA))
## 7944 Barberani 2006 Pinot Nero (Lago di Corbara)
## 7945 Château de Tracy 2005 Mademoiselle de T (Pouilly-Fumé)
## 7946 Adelaida 2005 HMR Estate Santa Lucia Highland Range Chardonnay (Paso Robles)
## 7947 Arbor Crest 2006 Sauvignon Blanc (Columbia Valley (WA))
## 7948 Syncline 2006 Cinsault (Horse Heaven Hills)
## 7949 Tandem 2005 Sangiacomo Vineyards Pinot Noir (Sonoma Coast)
## 7950 Mojon's Bench 2004 Estate Merlot (Alexander Valley)
## 7951 Mossback 2006 Pinot Noir (Russian River Valley)
## 7952 Oliverhill 2006 Clarendon Shiraz (McLaren Vale)
## 7953 Fattoria Fibbiano 2004 L'Aspetto Red (Toscana)
## 7954 La Playa 2005 Axel Cabernet Sauvignon (Colchagua Valley)
## 7955 Le Caniette 2000 Sibilla Appeninica Vin Santo Passerina (Marche)
## 7956 Te Awa 2004 Zone 2 Syrah (Hawke's Bay)
## 7957 F X Pichler 2006 Loibner Klostersatz Federspiel Grüner Veltliner (Wachau)
## 7958 Stony Lonesome 2013 Estate Reserve Grüner Veltliner (Finger Lakes)
## 7959 The Farm Winery 2011 The Big Game Red (Paso Robles)
## 7960 Trump 2014 Rosé (Monticello)
## 7961 Two Paddocks 2011 Pinot Noir (Central Otago)
## 7962 Guicciardini Strozzi 2014 Vernaccia di San Gimignano
## 7963 Guicciardini Strozzi 2014 Villa Cusona (Vernaccia di San Gimignano)
## 7964 Henry Earl 2012 Malbec (Red Mountain)
## 7965 Jamieson Ranch 2013 Light Horse Chardonnay (California)
## 7966 Landhaus Mayer 2014 Grüner Veltliner (Niederösterreich)
## 7967 Original House Wine 2013 Market Moscato (America)
## 7968 Paradise Springs 2014 Nana's Rosé (Virginia)
## 7969 Pear Valley 2013 Viognier (Paso Robles)
## 7970 Cantina Altarocca 2014 Arcosesto (Orvieto Classico Superiore)
## 7971 Château Coussin 2014 La Croix du Prieur Rosé (Côtes de Provence)
## 7972 The Boneyard 2014 Chardonnay (Virginia)
## 7973 Château Paradis 2014 White (Coteaux d'Aix-en-Provence)
## 7974 Coyote Creek 2013 Chardonnay (California)
## 7975 Domaine Parigot 2013 Clos de la Perrière (Bourgogne Hautes Côtes de Beaune)
## 7976 Domaine Thierry Drouin 2013 Domaine du Vieux Puits (Macon-Bussières)
## 7977 Frei Brothers 2013 Reserve Zinfandel (Dry Creek Valley)
## 7978 Fulkerson 2014 Rosé (Finger Lakes)
## 7979 Marlborough Estate Reserve 2013 Pinot Noir (Marlborough)
## 7980 Via Giusti 2011 Pinot Noir (Russian River Valley)
## 7981 Wood Family Vineyards 2012 Especial Cabernet Sauvignon (Livermore Valley)
## 7982 Ingleside NV Chesapeake Chardonnay (Virginia)
## 7983 Iter 2012 Cabernet Sauvignon (Napa Valley)
## 7984 Kamiak 2014 Unoaked Chardonnay (Columbia Valley (WA))
## 7985 Lunadoro 2008 Quercione Riserva (Vino Nobile di Montepulciano)
## 7986 Millton 2012 La Cote Pinot Noir (Gisborne)
## 7987 Guidi 1929 2012 Aurea Riserva (Vernaccia di San Gimignano)
## 7988 Ca' Rugate 2009 Monte Fiorentine (Soave Classico)
## 7989 Cantina di Soave 2010 Re Midas (Soave)
## 7990 Casa de Santa Vitoria 2008 Tinto Red (Alentejano)
## 7991 Château Routas 2010 Rouvière Rosé (Coteaux Varois)
## 7992 Conn Creek 2008 Cabernet Franc (Napa Valley)
## 7993 Dão Sul 2008 Quinta das Tecedeiras Flor de Tecedeiras Red (Douro)
## 7994 Domaine Sainte Lucie 2010 MIP Made in Provence Rosé (Côtes de Provence)
## 7995 Sanguinhal 2008 Quinta de São Francisco Red (Obidos)
## 7996 Signorello 2009 SETA Semillon-Sauvignon Blanc (Napa Valley)
## 7997 Stomping Girl 2009 Beresini Vineyard Pinot Noir (Carneros)
## 7998 Tablas Creek 2010 Patelin de Tablas Blanc White (Paso Robles)
## 7999 Talbott 2009 Kali Hart Estate Grown Chardonnay (Monterey)
## 8000 Valentin Bianchi 2010 Elsa Bianchi Cabernet Sauvignon (Mendoza)
## 8001 Williams Selyem 2009 Bacigalupi Vineyard Zinfandel (Russian River Valley)
## 8002 Château La Nerthe 2008 Red (Châteauneuf-du-Pape)
## 8003 Clerget 2008 Red (Châteauneuf-du-Pape)
## 8004 Domaine Pierre Usseglio et Fils 2008 Red (Côtes du Rhône)
## 8005 Alente 2009 White (Alentejano)
## 8006 Inama 2010 Vin Soave (Soave Classico)
## 8007 Incognito 2008 Red (Lodi)
## 8008 L'Antica Quercia 2009 Matiú Brut (Conegliano Valdobbiadene Prosecco Superiore)
## 8009 Lynmar 2008 Pinot Noir (Russian River Valley)
## 8010 Raymond 2007 Reserve Selection Merlot (Napa Valley)
## 8011 Domaine Lafond 2008 Roc-Epine Red (Côtes du Rhône)
## 8012 Charles Clément NV Cuvée des Vignerons Brut Rosé (Champagne)
## 8013 Château le Breton 2012 Grande Réserve (Bordeaux)
## 8014 Château Siaurac 2011 Lalande de Pomerol
## 8015 Antica Fratta 2009 Essence Rosé Sparkling (Franciacorta)
## 8016 Balverne 2012 Forever Wild Sauvignon Blanc (Russian River Valley)
## 8017 Boëté 2009 Saunders Vineyard Reserve Cabernet Franc (Carmel Valley)
## 8018 Briceland 2012 Spirit Canyon Vineyards Arneis (Mendocino County)
## 8019 C.H. Berres 2011 Erdener Treppchen Kabinett Riesling (Mosel)
## 8020 Henri de Villamont 2010 Prestige (Bourgogne)
## 8021 Herdade de São Miguel 2012 Ciconia Red (Alentejano)
## 8022 Herdade Grande 2012 Audaz Branco White (Alentejano)
## 8023 Herzog 2011 Special Reserve Chardonnay (Russian River Valley)
## 8024 J. Lohr 2011 Riverstone Chardonnay (Arroyo Seco)
## 8025 J. Lohr 2011 Wildflower Valdiguié (Monterey County)
## 8026 Wattle Creek 2010 Primitivo (Yorkville Highlands)
## 8027 Whitehall Lane 2010 Merlot (Napa Valley)
## 8028 Wines & Winemakers 2011 Companhia das Lezírias Catapereiro Red (Tejo)
## 8029 Wines & Winemakers 2012 Andreza Códega do Larinho White (Douro)
## 8030 Il Mosnel 2009 Brut Satèn Chardonnay (Franciacorta)
## 8031 Kings Ridge 2012 Pinot Gris (Willamette Valley)
## 8032 Korbel 2010 Natural Sparkling (Russian River Valley)
## 8033 Korbel NV Sweet Rosé Sparkling (California)
## 8034 Lucas & Lewellen 2011 Goodchild High 9 Vineyard Pinot Noir (Santa Barbara County)
## 8035 Oak Grove 2012 Family Reserve Zinfandel (California)
## 8036 Obelisco Estate 2013 Riesling (Columbia Valley (WA))
## 8037 Palazzo 2012 Rosso di Montalcino
## 8038 Refugio Ranch 2011 Tiradora Sauvignon Blanc (Santa Ynez Valley)
## 8039 Rodriguez Sanzo 2013 Give Me Five By Javier Rodriguez (Rioja)
## 8040 San Polo 2012 Rosso di Montalcino
## 8041 Santa Carolina 2012 Reserva Merlot (Colchagua Valley)
## 8042 Anakena 2011 Ona Special Reserve Cabernet Sauvignon-Carmenere-Syrah Red (Cachapoal Valley)
## 8043 Auclair 2013 96 Cedars White (Columbia Valley (WA))
## 8044 Bliss 2013 Estate Bottled Rosé (Mendocino)
## 8045 Walla Faces 2012 Estate Syrah (Walla Walla Valley (WA))
## 8046 Vignerons de Bel Air 2013 Eté Intense (Côte de Brouilly)
## 8047 Viña Casablanca 2013 Cefiro Reserva Pinot Noir (Casablanca Valley)
## 8048 Henry Fessy 2012 Brouilly
## 8049 Segura Viudas NV Brut Sparkling (Cava)
## 8050 Cantine Lanzavecchia 2013 Cren del Gufo (Nebbiolo d'Alba)
## 8051 Château de Nages 2012 Vieilles Vignes White (Costières de Nîmes)
## 8052 Coldisole 2011 Rosso di Montalcino
## 8053 Dante Robere 2012 Dante's Inferno Red (California)
## 8054 Dealy Lane 2012 Unoaked Chardonnay (Sonoma County)
## 8055 Domaine de Ménard 2013 Colombard-Sauvignon Blanc (Côtes de Gascogne)
## 8056 Domaine des Marrans 2013 Beaujolais-Villages
## 8057 Domaine Dupeuble Père et Fils 2012 Beaujolais
## 8058 Domaine Lagneau 2013 Beaujolais-Villages
## 8059 Epiphany 2012 Camp Four Vinyard Grenache Blanc (Santa Barbara County)
## 8060 Fattoria del Cerro 2012 Rosso di Montepulciano
## 8061 Fornacina 2012 Rosso di Montalcino
## 8062 Influence 2012 Riesling (New York)
## 8063 14 Hands 2012 Chardonnay (Washington)
## 8064 Casa Larga NV Fiori Delle Stelle Ice Cuvée Sparkling (Finger Lakes)
## 8065 Jean Becker 2012 Froehn Grand Cru Riesling (Alsace)
## 8066 Kiona 2013 Chenin Blanc (Columbia Valley (WA))
## 8067 Murphy-Goode 2013 The Fumé Sauvignon Blanc (North Coast)
## 8068 R2 2012 Camp 4 Vineyard Grenache (Santa Ynez Valley)
## 8069 Santa Ema 2011 Rivalta Limited Selection Red (Maipo Valley)
## 8070 Sparkling Pointe 2005 Brut Séduction (North Fork of Long Island)
## 8071 Alessandro Rivetto 2010 Barbaresco
## 8072 Brown Estate 2012 Chaos Theory Red (Napa Valley)
## 8073 Viña San Vicente 2011 Lukai Red (Maule Valley)
## 8074 Woodward Canyon 2013 Estate Sauvignon Blanc (Walla Walla Valley (WA))
## 8075 Herdade Paço do Conde 2010 Colheita Seleccionada Red (Alentejano)
## 8076 Château Haut Bertinerie 2012 Blaye Côtes de Bordeaux
## 8077 Errazuriz 2012 Max Reserva Syrah (Aconcagua Valley)
## 8078 Estampa 2012 Reserve Assemblage Carmenère-Syrah-Cabernet Sauvignon Red (Colchagua Valley)
## 8079 Château Joanin Bécot 2012 Castillon Côtes de Bordeaux
## 8080 Château la Croix Saint-Pierre 2012 Tradition (Blaye Côtes de Bordeaux)
## 8081 Clos du Val 2010 Cabernet Sauvignon (Stags Leap District)
## 8082 Côtes de Ciel 2012 Ciel du Cheval Vineyard Flagship Reserve Red (Red Mountain)
## 8083 Dry Creek Vineyard 2012 Old Vine Zinfandel (Dry Creek Valley)
## 8084 Fess Parker 2011 Rodney's Vineyard Syrah (Santa Barbara County)
## 8085 Quinta de la Rosa 2011 Red (Douro)
## 8086 Quinta do Monte d'Oiro 2009 Aurius Red (Lisboa)
## 8087 Quivira 2012 Flight Zinfandel (Dry Creek Valley)
## 8088 Ram's Gate 2012 Ulises Valdez Diablo Vineyard Chardonnay (Russian River Valley)
## 8089 Ixsir 2009 Altitudes Red (Lebanon)
## 8090 J. Portugal Ramos 2012 Ramos Premium Red (Alentejano)
## 8091 Lombardi 2012 Chardonnay (Sonoma Coast)
## 8092 Martin Lane Winery 2010 Estate Syrah (Sierra Foothills)
## 8093 Campolargo 2008 Vinha da Costa Red (Bairrada)
## 8094 Chasseur 2012 Chardonnay (Russian River Valley)
## 8095 Stack House 2013 Cabernet Sauvignon (Napa Valley)
## 8096 Tenet 2014 The Pundit Syrah (Columbia Valley (WA))
## 8097 Brian Benson 2013 S&M Caliza Vineyard Syrah-Mourvèdre (Paso Robles)
## 8098 Clos Henri 2015 Sauvignon Blanc (Marlborough)
## 8099 Domaine Chevillon-Chezeaux 2014 Les Saint-Georges Premier Cru (Nuits-St.-Georges)
## 8100 Domaine Julie Belland 2013 Les Champs Gains Premier Cru (Puligny-Montrachet)
## 8101 Giesen 2013 The Brothers Late Harvest Sauvignon Blanc (Marlborough)
## 8102 Lynmar 2014 Chardonnay (Russian River Valley)
## 8103 Olivier Leflaive 2014 Charmes Premier Cru (Meursault)
## 8104 Olivier Leflaive 2014 Poruzots Premier Cru (Meursault)
## 8105 Roux Père et Fils 2014 Les Murgers des Dents de Chien Premier Cru (Saint-Aubin)
## 8106 Storm 2014 John Sebastiano VIneyard Pinot Noir (Sta. Rita Hills)
## 8107 Testarossa 2014 Pisoni Vineyard Pinot Noir (Santa Lucia Highlands)
## 8108 Venturini Massimino 2010 Campomasua (Amarone della Valpolicella Classico)
## 8109 Gary Farrell 2014 Bien Nacido Vineyard Pinot Noir (Santa Maria Valley)
## 8110 Masi 2011 Costasera Riserva (Amarone della Valpolicella Classico)
## 8111 Mendel 2013 Unus Red (Mendoza)
## 8112 Mumm Napa 2009 DVX Sparkling (Napa County)
## 8113 Rocca 2013 Grigsby Vineyard Cabernet Sauvignon (Yountville)
## 8114 Le Salette 2013 La Marega (Amarone della Valpolicella Classico)
## 8115 Kanonkop 2013 Estate Wine Black Label Pinotage (Simonsberg-Stellenbosch)
## 8116 Laurel Glen 2014 Counterpoint Cabernet Sauvignon (Sonoma Mountain)
## 8117 Leonetti Cellar 2013 Cabernet Sauvignon (Walla Walla Valley (WA))
## 8118 Anglim 2013 Hastings Ranch Vineyard Mourvèdre (Adelaida District)
## 8119 Comartin 2014 Pinot Noir (Santa Cruz Mountains)
## 8120 Craggy Range 2014 Le Sol Gimblett Gravels Syrah (Hawke's Bay)
## 8121 Domaine de Bellene 2014 Les Hauts Jarrons Premier Cru (Savigny-lès-Beaune)
## 8122 Domaine Henri Delagrange 2014 Champans Premier Cru (Volnay)
## 8123 Escarpment 2014 Pahi Single Vineyard Pinot Noir (Martinborough)
## 8124 Gård 2013 Grand Klasse Reserve Lawrence Vineyards Syrah (Columbia Valley (WA))
## 8125 Grevino 2014 Estate Vineyards Dolcetto (Santa Maria Valley)
## 8126 Hart 2014 Old Vine Reserve Cabernet Franc (Temecula Valley)
## 8127 Inama 2015 Vigneti di Foscarino (Soave Classico)
## 8128 Innocent Bystander 2015 Pinot Noir (Central Otago)
## 8129 J. Dumangin Fils NV L'Extra Brut Premier Cru (Champagne)
## 8130 Auclair 2014 Heart of the Hill Vineyard Cabernet Sauvignon (Red Mountain)
## 8131 La Berrière 2016 Sur Lie (Muscadet Côtes de Grandlieu)
## 8132 Walla Walla Vintners 2012 Cut Bank Estate Cabernet Sauvignon (Walla Walla Valley (WA))
## 8133 King Vintners 2016 NEXT Pinot Noir (Oregon)
## 8134 Marie Copinet NV Brut Extra Quality (Champagne)
## 8135 Miklus 2011 Natural Art Ribolla Gialla (Delle Venezie)
## 8136 Nicolas Feuillatte NV Brut Rosé (Champagne)
## 8137 Nieto Senetiner 2016 Malbec (Luján de Cuyo)
## 8138 Ornella Molon NV Brut (Prosecco Treviso)
## 8139 Papapietro Perry 2014 Zinfandel (Dry Creek Valley)
## 8140 Pinord NV Marrugat Brut Selection Sparkling (Cava)
## 8141 Ricardo Santos 2015 Una Selección Cabernet Sauvignon (Mendoza)
## 8142 Rutherford Ranch 2015 Reserve Chardonnay (Carneros)
## 8143 Sineann 2015 Pisa Terrace Pinot Noir (Marlborough)
## 8144 Spangler 2013 Petit Verdot (Oregon)
## 8145 Stella Rosa NV Imperiale Fior d'Arancio Orange Moscato (Colli Euganei)
## 8146 Tamber Bey 2016 Unoaked Chardonnay (Yountville)
## 8147 Terrazas de Los Andes 2016 Reserva Torrontés (Argentina)
## 8148 Tinhorn Creek 2015 Oldfield Series 2Bench White (Okanagan Valley)
## 8149 Urlar 2013 Pinot Noir (Wairarapa)
## 8150 Villa Maria 2014 Cellar Selection Pinot Noir (Marlborough)
## 8151 Beresini Vineyards 2013 Black Dog Ranch Pinot Noir (Carneros)
## 8152 Cave de Cleebourg NV Clérotstein Auxerrois Sparkling (Crémant d'Alsace)
## 8153 Claude Baron NV Cuvée Perle Rosé Brut (Champagne)
## 8154 Concannon 2015 Reserve Pinot Noir (Russian River Valley)
## 8155 Château le Grand Verdus 2016 Bordeaux Blanc
## 8156 Château Mont-Pérat 2016 Bordeaux Blanc
## 8157 Château Petit Moulin 2016 Rosé (Bordeaux Rosé)
## 8158 Cono Sur 2015 Reserva Especial Pinot Noir (San Antonio)
## 8159 Coquelicot 2016 Riesling
## 8160 Cow Bell 2015 Pinot Noir (Willamette Valley)
## 8161 Curto 2016 Poiano Inzolia (Terre Siciliane)
## 8162 DFJ Vinhos 2016 Portada Winemaker's Selection Branco White (Lisboa)
## 8163 Quintas de Melgaço 2016 QM Terra Antiga White (Vinho Verde)
## 8164 Re Manfredi 2016 Rosato (Basilicata)
## 8165 Santa Rita 2015 Reserva Cabernet Sauvignon (Maipo Valley)
## 8166 Siegel 2015 1234 Reserva Red (Colchagua Valley)
## 8167 Spicerack 2015 Syrah (Sonoma County)
## 8168 Taverna 2016 Maddalena Rosato (Basilicata)
## 8169 The White Knight 2015 Viognier (Clarksburg)
## 8170 Three Rivers 2015 River's Red (Columbia Valley (WA))
## 8171 Van Ardi 2015 Estate Bottled Kangoun (Armenia)
## 8172 Wines & Winemakers 2016 Maria Bonita Loureiro (Vinho Verde)
## 8173 Lambert 2014 A Thousand Words Chardonnay (Barossa Valley)
## 8174 Le Casque 2014 Adrian Red (Sierra Foothills)
## 8175 Lion-Gri 2006 Golden Land Dry Chardonnay (Moldova)
## 8176 Manuel Manzaneque Suárez 2014 Ea! Tempranillo (La Mancha)
## 8177 McWilliam's 2014 Cool Climate Chardonnay (Australia)
## 8178 Minkov Brothers 2011 Le Photographe Rheinriesling Riesling (Thracian Valley)
## 8179 Minkov Brothers 2014 Le Photographe Cabernet Franc (Thracian Valley)
## 8180 Mount Veeder 2014 Cabernet Sauvignon (Napa Valley)
## 8181 Gorman 2014 Old Scratch G-S-M (Columbia Valley (WA))
## 8182 Hightower 2013 Estate Red (Red Mountain)
## 8183 J. Scott Cellars 2016 Pinot Blanc (Willamette Valley)
## 8184 14 Hands 2014 Limited Release Kentucky Derby Red (Columbia Valley (WA))
## 8185 Montes 2006 Alpha M Red (Santa Cruz)
## 8186 Alzinger 2007 Loibenberg Smaragd Grüner Veltliner (Wachau)
## 8187 Errazuriz 2006 Don Maximiano Founder's Reserva Red (Aconcagua Valley)
## 8188 Errazuriz 2006 La Cumbre Shiraz (Aconcagua Valley)
## 8189 Château Mont-Pérat 2006 Bordeaux Blanc
## 8190 Jacquart NV Katarina Brut (Champagne)
## 8191 Kendall-Jackson 2007 Grand Reserve Chardonnay (Santa Barbara-Monterey)
## 8192 Maple Creek 2007 Estate Chardonnay (Yorkville Highlands)
## 8193 Sunstone 2005 Estate Bottled Reserve Syrah (Santa Ynez Valley)
## 8194 Rotari 2003 Talento Riserva Sparkling (Trento)
## 8195 Louis Roederer NV Premier Brut (Champagne)
## 8196 Cinnabar 2007 Pinot Noir (Santa Lucia Highlands)
## 8197 Brancott 2008 B Sauvignon Blanc (Marlborough)
## 8198 Château Couhins 2007 Pessac-Léognan
## 8199 Château Thieuley 2007 Cuvée Francis Courselle (Bordeaux Blanc)
## 8200 Viansa 2006 Merlot (Sonoma County)
## 8201 Heintz 2007 Chardonnay (Sonoma Coast)
## 8202 Terre Rouge 2006 High Slopes Syrah (Sierra Foothills)
## 8203 Alzinger 2007 Loibenberg Smaragd Riesling (Wachau)
## 8204 Alzinger 2007 Steinertal Smaragd Grüner Veltliner (Wachau)
## 8205 Château Cantelys 2007 Pessac-Léognan
## 8206 Château d'Yquem 2006 Ygrec (Bordeaux Blanc)
## 8207 Château Ferrande 2008 Graves
## 8208 Château Moncontour 2005 Cuvée Prédilection Brut (Vouvray)
## 8209 Foxen 2012 Bien Nacido Vineyard Block UU Chardonnay (Santa Maria Valley)
## 8210 Mouchão 2009 Ponte das Canas Colheita Red (Alentejano)
## 8211 Swanson 2010 Alexis Cabernet Sauvignon (Napa Valley)
## 8212 Terlato 2010 Block 9 Syrah (Dry Creek Valley)
## 8213 Trisaetum 2011 Wichmann Dundee Estate Pinot Noir (Dundee Hills)
## 8214 Joh. Jos. Prüm 2011 Wehlener Sonnenuhr Auslese Riesling (Mosel)
## 8215 Rheingraf 2011 Scharlachberg Bingen GG Erste Lage Trocken Riesling (Rheinhessen)
## 8216 Pascal Bouchard 2011 Montmains Premier Cru Les Vieilles Vignes (Chablis)
## 8217 Patrick Javillier 2011 Aloxe-Corton
## 8218 Patrick Javillier 2011 Les Clousots (Meursault)
## 8219 Renieri 2010 Re di Renieri Red (Toscana)
## 8220 Rutherford Hill 2010 Reserve Merlot (Napa Valley)
## 8221 Trisaetum 2012 Coast Range Estate Riesling
## 8222 Damien et Romain Bouchard 2011 Vaudésir Grand Cru (Chablis)
## 8223 Demetria 2012 Estate Rosé (Santa Ynez Valley)
## 8224 DFJ Vinhos 2008 Quinta do Rocio Red (Lisboa)
## 8225 Domaine Chandon NV étoile Rosé Sparkling (Sonoma-Napa)
## 8226 Foxen 2012 Tinaquaic Vineyard Chardonnay (Santa Maria Valley)
## 8227 Barone Pizzini 2009 Nature Sparkling (Franciacorta)
## 8228 J. Dumangin Fils 1996 Vinothèque Premier Cru Brut (Champagne)
## 8229 Jarvis 2011 Estate Grown Cave Fermented Tempranillo (Napa Valley)
## 8230 Zaca Mesa 2010 Z Three Estate Grown and Bottled G-S-M (Santa Ynez Valley)
## 8231 Stratus 2008 Icewine Riesling (Niagara Peninsula)
## 8232 Thiénot 2002 Cuvée Alain Thienot Brut Millesimé (Champagne)
## 8233 Trisaetum 2011 Estates Reserve Pinot Noir (Willamette Valley)
## 8234 Antiyal 2011 Red (Maipo Valley)
## 8235 Inniskillin 2007 Gold Icewine Vidal Blanc (Niagara Peninsula)
## 8236 Knights Bridge 2010 Beckstoffer To Kalon Vineyard Cabernet Sauvignon (Napa Valley)
## 8237 Lamiable 2007 Cuvée Les Meslaines Grand Cru Brut Pinot Noir (Champagne)
## 8238 Cà La Bionda 2009 Vigneti di Ravazzol (Amarone della Valpolicella Classico)
## 8239 Concha y Toro 2011 Serie Riberas Gran Reserva Ribera del Cachapoal Carmenère (Peumo)
## 8240 Damiani 2010 Reserve Cabernet Sauvignon (Finger Lakes)
## 8241 Raats Family 2010 Red Jasper Red (Coastal Region)
## 8242 Spier 2011 Vintage Selection Shiraz (Western Cape)
## 8243 Lamoreaux Landing 2010 Estate Bottled Cabernet Franc (Finger Lakes)
## 8244 Morgenhof 2011 Estate Sauvignon Blanc (Simonsberg-Stellenbosch)
## 8245 Höpler 2011 Pinot Noir (Burgenland)
## 8246 Hovey 2011 Dragone Vineyard Zinfandel (Calaveras County)
## 8247 Kiona 2010 Merlot (Columbia Valley (WA))
## 8248 Wolfberger 2008 Rangen Grand Cru Pinot Gris (Alsace)
## 8249 Domaine de la Tour du Bon 2010 Red (Bandol)
## 8250 Fattoria Laila 2012 Verdicchio dei Castelli di Jesi
## 8251 Ferrari-Carano 2011 Cabernet Sauvignon (Alexander Valley)
## 8252 Grace Lane 2012 Riesling (Yakima Valley)
## 8253 Les Belles Collines 2012 Pinot Noir (Russian River Valley)
## 8254 Longboard 2011 Point Break Red (North Coast)
## 8255 Mannina Cellars 2010 Merlot (Walla Walla Valley (WA))
## 8256 Marchetti 2012 Tenuta del Cavaliere (Verdicchio dei Castelli di Jesi Classico Superiore)
## 8257 Accadia 2011 Cantorì (Verdicchio dei Castelli di Jesi Classico Superiore)
## 8258 Arboleda 2011 Carmenère (Colchagua Valley)
## 8259 Birgit Braunstein 2011 Goldberg St. Laurent (Burgenland)
## 8260 Buehler 2011 Cabernet Sauvignon (Napa Valley)
## 8261 Atwater 2010 Moffett Block Blaufränkisch (Finger Lakes)
## 8262 Bellangelo 2011 Dry Riesling (Finger Lakes)
## 8263 Hafner 2012 Classique Syrah (Burgenland)
## 8264 Hazlitt 1852 Vineyards 2010 Cabernet Sauvignon (Finger Lakes)
## 8265 Cave de Kientzheim-Kaysersberg 2009 Late Harvest Pinot Gris (Alsace)
## 8266 Château de Calavon 2009 Cuvée Château Red (Coteaux d'Aix-en-Provence)
## 8267 Colli Ripani 2012 Rugaro Gold (Offida Pecorino)
## 8268 Crossbarn by Paul Hobbs 2012 Pinot Noir (Sonoma Coast)
## 8269 Hook & Ladder 2008 Station 10 Red (Russian River Valley)
## 8270 Damilano 2008 Nebbiolo d'Alba
## 8271 Domaine de la Croix Senaillet 2009 Sur la Carrière (Saint-Véran)
## 8272 Domaine Dujac 2009 Morey-Saint-Denis
## 8273 Frei Brothers 2009 Reserve Chardonnay (Russian River Valley)
## 8274 Haras 2009 Carmenère (Maipo Valley)
## 8275 Joseph Drouhin 2008 Pommard
## 8276 Korta Katarina 2008 Posip (Korčula)
## 8277 La Playa 2010 Block Selection Reserve Sauvignon Blanc (Limarí Valley)
## 8278 Lost Canyon 2009 Goff-Whitton Vineyard Pinot Noir (Russian River Valley)
## 8279 Louis Latour 2009 Charmes (Meursault)
## 8280 Lyrarakis 2010 Vilana (Crete)
## 8281 Monchiero Carbone 2008 Sru (Roero)
## 8282 Paradise Ridge 2007 Elevation Cabernet Sauvignon (Rockpile)
## 8283 Paul Dolan 2009 Chardonnay (Mendocino County)
## 8284 Punset 2008 Campo Quadro (Barbaresco)
## 8285 Robert Mondavi 2009 Pinot Noir (Napa Valley)
## 8286 Stickybeak 2008 Syrah (Napa County)
## 8287 Villadoria 2008 Barbaresco
## 8288 Portola Vineyards 2008 Estate Pinot Noir (Santa Clara Valley)
## 8289 Ram's Gate 2014 Estate Chardonnay (Carneros)
## 8290 Rendarrio Vineyards 2013 The Rocker Cabernet Sauvignon (Paso Robles)
## 8291 Tardieu-Laurent 2013 Vieilles Vignes Red (Châteauneuf-du-Pape)
## 8292 Trinity Hill 2014 The Gimblett Gimblett Gravels Red (Hawke's Bay)
## 8293 Türk 2015 Frechau Reserve Grüner Veltliner (Kremstal)
## 8294 Two Paddocks 2015 The Fusilier Proprietor's Reserve Pinot Noir (Central Otago)
## 8295 Wrights Station 2013 Cave Block Reserve Pinot Noir (Santa Cruz Mountains)
## 8296 Ziata 2013 Mia Madre Red (Napa Valley)
## 8297 Allram 2015 Gaisberg Reserve Riesling (Kamptal)
## 8298 Alyris 2014 The Audition Mount George Estate Zinfandel (Napa Valley)
## 8299 Artezin 2014 Old Vine Zinfandel (Mendocino County)
## 8300 Blackbird Vineyards 2014 Arise Proprietary Red (Napa Valley)
## 8301 Brandl 2015 Lamm Reserve Grüner Veltliner (Kamptal)
## 8302 Ingrid Groiss 2015 Sauberg Tradition Grüner Veltliner (Niederösterreich)
## 8303 Iron Horse 2012 Rainbow Cuvée Estate Bottled Sparkling (Green Valley)
## 8304 Jäger 2015 Achleiten Smaragd Riesling (Wachau)
## 8305 Jäger 2015 Steinriegl Smaragd Riesling (Wachau)
## 8306 Château d'Aqueria 2015 Tavel
## 8307 Fattoria La Lecciaia 2010 Riserva (Brunello di Montalcino)
## 8308 Ottimino Vineyards 2013 Biglieri Vineyard Zinfandel (Dry Creek Valley)
## 8309 Palencia 2014 Syrah (Yakima Valley)
## 8310 R&A; Pfaffl 2015 Hundsleiten Reserve Grüner Veltliner (Weinviertel)
## 8311 Rosenblum 2012 Carla's Reserve Zinfandel (Contra Costa County)
## 8312 Salomon-Undhof 2015 Von Stein Reserve Grüner Veltliner (Kremstal)
## 8313 Stags' Leap Winery 2013 Ne Cede Malis Estate Grown Petite Sirah (Stags Leap District)
## 8314 Steininger 2015 Loisium Weingarten Reserve Grüner Veltliner (Kamptal)
## 8315 Tenuta di Biserno 2012 Biserno Red (Toscana)
## 8316 Thirty-Seven Wines 2015 Pinot Gris (Sonoma Coast)
## 8317 Mauritson 2013 Madrone Spring Vineyard Petite Sirah (Rockpile)
## 8318 Yao Family Wines 2014 Napa Crest Red (Napa Valley)
## 8319 Markowitsch 2011 Pinot Noir (Carnuntum)
## 8320 Alta Maria 2011 Pinot Noir (Santa Maria Valley)
## 8321 Apex 2012 Chardonnay (Columbia Valley (WA))
## 8322 Apex 2012 Late Harvest Sémillon (Columbia Valley (WA))
## 8323 Ascension Cellars 2010 Cass Vineyard Cumulus White (Paso Robles)
## 8324 Basalt 2010 Chelle den Millie Vineyard Cabernet Franc (Columbia Valley (WA))
## 8325 Bergevin Lane 2012 Dreamweaver Roussanne (Columbia Valley (WA))
## 8326 Boomtown 2011 Cabernet Sauvignon (Washington)
## 8327 Boomtown 2011 Merlot (Washington)
## 8328 Bott Frères 2010 Tradition Riesling (Alsace)
## 8329 Anakena 2012 Late Harvest Viognier (Cachapoal Valley)
## 8330 Terra Valentine 2011 Pinot Noir (Sonoma Coast)
## 8331 Terra Valentine 2012 Estate Riesling (Spring Mountain District)
## 8332 Two Mountain 2010 Copeland Vineyard Merlot (Yakima Valley)
## 8333 Vignamato 2008 Riserva Ambrosia (Verdicchio dei Castelli di Jesi Classico)
## variety
## 1 White Blend
## 2 Portuguese Red
## 3 Pinot Gris
## 4 Riesling
## 5 Pinot Noir
## 6 Tempranillo-Merlot
## 7 Frappato
## 8 Gewürztraminer
## 9 Gewürztraminer
## 10 Pinot Gris
## 11 Cabernet Sauvignon
## 12 Gewürztraminer
## 13 Cabernet Sauvignon
## 14 Nerello Mascalese
## 15 Chardonnay
## 16 Riesling
## 17 Malbec
## 18 Malbec
## 19 Tempranillo Blend
## 20 Meritage
## 21 Red Blend
## 22 Pinot Noir
## 23 White Blend
## 24 Merlot
## 25 Nero d'Avola
## 26 Pinot Noir
## 27 White Blend
## 28 Nero d'Avola
## 29 Red Blend
## 30 Chenin Blanc
## 31 Gamay
## 32 Red Blend
## 33 White Blend
## 34 Red Blend
## 35 Sauvignon Blanc
## 36 Pinot Noir
## 37 Viognier-Chardonnay
## 38 Cabernet Sauvignon
## 39 Primitivo
## 40 Nero d'Avola
## 41 Catarratto
## 42 Pinot Noir
## 43 Gamay
## 44 Sauvignon Blanc
## 45 Merlot
## 46 Red Blend
## 47 Inzolia
## 48 Riesling
## 49 Sauvignon Blanc
## 50 Gamay
## 51 Red Blend
## 52 Petit Verdot
## 53 Monica
## 54 Bordeaux-style White Blend
## 55 Red Blend
## 56 Chardonnay
## 57 Chardonnay
## 58 Grillo
## 59 Pinot Noir
## 60 Malbec
## 61 Cabernet Sauvignon
## 62 Sangiovese
## 63 Cabernet Franc
## 64 Champagne Blend
## 65 Sauvignon Blanc
## 66 Chardonnay
## 67 Chardonnay
## 68 Bordeaux-style Red Blend
## 69 Red Blend
## 70 Champagne Blend
## 71 Chardonnay
## 72 Cabernet Sauvignon
## 73 Aglianico
## 74 Cabernet Sauvignon
## 75 Petite Sirah
## 76 Bordeaux-style Red Blend
## 77 Riesling
## 78 Chardonnay
## 79 Pinot Noir
## 80 Touriga Nacional
## 81 Carmenère
## 82 Albariño
## 83 Petit Manseng
## 84 Rosé
## 85 Zinfandel
## 86 Riesling
## 87 Albariño
## 88 Merlot
## 89 Vernaccia
## 90 Rosato
## 91 Red Blend
## 92 Pinot Gris
## 93 Meritage
## 94 Grüner Veltliner
## 95 Viognier
## 96 Gamay
## 97 Gamay
## 98 Riesling
## 99 Sangiovese
## 100 Bordeaux-style Red Blend
## 101 Pinot Gris
## 102 Riesling
## 103 Riesling
## 104 Chardonnay
## 105 Red Blend
## 106 White Blend
## 107 Red Blend
## 108 Vermentino
## 109 Zinfandel
## 110 Red Blend
## 111 Gamay
## 112 Cabernet Sauvignon
## 113 Red Blend
## 114 White Blend
## 115 Bordeaux-style Red Blend
## 116 Chardonnay
## 117 Grenache Blanc
## 118 Syrah
## 119 Red Blend
## 120 Riesling
## 121 Nebbiolo
## 122 Chardonnay
## 123 Zinfandel
## 124 Shiraz-Cabernet Sauvignon
## 125 Cabernet Sauvignon
## 126 Cabernet Sauvignon
## 127 Gewürztraminer
## 128 White Blend
## 129 Pinot Blanc
## 130 Bordeaux-style Red Blend
## 131 Nebbiolo
## 132 Alsace white blend
## 133 Cabernet Sauvignon
## 134 Nebbiolo
## 135 Cabernet Sauvignon
## 136 Nebbiolo
## 137 Bordeaux-style Red Blend
## 138 Chenin Blanc
## 139 Alsace white blend
## 140 Pinot Gris
## 141 Barbera
## 142 Nebbiolo
## 143 Riesling
## 144 Pinot Gris
## 145 Cabernet Sauvignon
## 146 Pinot Noir
## 147 Cabernet Sauvignon
## 148 Cabernet Sauvignon
## 149 Riesling
## 150 Rhône-style Red Blend
## 151 Cabernet Sauvignon
## 152 Portuguese White
## 153 Pinot Noir
## 154 Syrah
## 155 Graciano
## 156 Syrah
## 157 Riesling
## 158 Portuguese Red
## 159 Sangiovese
## 160 Sangiovese
## 161 Malbec
## 162 Red Blend
## 163 Riesling
## 164 Gamay
## 165 Red Blend
## 166 Cabernet Sauvignon
## 167 Tannat-Cabernet
## 168 Cabernet Franc
## 169 Merlot
## 170 Pinot Noir
## 171 Riesling
## 172 Riesling
## 173 Cabernet Sauvignon
## 174 Pinot Noir
## 175 Sauvignon Blanc
## 176 Sauvignon
## 177 Red Blend
## 178 Sangiovese
## 179 Syrah
## 180 Chardonnay
## 181 Chardonnay
## 182 Pinot Noir
## 183 Sangiovese Grosso
## 184 Torrontés
## 185 Chardonnay
## 186 Carmenère
## 187 Pinot Noir
## 188 Red Blend
## 189 Merlot
## 190 Chardonnay
## 191 Red Blend
## 192 Cabernet Sauvignon
## 193 Red Blend
## 194 Chardonnay
## 195 Sangiovese
## 196 Prugnolo Gentile
## 197 Vernaccia
## 198 Chenin Blanc
## 199 Cabernet Sauvignon
## 200 Cabernet Franc
## 201 Sangiovese
## 202 White Blend
## 203 Syrah
## 204 Portuguese Red
## 205 G-S-M
## 206 Chardonnay
## 207 Cabernet Sauvignon
## 208 Zinfandel
## 209 White Blend
## 210 Rhône-style Red Blend
## 211 Chardonnay
## 212 Rhône-style Red Blend
## 213 Verdejo
## 214 Red Blend
## 215 Rhône-style Red Blend
## 216 Bordeaux-style Red Blend
## 217 Sangiovese
## 218 Portuguese Red
## 219 Fumé Blanc
## 220 Furmint
## 221 Chardonnay
## 222 Pinot Bianco
## 223 Sangiovese
## 224 Pinot Bianco
## 225 Malbec
## 226 Chardonnay
## 227 Chenin Blanc
## 228 Pinot Noir
## 229 Riesling
## 230 Red Blend
## 231 Gewürztraminer
## 232 Bonarda
## 233 Shiraz
## 234 Pinot Noir
## 235 Montepulciano
## 236 Syrah
## 237 Cabernet Sauvignon
## 238 Moscato
## 239 Grenache
## 240 Cabernet Sauvignon
## 241 Ugni Blanc-Colombard
## 242 Sangiovese
## 243 Chardonnay
## 244 Chardonnay
## 245 Red Blend
## 246 Chardonnay
## 247 Sauvignon Blanc
## 248 Merlot
## 249 Pinot Noir
## 250 Bordeaux-style Red Blend
## 251 Cabernet Sauvignon
## 252 Pinot Noir
## 253 Zinfandel
## 254 Malbec
## 255 Petite Sirah
## 256 Pinot Noir
## 257 Syrah-Viognier
## 258 Red Blend
## 259 Cabernet Sauvignon
## 260 Malbec
## 261 Pinot Noir
## 262 Red Blend
## 263 Red Blend
## 264 Pinot Noir
## 265 Syrah
## 266 Chardonnay
## 267 Red Blend
## 268 White Blend
## 269 White Blend
## 270 Blaufränkisch
## 271 Friulano
## 272 Assyrtico
## 273 Pinot Bianco
## 274 Red Blend
## 275 White Blend
## 276 Cabernet Sauvignon
## 277 Zinfandel
## 278 Cabernet Sauvignon
## 279 Pinot Noir
## 280 Sauvignon
## 281 Grüner Veltliner
## 282 Pinot Noir
## 283 Red Blend
## 284 Pinot Noir
## 285 Malbec
## 286 Riesling
## 287 Pinot Noir
## 288 Carignan-Grenache
## 289 Grüner Veltliner
## 290 Cabernet Sauvignon
## 291 Bordeaux-style Red Blend
## 292 Sagrantino
## 293 Savagnin
## 294 Shiraz
## 295 Malbec
## 296 Cabernet Sauvignon-Syrah
## 297 Cabernet Sauvignon
## 298 Cabernet Sauvignon
## 299 Cabernet Sauvignon
## 300 Red Blend
## 301 Sangiovese
## 302 Chardonnay
## 303 Nebbiolo
## 304 Nebbiolo
## 305 Barbera
## 306 Zinfandel
## 307 Chardonnay
## 308 Pinot Noir
## 309 White Blend
## 310 Nebbiolo
## 311 Nebbiolo
## 312 Syrah
## 313 Cabernet Sauvignon
## 314 Nebbiolo
## 315 Cabernet Sauvignon
## 316 Prosecco
## 317 Bordeaux-style White Blend
## 318 Bordeaux-style White Blend
## 319 Merlot
## 320 Prosecco
## 321 Prosecco
## 322 Prosecco
## 323 Prosecco
## 324 Cabernet Sauvignon
## 325 Prosecco
## 326 Vignoles
## 327 Prosecco
## 328 Chardonnay
## 329 White Blend
## 330 Zinfandel
## 331 Red Blend
## 332 Gewürztraminer
## 333 Prosecco
## 334 Prosecco
## 335 Champagne Blend
## 336 Prosecco
## 337 Pinot Noir
## 338 Rosé
## 339 Rosé
## 340 Sparkling Blend
## 341 Pinot Gris
## 342 Zinfandel
## 343 Sparkling Blend
## 344 Pinot Noir
## 345 Chardonnay
## 346 Muscat
## 347 Muscadelle
## 348 Riesling
## 349 Muscat
## 350 Shiraz-Viognier
## 351 Nebbiolo
## 352 Furmint
## 353 Chardonnay
## 354 Chardonnay
## 355 Riesling
## 356 Chardonnay
## 357 Shiraz
## 358 Pinot Noir
## 359 Riesling
## 360 Chardonnay
## 361 Shiraz-Viognier
## 362 Nebbiolo
## 363 Cabernet Sauvignon
## 364 Chardonnay
## 365 Pinot Noir
## 366 Shiraz
## 367 Pinot Bianco
## 368 Carmenère
## 369 Garganega
## 370 Chardonnay
## 371 Cabernet Sauvignon
## 372 Sauvignon Blanc
## 373 White Blend
## 374 Sauvignon Blanc
## 375 Sauvignon Blanc
## 376 Sangiovese
## 377 Pinot Grigio
## 378 White Blend
## 379 Nebbiolo
## 380 White Blend
## 381 Merlot
## 382 White Blend
## 383 Cabernet Sauvignon
## 384 Chardonnay
## 385 Gewürztraminer
## 386 Sauvignon Blanc
## 387 Merlot
## 388 Sauvignon Blanc
## 389 Pinot Noir
## 390 White Blend
## 391 Cabernet Sauvignon
## 392 Chardonnay
## 393 Sauvignon Blanc
## 394 Chardonnay
## 395 Merlot
## 396 White Blend
## 397 Zinfandel
## 398 Pinot Noir
## 399 Sauvignon Blanc
## 400 Prosecco
## 401 Prosecco
## 402 Prosecco
## 403 Syrah
## 404 Red Blend
## 405 Syrah
## 406 Prosecco
## 407 Champagne Blend
## 408 Chardonnay
## 409 Prosecco
## 410 Gewürztraminer
## 411 Cabernet Franc
## 412 Cabernet Sauvignon
## 413 Prosecco
## 414 Prosecco
## 415 Prosecco
## 416 Riesling
## 417 Prosecco
## 418 Prosecco
## 419 Red Blend
## 420 Bordeaux-style Red Blend
## 421 Bordeaux-style White Blend
## 422 Merlot
## 423 Grenache Blanc
## 424 Grüner Veltliner
## 425 White Blend
## 426 Rosé
## 427 Tempranillo
## 428 Sparkling Blend
## 429 Grüner Veltliner
## 430 Syrah
## 431 Sauvignon Blanc
## 432 Tempranillo
## 433 Riesling
## 434 Grenache Blanc
## 435 Nebbiolo
## 436 Zierfandler
## 437 Cortese
## 438 Bordeaux-style Red Blend
## 439 Mencía
## 440 Mencía
## 441 Cabernet Sauvignon
## 442 Zweigelt
## 443 Cabernet Franc
## 444 Zinfandel
## 445 Grüner Veltliner
## 446 Nerello Mascalese
## 447 Cabernet Sauvignon
## 448 Melon
## 449 Rhône-style White Blend
## 450 Chardonnay
## 451 Champagne Blend
## 452 Sangiovese
## 453 Chardonnay
## 454 Champagne Blend
## 455 Vidal
## 456 Chardonnay
## 457 Sparkling Blend
## 458 Pinot Noir
## 459 Sparkling Blend
## 460 Champagne Blend
## 461 Pinot Noir
## 462 Pinot Blanc
## 463 Chardonnay
## 464 Champagne Blend
## 465 Riesling
## 466 Red Blend
## 467 Chardonnay
## 468 Pinot Noir
## 469 Riesling
## 470 Riesling
## 471 Champagne Blend
## 472 Pinot Noir
## 473 Pinot Noir
## 474 Portuguese Red
## 475 Champagne Blend
## 476 Cabernet Sauvignon
## 477 Red Blend
## 478 Bordeaux-style Red Blend
## 479 Champagne Blend
## 480 Cannonau
## 481 Bordeaux-style Red Blend
## 482 Cannonau
## 483 Pinot Noir
## 484 Chenin Blanc
## 485 Chenin Blanc
## 486 Rhône-style Red Blend
## 487 Cabernet Sauvignon
## 488 White Blend
## 489 Pinot Grigio
## 490 Sauvignon
## 491 Sparkling Blend
## 492 Grüner Veltliner
## 493 Sangiovese
## 494 Red Blend
## 495 Chardonnay
## 496 Chardonnay
## 497 Verdejo
## 498 Cabernet Franc
## 499 Pinot Noir
## 500 Rosé
## 501 Rosé
## 502 Verdelho
## 503 Moscato
## 504 Sauvignon Blanc
## 505 Rhône-style Red Blend
## 506 Tempranillo
## 507 White Blend
## 508 Syrah
## 509 Tempranillo
## 510 Red Blend
## 511 Chardonnay
## 512 Champagne Blend
## 513 Champagne Blend
## 514 Cabernet Sauvignon
## 515 Merlot
## 516 Pinot Noir
## 517 Pinot Noir
## 518 Pinot Noir
## 519 Pinot Noir
## 520 Grenache
## 521 Marsanne
## 522 Grenache
## 523 Pinot Noir
## 524 Pinot Noir
## 525 Syrah
## 526 Chardonnay
## 527 Pinot Noir
## 528 Scheurebe
## 529 Champagne Blend
## 530 Pinot Noir
## 531 Syrah
## 532 Sparkling Blend
## 533 Pinot Noir
## 534 Pinot Noir
## 535 Cabernet Sauvignon
## 536 Riesling
## 537 Bordeaux-style Red Blend
## 538 Cabernet Sauvignon
## 539 Pinot Noir
## 540 Pinot Noir
## 541 Pinot Noir
## 542 Pinot Noir
## 543 Kerner
## 544 Cabernet Sauvignon
## 545 Red Blend
## 546 Cabernet Sauvignon
## 547 Chardonnay
## 548 Sangiovese
## 549 Pinot Noir
## 550 Nebbiolo
## 551 Chardonnay
## 552 Zinfandel
## 553 Rosé
## 554 Malbec
## 555 Rosé
## 556 Cabernet Sauvignon
## 557 Tempranillo
## 558 Pinot Noir
## 559 White Blend
## 560 Syrah-Grenache
## 561 Syrah
## 562 Pinot Noir
## 563 Petite Sirah
## 564 Pinot Noir
## 565 Syrah
## 566 Red Blend
## 567 Cabernet Sauvignon
## 568 Malbec
## 569 Cabernet Sauvignon
## 570 Chardonnay
## 571 Syrah
## 572 Albariño
## 573 Dolcetto
## 574 Bordeaux-style Red Blend
## 575 Rosé
## 576 Bordeaux-style Red Blend
## 577 Bordeaux-style Red Blend
## 578 Rosé
## 579 Bordeaux-style Red Blend
## 580 Rosé
## 581 White Blend
## 582 Gewürztraminer
## 583 Merlot
## 584 Pinot Noir
## 585 Grüner Veltliner
## 586 Chardonnay
## 587 Pinot Blanc
## 588 Sauvignon Blanc
## 589 Chardonnay
## 590 Zweigelt
## 591 Chardonnay
## 592 Grüner Veltliner
## 593 Malbec
## 594 Riesling
## 595 Rhône-style Red Blend
## 596 Cabernet Sauvignon
## 597 Vilana
## 598 Riesling
## 599 Sangiovese
## 600 Cabernet Sauvignon
## 601 Cortese
## 602 Sauvignon Blanc
## 603 Cabernet Sauvignon
## 604 Cabernet Franc
## 605 Red Blend
## 606 Red Blend
## 607 Grenache
## 608 Viognier
## 609 Portuguese White
## 610 Grüner Veltliner
## 611 Sauvignon Blanc
## 612 Pinot Noir
## 613 G-S-M
## 614 Portuguese White
## 615 Garganega
## 616 Malbec
## 617 Chardonnay
## 618 Glera
## 619 Merlot
## 620 Chardonnay
## 621 Glera
## 622 Pinot Noir
## 623 Red Blend
## 624 Red Blend
## 625 Red Blend
## 626 Garganega
## 627 Garganega
## 628 White Blend
## 629 Shiraz
## 630 Pinot Noir
## 631 Pinot Noir
## 632 Gewürztraminer
## 633 Riesling
## 634 Viognier
## 635 Zinfandel
## 636 Viura
## 637 Shiraz
## 638 Alsace white blend
## 639 Riesling
## 640 Pinot Gris
## 641 Chardonnay
## 642 Pinot Gris
## 643 Portuguese Red
## 644 Chardonnay
## 645 Cabernet Sauvignon
## 646 Pinot Noir
## 647 Portuguese Red
## 648 Portuguese Red
## 649 Riesling
## 650 Cabernet Sauvignon
## 651 Sauvignon
## 652 Riesling
## 653 Riesling
## 654 Grenache
## 655 Riesling
## 656 Zinfandel
## 657 Pinot Noir
## 658 Rhône-style Red Blend
## 659 Chardonnay
## 660 Cabernet Sauvignon
## 661 Cabernet Sauvignon
## 662 Pinot Grigio
## 663 Nebbiolo
## 664 Cabernet Sauvignon
## 665 Dolcetto
## 666 Barbera
## 667 Riesling
## 668 Garnacha Tintorera
## 669 Riesling
## 670 Malbec
## 671 Cabernet Sauvignon
## 672 Petite Sirah
## 673 Riesling
## 674 Pinot Noir
## 675 Cabernet Sauvignon
## 676 Pinot Noir
## 677 Chardonnay
## 678 Syrah
## 679 Syrah
## 680 Cabernet Sauvignon
## 681 Tempranillo Blend
## 682 Syrah
## 683 Pinot Nero
## 684 Red Blend
## 685 Cabernet Sauvignon
## 686 Pinot Noir
## 687 Nebbiolo
## 688 Chardonnay
## 689 Cabernet Sauvignon
## 690 Red Blend
## 691 Red Blend
## 692 Malbec
## 693 Red Blend
## 694 Cabernet Franc
## 695 Sauvignon Blanc
## 696 Red Blend
## 697 Sauvignon Blanc
## 698 Roter Veltliner
## 699 Bordeaux-style Red Blend
## 700 Pinotage
## 701 Bonarda
## 702 Rosé
## 703 Rosé
## 704 Rosé
## 705 Rosé
## 706 Sauvignon Blanc
## 707 Rosé
## 708 Rosé
## 709 Rosé
## 710 Zinfandel
## 711 Pinot Noir
## 712 Sauvignon Blanc
## 713 Pinot Noir
## 714 Pinot Noir
## 715 Pinot Noir
## 716 Red Blend
## 717 Pinot Noir
## 718 Rosé
## 719 Portuguese White
## 720 Chardonnay
## 721 Rosé
## 722 Cabernet Sauvignon
## 723 Sémillon
## 724 Portuguese White
## 725 Viognier
## 726 Nebbiolo
## 727 Rosé
## 728 Pinot Noir
## 729 Torrontés
## 730 Portuguese White
## 731 Cabernet Sauvignon
## 732 Chardonnay
## 733 Pinot Noir
## 734 Pinot Noir
## 735 Bonarda
## 736 Torrontés
## 737 Tempranillo
## 738 Rosé
## 739 Malbec
## 740 Nebbiolo
## 741 Sangiovese
## 742 Pinot Noir-Gamay
## 743 Chardonnay
## 744 Zinfandel
## 745 Nebbiolo
## 746 Antão Vaz
## 747 Pinot Grigio
## 748 Pinot Noir
## 749 Cabernet Franc
## 750 Riesling
## 751 Pinot Noir
## 752 Sauvignon Blanc
## 753 Gewürztraminer
## 754 Chardonnay
## 755 Viura
## 756 Gewürztraminer
## 757 Zinfandel
## 758 Pinot Noir
## 759 Pinot Noir
## 760 Syrah
## 761 Syrah
## 762 Cabernet Sauvignon-Carmenère
## 763 Verdejo
## 764 Verdejo-Viura
## 765 Syrah
## 766 Red Blend
## 767 Pinot Noir
## 768 Tempranillo
## 769 Cabernet Sauvignon
## 770 Aglianico
## 771 Chardonnay
## 772 Sparkling Blend
## 773 Chardonnay
## 774 Portuguese Red
## 775 Pinot Noir
## 776 Pinot Noir
## 777 Chardonnay
## 778 Verduzzo
## 779 Pinot Noir
## 780 Champagne Blend
## 781 White Blend
## 782 Chardonnay
## 783 Sparkling Blend
## 784 Zinfandel
## 785 Portuguese Red
## 786 Red Blend
## 787 Portuguese Red
## 788 Cabernet Sauvignon
## 789 Chardonnay
## 790 Riesling
## 791 Cabernet Sauvignon
## 792 Pinot Noir
## 793 Bordeaux-style Red Blend
## 794 Red Blend
## 795 Grenache Blanc
## 796 Bordeaux-style Red Blend
## 797 Bordeaux-style Red Blend
## 798 Bordeaux-style Red Blend
## 799 Bordeaux-style Red Blend
## 800 Bordeaux-style Red Blend
## 801 Cabernet Sauvignon
## 802 Syrah
## 803 Gamay
## 804 Merlot
## 805 Chardonnay
## 806 Riesling
## 807 Chardonnay
## 808 Chardonnay
## 809 Verdicchio
## 810 Tempranillo
## 811 Cabernet Sauvignon
## 812 Silvaner
## 813 Syrah
## 814 Red Blend
## 815 Sangiovese
## 816 Sauvignon Blanc
## 817 Gewürztraminer
## 818 Merlot
## 819 Gamay
## 820 Colombard
## 821 Tempranillo Blend
## 822 Sparkling Blend
## 823 Sangiovese
## 824 Malbec
## 825 Merlot
## 826 Sangiovese
## 827 Sangiovese
## 828 Merlot
## 829 Chenin Blanc
## 830 Viognier
## 831 Chardonnay
## 832 Gamay
## 833 Gamay
## 834 Nebbiolo
## 835 Cabernet Sauvignon
## 836 Gamay
## 837 Sparkling Blend
## 838 Sparkling Blend
## 839 Syrah
## 840 Riesling
## 841 Rosé
## 842 Chardonnay
## 843 Gamay
## 844 Cabernet Franc
## 845 Carricante
## 846 Grillo
## 847 Sylvaner
## 848 Pinot Noir
## 849 Pinot Noir
## 850 Pinot Noir
## 851 Chardonnay
## 852 Pinot Noir
## 853 Sylvaner
## 854 Riesling
## 855 Zinfandel
## 856 Chardonnay
## 857 Fiano
## 858 Syrah
## 859 Pinot Gris
## 860 Cabernet Sauvignon
## 861 Cabernet Franc
## 862 Nerello Mascalese
## 863 Rosato
## 864 Pinot Noir
## 865 Früburgunder
## 866 White Blend
## 867 Rosé
## 868 Pinot Noir
## 869 Carmenère
## 870 Grenache
## 871 Syrah
## 872 Merlot
## 873 Albariño
## 874 White Blend
## 875 Sousão
## 876 Portuguese Red
## 877 Red Blend
## 878 Red Blend
## 879 Bordeaux-style Red Blend
## 880 Bordeaux-style Red Blend
## 881 Syrah
## 882 Red Blend
## 883 Cabernet Sauvignon
## 884 Red Blend
## 885 Sparkling Blend
## 886 Petite Sirah
## 887 Rhône-style Red Blend
## 888 Portuguese White
## 889 Cabernet Franc
## 890 Pinot Noir
## 891 Viognier
## 892 Pinot Noir
## 893 Bordeaux-style Red Blend
## 894 Shiraz
## 895 Sangiovese
## 896 Red Blend
## 897 Syrah
## 898 Syrah
## 899 Red Blend
## 900 Sangiovese
## 901 Red Blend
## 902 Portuguese White
## 903 Roussanne
## 904 Riesling
## 905 Nebbiolo
## 906 Nero d'Avola
## 907 Roussanne
## 908 Avesso
## 909 Nebbiolo
## 910 Nebbiolo
## 911 Bordeaux-style Red Blend
## 912 Cinsault
## 913 Rosé
## 914 Chinuri
## 915 Malbec
## 916 Pinot Noir
## 917 Pinot Gris
## 918 Nebbiolo
## 919 Nebbiolo
## 920 Pinot Gris
## 921 Sauvignon Blanc
## 922 Portuguese White
## 923 Sauvignon Blanc
## 924 Tinta Miúda
## 925 Sauvignon Blanc
## 926 Muscat Blanc à Petits Grains
## 927 Malbec
## 928 Portuguese Sparkling
## 929 Nebbiolo
## 930 Zinfandel
## 931 Malbec
## 932 Nebbiolo
## 933 Bordeaux-style Red Blend
## 934 Bordeaux-style Red Blend
## 935 Bordeaux-style Red Blend
## 936 Bordeaux-style Red Blend
## 937 Chardonnay
## 938 Pinot Blanc
## 939 Tempranillo
## 940 Bordeaux-style Red Blend
## 941 Champagne Blend
## 942 Monastrell
## 943 Pinot Noir
## 944 Tempranillo Blend
## 945 Viognier
## 946 Chardonnay
## 947 Sangiovese
## 948 Portuguese Red
## 949 Portuguese Red
## 950 Nebbiolo
## 951 Chardonnay
## 952 Petit Verdot
## 953 Xarel-lo
## 954 Pinot Noir
## 955 Cabernet Sauvignon
## 956 Nebbiolo
## 957 Greco
## 958 Sauvignon Blanc
## 959 Rosé
## 960 Champagne Blend
## 961 Bordeaux-style Red Blend
## 962 Bordeaux-style Red Blend
## 963 Champagne Blend
## 964 Bordeaux-style Red Blend
## 965 Trebbiano
## 966 Primitivo
## 967 Sauvignon Blanc
## 968 Chardonnay
## 969 Rosé
## 970 Carmenère
## 971 Cabernet Sauvignon
## 972 Champagne Blend
## 973 Viognier
## 974 Syrah
## 975 Red Blend
## 976 Pinot Noir
## 977 White Blend
## 978 Viognier
## 979 White Blend
## 980 Sauvignon Blanc
## 981 Corvina, Rondinella, Molinara
## 982 Sauvignon Blanc
## 983 Cabernet Sauvignon
## 984 Gewürztraminer
## 985 Red Blend
## 986 Cabernet Sauvignon
## 987 Port
## 988 Viognier
## 989 Pinot Gris
## 990 Tempranillo Blend
## 991 Sauvignon Blanc
## 992 Bordeaux-style Red Blend
## 993 Red Blend
## 994 Chenin Blanc-Chardonnay
## 995 Sauvignon Blanc
## 996 White Blend
## 997 Syrah
## 998 Shiraz
## 999 Pinot Gris
## 1000 Riesling
## 1001 Cabernet Sauvignon
## 1002 Nerello Mascalese
## 1003 Pinot Noir
## 1004 Bordeaux-style Red Blend
## 1005 Bordeaux-style White Blend
## 1006 Sauvignon Blanc
## 1007 Pinot Noir
## 1008 Sauvignon Blanc
## 1009 Shiraz
## 1010 Cabernet Sauvignon
## 1011 Pinot Noir
## 1012 Pinot Gris
## 1013 Red Blend
## 1014 Nero d'Avola
## 1015 Rhône-style Red Blend
## 1016 Red Blend
## 1017 Nero d'Avola
## 1018 Grillo
## 1019 Gewürztraminer
## 1020 Bordeaux-style Red Blend
## 1021 Pinot Gris
## 1022 Malbec
## 1023 Insolia
## 1024 White Blend
## 1025 Pinot Gris
## 1026 Sauvignon Blanc
## 1027 Pinot Gris
## 1028 Grenache
## 1029 Mencía
## 1030 White Blend
## 1031 Chardonnay
## 1032 Tempranillo
## 1033 Pinot Gris
## 1034 Chardonnay
## 1035 Pinot Blanc
## 1036 Nero d'Avola
## 1037 Carricante
## 1038 Syrah
## 1039 Merlot-Malbec
## 1040 Albariño
## 1041 Malbec
## 1042 Bordeaux-style Red Blend
## 1043 Red Blend
## 1044 Grüner Veltliner
## 1045 Pinot Grigio
## 1046 Pinot Noir
## 1047 White Blend
## 1048 Merlot
## 1049 Cabernet Sauvignon
## 1050 Chardonnay
## 1051 Merlot
## 1052 White Blend
## 1053 Pinot Grigio
## 1054 Tempranillo Blend
## 1055 Ribolla Gialla
## 1056 Zweigelt
## 1057 Grüner Veltliner
## 1058 Red Blend
## 1059 Syrah
## 1060 Pinot Grigio
## 1061 Bordeaux-style White Blend
## 1062 Red Blend
## 1063 Friulano
## 1064 Cabernet Sauvignon-Merlot
## 1065 Red Blend
## 1066 Port
## 1067 Zinfandel
## 1068 Pinot Noir
## 1069 Pinot Noir
## 1070 Pinot Noir
## 1071 Pinot Noir
## 1072 Nebbiolo
## 1073 Portuguese Red
## 1074 Port
## 1075 Shiraz
## 1076 Chardonnay
## 1077 Pinot Noir
## 1078 Nebbiolo
## 1079 Chardonnay
## 1080 Chardonnay
## 1081 Riesling
## 1082 Riesling
## 1083 Syrah
## 1084 Malbec
## 1085 Cabernet Franc
## 1086 Zinfandel
## 1087 Riesling
## 1088 Pinot Noir
## 1089 Syrah
## 1090 Cabernet Franc
## 1091 Port
## 1092 Pinot Noir
## 1093 Pinot Noir
## 1094 Pinot Noir
## 1095 Pinot Noir
## 1096 Cabernet Sauvignon
## 1097 Red Blend
## 1098 Viognier
## 1099 Chardonnay
## 1100 G-S-M
## 1101 Red Blend
## 1102 Chardonnay
## 1103 Chardonnay
## 1104 Sauvignon Blanc
## 1105 Syrah
## 1106 Nebbiolo
## 1107 Cabernet Franc
## 1108 Zinfandel
## 1109 Rhône-style Red Blend
## 1110 Red Blend
## 1111 Tempranillo
## 1112 Sparkling Blend
## 1113 Rhône-style Red Blend
## 1114 Sauvignon Blanc
## 1115 Sangiovese
## 1116 Tempranillo
## 1117 Merlot
## 1118 Zinfandel
## 1119 Red Blend
## 1120 White Blend
## 1121 Sparkling Blend
## 1122 Duras
## 1123 Riesling
## 1124 Pinot Gris
## 1125 Red Blend
## 1126 Pinot Noir
## 1127 Bordeaux-style Red Blend
## 1128 Bordeaux-style Red Blend
## 1129 Bordeaux-style Red Blend
## 1130 Malbec
## 1131 Cabernet Sauvignon
## 1132 Sauvignon Blanc
## 1133 Bordeaux-style Red Blend
## 1134 Bordeaux-style Red Blend
## 1135 Bordeaux-style Red Blend
## 1136 Sauvignon Blanc
## 1137 Red Blend
## 1138 Nero d'Avola
## 1139 Rosato
## 1140 Cabernet Sauvignon
## 1141 Chardonnay
## 1142 Chardonnay
## 1143 Chardonnay
## 1144 Zinfandel
## 1145 Meritage
## 1146 Bordeaux-style Red Blend
## 1147 Rosato
## 1148 Merlot
## 1149 Nero d'Avola
## 1150 Bordeaux-style Red Blend
## 1151 Carmenère
## 1152 White Blend
## 1153 Red Blend
## 1154 Weissburgunder
## 1155 Shiraz
## 1156 Roditis
## 1157 Grüner Veltliner
## 1158 Petite Sirah
## 1159 Blaufränkisch
## 1160 Traminer
## 1161 White Blend
## 1162 Prosecco
## 1163 Prosecco
## 1164 Prosecco
## 1165 Prosecco
## 1166 Cabernet Sauvignon
## 1167 Merlot
## 1168 Prosecco
## 1169 Bordeaux-style Red Blend
## 1170 Prosecco
## 1171 Chardonnay
## 1172 Riesling
## 1173 Pinot Noir
## 1174 Pinot Noir
## 1175 Merlot
## 1176 Grüner Veltliner
## 1177 Prosecco
## 1178 Rosé
## 1179 Cabernet Sauvignon
## 1180 Sparkling Blend
## 1181 Pinot Gris
## 1182 Nebbiolo
## 1183 Sauvignon Blanc
## 1184 Nebbiolo
## 1185 Nebbiolo
## 1186 Portuguese Red
## 1187 Chardonnay
## 1188 Papaskarasi
## 1189 Chardonnay
## 1190 Chardonnay
## 1191 Chardonnay
## 1192 Chardonnay
## 1193 Tannat-Syrah
## 1194 Malbec
## 1195 Malbec
## 1196 Bordeaux-style Red Blend
## 1197 Chardonnay
## 1198 Nebbiolo
## 1199 Marsanne-Roussanne
## 1200 Pinot Grigio
## 1201 Riesling
## 1202 Chardonnay
## 1203 Tempranillo
## 1204 Zinfandel
## 1205 Portuguese Red
## 1206 Nebbiolo
## 1207 Chardonnay
## 1208 Nebbiolo
## 1209 Portuguese Red
## 1210 Sparkling Blend
## 1211 Cabernet Sauvignon
## 1212 Bordeaux-style Red Blend
## 1213 Pinot Noir
## 1214 Pinot Noir
## 1215 Sauvignon Blanc
## 1216 Portuguese Red
## 1217 Syrah
## 1218 Barbera
## 1219 Verdicchio
## 1220 Syrah
## 1221 Bordeaux-style Red Blend
## 1222 Pinot Noir
## 1223 Syrah
## 1224 Sparkling Blend
## 1225 Portuguese Red
## 1226 Charbono
## 1227 Chardonnay
## 1228 Pinot Noir
## 1229 Pinot Noir
## 1230 Portuguese Red
## 1231 Pinot Noir
## 1232 Red Blend
## 1233 Tempranillo
## 1234 Pinot Noir
## 1235 Pinot Noir
## 1236 Red Blend
## 1237 Chardonnay
## 1238 Sangiovese
## 1239 Bordeaux-style Red Blend
## 1240 Sangiovese
## 1241 Bordeaux-style Red Blend
## 1242 Chardonnay
## 1243 Chardonnay
## 1244 Pinot Blanc
## 1245 Bordeaux-style Red Blend
## 1246 Sauvignon Blanc
## 1247 Cabernet Sauvignon
## 1248 Sauvignon Blanc
## 1249 Red Blend
## 1250 Red Blend
## 1251 Sangiovese
## 1252 Riesling
## 1253 Silvaner
## 1254 Chardonnay
## 1255 Chardonnay
## 1256 Merlot
## 1257 Cabernet Sauvignon
## 1258 Tempranillo
## 1259 Sangiovese Grosso
## 1260 Tempranillo
## 1261 White Blend
## 1262 Red Blend
## 1263 Viognier
## 1264 Riesling
## 1265 Pinot Noir
## 1266 Merlot-Argaman
## 1267 Riesling
## 1268 Cabernet Franc
## 1269 Insolia
## 1270 Albariño
## 1271 Cabernet Sauvignon
## 1272 Petite Sirah
## 1273 Nero d'Avola
## 1274 Chardonnay
## 1275 Chardonnay
## 1276 Merlot
## 1277 Cabernet Sauvignon
## 1278 Sauvignon Blanc
## 1279 Nero d'Avola
## 1280 Portuguese White
## 1281 Tempranillo
## 1282 Tempranillo
## 1283 Riesling
## 1284 Nero d'Avola
## 1285 Chardonnay
## 1286 Pinot Noir
## 1287 Greco
## 1288 Cabernet Sauvignon
## 1289 Red Blend
## 1290 Riesling
## 1291 Pinot Nero
## 1292 Pinot Nero
## 1293 Sauvignon
## 1294 Cabernet Sauvignon
## 1295 Red Blend
## 1296 Chardonnay
## 1297 Melon
## 1298 Prié Blanc
## 1299 Syrah
## 1300 Pinot Nero
## 1301 Chardonnay
## 1302 Sauvignon Blanc
## 1303 Sauvignon Blanc
## 1304 Riesling
## 1305 Riesling
## 1306 Sherry
## 1307 Cabernet Sauvignon
## 1308 Pinot Noir
## 1309 Portuguese White
## 1310 Zinfandel
## 1311 Bordeaux-style Red Blend
## 1312 Chardonnay
## 1313 Pinot Nero
## 1314 Cabernet Sauvignon
## 1315 Pinot Nero
## 1316 Pinot Nero
## 1317 Greco
## 1318 Petite Sirah
## 1319 Cabernet Sauvignon
## 1320 Sauvignon Blanc
## 1321 White Blend
## 1322 Sparkling Blend
## 1323 Grüner Veltliner
## 1324 Sparkling Blend
## 1325 Syrah
## 1326 Syrah
## 1327 Viura
## 1328 Chardonnay
## 1329 Pinot Noir
## 1330 Red Blend
## 1331 Provence red blend
## 1332 Bordeaux-style Red Blend
## 1333 Tannat
## 1334 Syrah
## 1335 Sauvignon Blanc
## 1336 Rosé
## 1337 G-S-M
## 1338 Greco
## 1339 Rosé
## 1340 Rosé
## 1341 Rosé
## 1342 Grüner Veltliner
## 1343 Cabernet Sauvignon
## 1344 Rhône-style Red Blend
## 1345 Grillo
## 1346 Viognier
## 1347 Bonarda
## 1348 Rosato
## 1349 Riesling
## 1350 Zibibbo
## 1351 Falanghina
## 1352 Bordeaux-style Red Blend
## 1353 Bordeaux-style Red Blend
## 1354 Rosé
## 1355 Red Blend
## 1356 Red Blend
## 1357 Bordeaux-style Red Blend
## 1358 Garnacha
## 1359 Tempranillo Blend
## 1360 Pinot Noir
## 1361 Petite Sirah
## 1362 Grillo
## 1363 Rhône-style White Blend
## 1364 Negroamaro
## 1365 Bordeaux-style Red Blend
## 1366 Rosé
## 1367 Cabernet Sauvignon
## 1368 Rosé
## 1369 Chardonnay
## 1370 White Blend
## 1371 Rosé
## 1372 Syrah
## 1373 Pinot Bianco
## 1374 Zinfandel
## 1375 Mourvèdre
## 1376 Rosé
## 1377 Syrah
## 1378 Portuguese White
## 1379 Cabernet Sauvignon
## 1380 Syrah-Cabernet
## 1381 Rosé
## 1382 Viognier
## 1383 Cabernet Sauvignon-Carmenère
## 1384 Verdelho
## 1385 Pinot Grigio
## 1386 Riesling
## 1387 Malbec
## 1388 Ribolla Gialla
## 1389 Pinot Noir
## 1390 Chenin Blanc
## 1391 Chenin Blanc
## 1392 Müller-Thurgau
## 1393 Pinot Noir
## 1394 Nebbiolo
## 1395 Malbec
## 1396 Pinot Meunier
## 1397 Cabernet Franc
## 1398 Port
## 1399 Riesling
## 1400 Sauvignon
## 1401 Portuguese Red
## 1402 Cabernet Franc
## 1403 Pinot Grigio
## 1404 Sauvignon
## 1405 Pinot Grigio
## 1406 White Blend
## 1407 Chardonnay
## 1408 Kerner
## 1409 Sauvignon
## 1410 Cabernet Sauvignon
## 1411 Riesling
## 1412 Sousão
## 1413 Port
## 1414 Pinot Noir
## 1415 Rhône-style Red Blend
## 1416 Gewürztraminer
## 1417 Pinot Gris
## 1418 Zinfandel
## 1419 Cabernet Sauvignon
## 1420 Bordeaux-style Red Blend
## 1421 Viognier
## 1422 Gewürztraminer
## 1423 Blaufränkisch
## 1424 Cabernet Sauvignon
## 1425 Cabernet Sauvignon
## 1426 Blaufränkisch
## 1427 Pinot Gris
## 1428 Pinot Gris
## 1429 Cabernet Sauvignon
## 1430 Red Blend
## 1431 Bordeaux-style Red Blend
## 1432 Viognier
## 1433 Red Blend
## 1434 Rhône-style Red Blend
## 1435 Bordeaux-style Red Blend
## 1436 Cabernet Sauvignon-Sangiovese
## 1437 Cabernet Sauvignon
## 1438 Rhône-style Red Blend
## 1439 Grüner Veltliner
## 1440 Merlot
## 1441 Cabernet Sauvignon
## 1442 Pinot Noir
## 1443 Austrian Red Blend
## 1444 Rhône-style Red Blend
## 1445 Cabernet Sauvignon
## 1446 Red Blend
## 1447 Chardonnay
## 1448 Portuguese Red
## 1449 White Blend
## 1450 Rhône-style Red Blend
## 1451 Pinot Noir
## 1452 Pinot Noir
## 1453 Sangiovese
## 1454 Pinot Noir
## 1455 Red Blend
## 1456 Rhône-style Red Blend
## 1457 Cabernet Sauvignon
## 1458 Riesling
## 1459 Malbec
## 1460 Cabernet Sauvignon
## 1461 Teroldego
## 1462 Sauvignon Blanc
## 1463 Sangiovese
## 1464 Pinot Noir
## 1465 Syrah
## 1466 Portuguese Red
## 1467 Cabernet Sauvignon
## 1468 Pinot Noir
## 1469 Cabernet Sauvignon
## 1470 Cabernet Sauvignon
## 1471 Pinot Noir
## 1472 Sangiovese
## 1473 Cabernet Sauvignon
## 1474 Cabernet Sauvignon
## 1475 Red Blend
## 1476 Pinot Grigio
## 1477 Cabernet Sauvignon
## 1478 Cabernet Sauvignon
## 1479 Shiraz-Cabernet Sauvignon
## 1480 Syrah
## 1481 Chardonnay
## 1482 Riesling
## 1483 Cabernet Sauvignon
## 1484 Sauvignon Blanc
## 1485 Sauvignon Blanc
## 1486 Merlot
## 1487 Bordeaux-style Red Blend
## 1488 Pinot Noir
## 1489 Sagrantino
## 1490 Sangiovese
## 1491 Pinot Noir
## 1492 Pinot Grigio
## 1493 Pinot Noir
## 1494 Chardonnay
## 1495 Port
## 1496 Bordeaux-style Red Blend
## 1497 Chardonnay
## 1498 Pinot Grigio
## 1499 Pinot Grigio
## 1500 Cabernet Sauvignon
## 1501 Fiano
## 1502 Pinot Noir
## 1503 Pinot Noir
## 1504 Cabernet Sauvignon
## 1505 Pinot Noir
## 1506 Riesling
## 1507 Tannat
## 1508 Malbec
## 1509 Gamay
## 1510 Red Blend
## 1511 Merlot
## 1512 Red Blend
## 1513 Gamay
## 1514 Chardonnay
## 1515 Pinot Noir
## 1516 Cabernet Sauvignon
## 1517 Bordeaux-style Red Blend
## 1518 Tannat
## 1519 Malbec
## 1520 Cabernet Sauvignon
## 1521 Petit Manseng
## 1522 Red Blend
## 1523 Nero d'Avola
## 1524 Pinot Noir
## 1525 Red Blend
## 1526 Cabernet Sauvignon
## 1527 Rosé
## 1528 Portuguese White
## 1529 Rosé
## 1530 Chardonnay
## 1531 Chardonnay
## 1532 Red Blend
## 1533 Tempranillo
## 1534 Rosé
## 1535 Chenin Blanc
## 1536 Bordeaux-style White Blend
## 1537 Bordeaux-style White Blend
## 1538 Rosé
## 1539 Rosé
## 1540 Syrah
## 1541 Red Blend
## 1542 Rosé
## 1543 Portuguese White
## 1544 Sauvignon Blanc
## 1545 Rosato
## 1546 Pansa Blanca
## 1547 Chardonnay
## 1548 Portuguese Red
## 1549 Carmenère
## 1550 Sauvignon Blanc
## 1551 Rosato
## 1552 Portuguese White
## 1553 Portuguese Red
## 1554 Rosato
## 1555 Chardonnay
## 1556 Portuguese White
## 1557 Cabernet Sauvignon
## 1558 Pinot Noir
## 1559 Bordeaux-style Red Blend
## 1560 Bordeaux-style Red Blend
## 1561 Bordeaux-style Red Blend
## 1562 Red Blend
## 1563 Bordeaux-style Red Blend
## 1564 Red Blend
## 1565 Red Blend
## 1566 Cabernet Sauvignon
## 1567 Bordeaux-style Red Blend
## 1568 Pinot Noir
## 1569 Bordeaux-style Red Blend
## 1570 Bordeaux-style Red Blend
## 1571 Red Blend
## 1572 Bordeaux-style Red Blend
## 1573 Bordeaux-style Red Blend
## 1574 Bordeaux-style Red Blend
## 1575 Cabernet Sauvignon
## 1576 Bordeaux-style Red Blend
## 1577 Bordeaux-style Red Blend
## 1578 Pinot Noir
## 1579 Bordeaux-style Red Blend
## 1580 Pinot Noir
## 1581 Bordeaux-style Red Blend
## 1582 Bordeaux-style Red Blend
## 1583 Bordeaux-style Red Blend
## 1584 Syrah
## 1585 Chardonnay
## 1586 Chardonnay
## 1587 Syrah
## 1588 Chardonnay
## 1589 Nero d'Avola
## 1590 Bordeaux-style Red Blend
## 1591 Bordeaux-style Red Blend
## 1592 Riesling
## 1593 Bordeaux-style White Blend
## 1594 Sauvignon Blanc
## 1595 Bordeaux-style White Blend
## 1596 Bordeaux-style Red Blend
## 1597 Bordeaux-style Red Blend
## 1598 Bordeaux-style Red Blend
## 1599 Red Blend
## 1600 Bordeaux-style Red Blend
## 1601 Pinot Noir
## 1602 Chardonnay
## 1603 Riesling
## 1604 Rosato
## 1605 Cabernet Franc
## 1606 Sauvignon Blanc
## 1607 Riesling
## 1608 Chardonnay
## 1609 Chardonnay
## 1610 Nero d'Avola
## 1611 Albariño
## 1612 Bordeaux-style Red Blend
## 1613 Bordeaux-style White Blend
## 1614 Bordeaux-style Red Blend
## 1615 Sauvignon Blanc
## 1616 White Blend
## 1617 Chardonnay
## 1618 Rosé
## 1619 Torrontés
## 1620 Portuguese White
## 1621 Portuguese White
## 1622 Rosé
## 1623 Torrontés
## 1624 Sauvignon Blanc
## 1625 Pinot Noir
## 1626 White Blend
## 1627 Malbec
## 1628 Chardonnay
## 1629 Sauvignon Blanc
## 1630 Portuguese Red
## 1631 Portuguese Red
## 1632 Muskat Ottonel
## 1633 Merlot
## 1634 Portuguese Red
## 1635 Rosé
## 1636 Pinot Noir
## 1637 Chardonnay
## 1638 Chardonnay
## 1639 Pinot Noir
## 1640 Portuguese Red
## 1641 Portuguese Red
## 1642 Red Blend
## 1643 Nebbiolo
## 1644 Chardonnay
## 1645 Cabernet Sauvignon
## 1646 Red Blend
## 1647 Viognier
## 1648 Red Blend
## 1649 Malbec
## 1650 Sauvignon Blanc-Semillon
## 1651 Rosé
## 1652 Merlot
## 1653 Pinot Gris
## 1654 Portuguese Red
## 1655 Portuguese Red
## 1656 Portuguese Red
## 1657 Bordeaux-style Red Blend
## 1658 Bordeaux-style Red Blend
## 1659 Bordeaux-style White Blend
## 1660 Claret
## 1661 Claret
## 1662 Cabernet Sauvignon
## 1663 Montepulciano
## 1664 Portuguese White
## 1665 Chardonnay
## 1666 White Blend
## 1667 Semillon-Sauvignon Blanc
## 1668 Cabernet Sauvignon
## 1669 Montepulciano
## 1670 Bordeaux-style Red Blend
## 1671 Bordeaux-style Red Blend
## 1672 Merlot
## 1673 Syrah
## 1674 Marsanne
## 1675 Rhône-style White Blend
## 1676 Syrah
## 1677 Red Blend
## 1678 Pinot Noir
## 1679 Chardonnay
## 1680 Cabernet Franc
## 1681 Malbec
## 1682 Austrian Red Blend
## 1683 Sangiovese Grosso
## 1684 Pinot Gris
## 1685 Grüner Veltliner
## 1686 Red Blend
## 1687 Sauvignon Blanc
## 1688 Syrah
## 1689 Cabernet Sauvignon
## 1690 Grenache
## 1691 White Blend
## 1692 Rhône-style White Blend
## 1693 Grenache Blanc
## 1694 Grüner Veltliner
## 1695 Cabernet Sauvignon
## 1696 Malbec
## 1697 Merlot
## 1698 Chardonnay
## 1699 Syrah
## 1700 Red Blend
## 1701 Bical
## 1702 Sauvignon
## 1703 Fumé Blanc
## 1704 Chardonnay
## 1705 Cabernet Sauvignon
## 1706 Sangiovese
## 1707 Chardonnay
## 1708 Chardonnay
## 1709 Verdejo
## 1710 Red Blend
## 1711 Viognier
## 1712 Verdejo
## 1713 Shiraz-Viognier
## 1714 Sangiovese Grosso
## 1715 Portuguese Red
## 1716 Shiraz
## 1717 Chardonnay
## 1718 Touriga Nacional
## 1719 Moscatel
## 1720 Pinot Grigio
## 1721 Verdejo
## 1722 White Blend
## 1723 White Blend
## 1724 Shiraz
## 1725 Pinot Noir
## 1726 Chardonnay
## 1727 Tempranillo
## 1728 Bordeaux-style White Blend
## 1729 Pinot Noir
## 1730 Chardonnay
## 1731 Chardonnay
## 1732 Rhône-style Red Blend
## 1733 Sangiovese
## 1734 Bordeaux-style Red Blend
## 1735 Syrah
## 1736 Syrah
## 1737 Sangiovese
## 1738 Chardonnay
## 1739 Sangiovese
## 1740 Syrah
## 1741 Red Blend
## 1742 Pinot Noir
## 1743 Zinfandel
## 1744 Sangiovese
## 1745 Bordeaux-style Red Blend
## 1746 Bordeaux-style Red Blend
## 1747 Bordeaux-style White Blend
## 1748 Bordeaux-style Red Blend
## 1749 Bordeaux-style Red Blend
## 1750 Chardonnay
## 1751 Bordeaux-style Red Blend
## 1752 Sparkling Blend
## 1753 Riesling
## 1754 Tempranillo Blend
## 1755 Bordeaux-style Red Blend
## 1756 Sparkling Blend
## 1757 Rhône-style Red Blend
## 1758 Sauvignon Blanc
## 1759 Pinot Noir
## 1760 Red Blend
## 1761 Bordeaux-style Red Blend
## 1762 Riesling
## 1763 Malbec
## 1764 Riesling
## 1765 Garnacha
## 1766 Sauvignon Blanc
## 1767 Rosé
## 1768 Bordeaux-style Red Blend
## 1769 Bordeaux-style Red Blend
## 1770 Syrah
## 1771 Bordeaux-style Red Blend
## 1772 Red Blend
## 1773 Rosé
## 1774 Carmenère
## 1775 Meritage
## 1776 Bordeaux-style Red Blend
## 1777 Bordeaux-style Red Blend
## 1778 Merlot
## 1779 Bordeaux-style Red Blend
## 1780 Bordeaux-style Red Blend
## 1781 Rhône-style Red Blend
## 1782 Sangiovese
## 1783 Red Blend
## 1784 Bordeaux-style Red Blend
## 1785 Bordeaux-style Red Blend
## 1786 Bordeaux-style Red Blend
## 1787 Riesling
## 1788 Pinot Noir
## 1789 Pinot Noir
## 1790 Chardonnay
## 1791 Malbec
## 1792 Pinot Noir
## 1793 Syrah
## 1794 Sangiovese
## 1795 Chardonnay
## 1796 Pinot Noir
## 1797 Mourvèdre
## 1798 Sangiovese
## 1799 Nebbiolo
## 1800 Bordeaux-style Red Blend
## 1801 Bordeaux-style Red Blend
## 1802 Portuguese Red
## 1803 Gewürztraminer
## 1804 Chardonnay
## 1805 Gamay
## 1806 Chardonnay
## 1807 Xarel-lo
## 1808 Champagne Blend
## 1809 Chardonnay
## 1810 Red Blend
## 1811 Verdejo
## 1812 Pinot Noir
## 1813 Portuguese White
## 1814 Sauvignon Blanc
## 1815 White Blend
## 1816 Malbec
## 1817 Sparkling Blend
## 1818 Pinot Noir
## 1819 Gamay
## 1820 Rosé
## 1821 Gamay
## 1822 Portuguese White
## 1823 Rosado
## 1824 Gamay
## 1825 Gamay
## 1826 Cabernet Sauvignon
## 1827 Gamay
## 1828 Red Blend
## 1829 Red Blend
## 1830 Chardonnay
## 1831 Pinot Noir
## 1832 Cabernet Sauvignon
## 1833 Red Blend
## 1834 Viura-Chardonnay
## 1835 Sauvignon Blanc
## 1836 Tempranillo Blend
## 1837 Riesling
## 1838 Pinot Gris
## 1839 Cabernet Sauvignon
## 1840 Cabernet Sauvignon
## 1841 Cabernet Sauvignon
## 1842 Red Blend
## 1843 Sauvignon Blanc
## 1844 White Blend
## 1845 Cabernet Sauvignon
## 1846 Albariño
## 1847 Verdejo
## 1848 Garnacha
## 1849 Garnacha
## 1850 Zinfandel
## 1851 Chardonnay
## 1852 Red Blend
## 1853 Gewürztraminer
## 1854 Syrah
## 1855 Garnacha
## 1856 Malbec
## 1857 Cabernet Sauvignon
## 1858 Chardonnay
## 1859 G-S-M
## 1860 Red Blend
## 1861 Bordeaux-style Red Blend
## 1862 Bordeaux-style Red Blend
## 1863 Bordeaux-style Red Blend
## 1864 Cabernet Sauvignon
## 1865 Red Blend
## 1866 Red Blend
## 1867 Cabernet Sauvignon
## 1868 Syrah-Viognier
## 1869 Red Blend
## 1870 Merlot
## 1871 Portuguese Red
## 1872 Bordeaux-style Red Blend
## 1873 Bordeaux-style Red Blend
## 1874 Rhône-style Red Blend
## 1875 Rhône-style Red Blend
## 1876 Syrah
## 1877 Sangiovese Grosso
## 1878 Syrah
## 1879 Sparkling Blend
## 1880 Bordeaux-style Red Blend
## 1881 Bordeaux-style Red Blend
## 1882 Red Blend
## 1883 Syrah
## 1884 Chardonnay
## 1885 Baga
## 1886 Red Blend
## 1887 Shiraz
## 1888 Cabernet Sauvignon
## 1889 Red Blend
## 1890 Chardonnay
## 1891 Cabernet Sauvignon
## 1892 Cabernet Sauvignon
## 1893 Red Blend
## 1894 Chardonnay
## 1895 Cabernet Sauvignon
## 1896 Greco
## 1897 Chardonnay
## 1898 Cabernet Sauvignon
## 1899 Bordeaux-style Red Blend
## 1900 Cabernet Sauvignon-Merlot
## 1901 Pinot Gris
## 1902 Chardonnay
## 1903 Malbec
## 1904 Cabernet Sauvignon
## 1905 Fiano
## 1906 Cabernet Sauvignon
## 1907 Red Blend
## 1908 Malvasia Bianca
## 1909 Cabernet Sauvignon
## 1910 Cabernet Sauvignon
## 1911 Chardonnay
## 1912 Grenache Blanc
## 1913 Pinot Noir
## 1914 Riesling
## 1915 Syrah
## 1916 Red Blend
## 1917 Pinot Noir
## 1918 Sauvignon Blanc
## 1919 Bordeaux-style Red Blend
## 1920 Bordeaux-style Red Blend
## 1921 Bordeaux-style Red Blend
## 1922 Tempranillo
## 1923 Gelber Muskateller
## 1924 Bordeaux-style Red Blend
## 1925 Merlot
## 1926 Nebbiolo
## 1927 Merlot
## 1928 Bordeaux-style Red Blend
## 1929 Barbera
## 1930 Cabernet Sauvignon
## 1931 Chardonnay
## 1932 Chenin Blanc
## 1933 Nebbiolo
## 1934 Bordeaux-style Red Blend
## 1935 Shiraz
## 1936 Pinot Noir
## 1937 Cabernet Sauvignon
## 1938 Red Blend
## 1939 Syrah
## 1940 Chardonnay
## 1941 Bordeaux-style Red Blend
## 1942 Grüner Veltliner
## 1943 Merlot
## 1944 Chardonnay
## 1945 Malbec-Merlot
## 1946 Cabernet Sauvignon
## 1947 Zinfandel
## 1948 Red Blend
## 1949 Pinot Noir
## 1950 Cabernet Sauvignon
## 1951 Bordeaux-style Red Blend
## 1952 Sauvignon Blanc
## 1953 Sauvignon Blanc
## 1954 Bordeaux-style Red Blend
## 1955 Cabernet Sauvignon
## 1956 Cabernet Sauvignon
## 1957 Chardonnay
## 1958 Gamay
## 1959 Merlot
## 1960 White Blend
## 1961 Vermentino
## 1962 White Blend
## 1963 Pinot Noir
## 1964 Cabernet Franc
## 1965 Gamay
## 1966 Pinot Noir
## 1967 Pinot Noir
## 1968 Primitivo
## 1969 Bordeaux-style Red Blend
## 1970 Bordeaux-style Red Blend
## 1971 Gamay
## 1972 Bordeaux-style White Blend
## 1973 Red Blend
## 1974 Marsanne-Roussanne
## 1975 Pinot Noir
## 1976 Primitivo
## 1977 Malbec
## 1978 Negroamaro
## 1979 Greco
## 1980 Chardonnay
## 1981 Pinot Noir
## 1982 Nero d'Avola
## 1983 Chardonnay
## 1984 Syrah
## 1985 Pinot Noir
## 1986 Rhône-style Red Blend
## 1987 Gamay
## 1988 Syrah
## 1989 Monastrell-Syrah
## 1990 Chardonnay
## 1991 Riesling
## 1992 Malbec-Tannat
## 1993 Malbec-Cabernet Franc
## 1994 Cabernet Sauvignon
## 1995 Chardonnay
## 1996 Chardonnay
## 1997 Pinot Noir
## 1998 Nero d'Avola
## 1999 Pinot Gris
## 2000 Gewürztraminer
## 2001 Inzolia
## 2002 Syrah
## 2003 Cabernet Sauvignon
## 2004 Pinot Blanc
## 2005 Pinot Noir
## 2006 Portuguese Sparkling
## 2007 Rosé
## 2008 Gewürztraminer
## 2009 Red Blend
## 2010 Gewürztraminer
## 2011 Gewürztraminer
## 2012 Pinot Noir
## 2013 Moscato
## 2014 Gewürztraminer
## 2015 Verdejo
## 2016 Pinot Gris
## 2017 Pinot Gris
## 2018 Portuguese White
## 2019 Red Blend
## 2020 Pinot Noir
## 2021 Petite Sirah
## 2022 Cabernet Sauvignon
## 2023 Turbiana
## 2024 Refosco
## 2025 Chardonnay
## 2026 Red Blend
## 2027 Chardonnay
## 2028 Bordeaux-style Red Blend
## 2029 Pinot Grigio
## 2030 Turbiana
## 2031 Red Blend
## 2032 Pinot Noir
## 2033 Portuguese Red
## 2034 Portuguese Red
## 2035 Cabernet Sauvignon
## 2036 Rhône-style Red Blend
## 2037 White Blend
## 2038 Pinot Bianco
## 2039 Bordeaux-style Red Blend
## 2040 Nebbiolo
## 2041 Champagne Blend
## 2042 Champagne Blend
## 2043 Syrah
## 2044 Nebbiolo
## 2045 Nebbiolo
## 2046 Nebbiolo
## 2047 Nebbiolo
## 2048 Nebbiolo
## 2049 Chardonnay
## 2050 Riesling
## 2051 Riesling
## 2052 Grüner Veltliner
## 2053 Cabernet Sauvignon
## 2054 Cabernet Sauvignon
## 2055 Nebbiolo
## 2056 Nebbiolo
## 2057 Nebbiolo
## 2058 Nebbiolo
## 2059 Nebbiolo
## 2060 Nebbiolo
## 2061 Nebbiolo
## 2062 Nebbiolo
## 2063 Sauvignon Blanc
## 2064 Chardonnay
## 2065 Pinot Noir
## 2066 Gewürztraminer
## 2067 Rhône-style Red Blend
## 2068 Cabernet Sauvignon
## 2069 Cabernet Sauvignon
## 2070 Cabernet Sauvignon
## 2071 Pinot Noir
## 2072 Bordeaux-style Red Blend
## 2073 Corvina, Rondinella, Molinara
## 2074 Red Blend
## 2075 Red Blend
## 2076 Nerello Mascalese
## 2077 Bordeaux-style Red Blend
## 2078 Syrah
## 2079 Sauvignon Blanc
## 2080 Champagne Blend
## 2081 Chardonnay
## 2082 Pinot Noir
## 2083 Cabernet Sauvignon
## 2084 Malbec
## 2085 Carmenère
## 2086 Petite Sirah
## 2087 Pinot Noir
## 2088 Sauvignon Blanc
## 2089 Grenache
## 2090 Champagne Blend
## 2091 Red Blend
## 2092 Portuguese White
## 2093 Pinot Grigio
## 2094 Pinot Grigio
## 2095 Alvarinho
## 2096 Chardonnay
## 2097 Pinot Grigio
## 2098 Zinfandel
## 2099 White Blend
## 2100 Pinot Noir
## 2101 Chardonnay
## 2102 Cabernet Franc
## 2103 Manzoni
## 2104 Pinot Grigio
## 2105 Aragonês
## 2106 Carmenère
## 2107 Pinot Grigio
## 2108 Pinot Noir
## 2109 Chardonnay
## 2110 Red Blend
## 2111 Pinot Bianco
## 2112 White Blend
## 2113 Rosé
## 2114 Bordeaux-style Red Blend
## 2115 Bordeaux-style Red Blend
## 2116 Red Blend
## 2117 Merlot
## 2118 Riesling
## 2119 Red Blend
## 2120 Barbera
## 2121 Cabernet Franc
## 2122 Bordeaux-style Red Blend
## 2123 Bordeaux-style Red Blend
## 2124 Bordeaux-style Red Blend
## 2125 Bordeaux-style Red Blend
## 2126 Bordeaux-style Red Blend
## 2127 Chardonnay
## 2128 Merlot
## 2129 Merlot
## 2130 Nebbiolo
## 2131 Sauvignon Blanc
## 2132 Chardonnay
## 2133 Bordeaux-style Red Blend
## 2134 Barbera
## 2135 Montepulciano
## 2136 Sparkling Blend
## 2137 Zinfandel
## 2138 Chardonnay
## 2139 Tempranillo
## 2140 Montepulciano
## 2141 Tempranillo
## 2142 Cabernet Sauvignon
## 2143 Bordeaux-style Red Blend
## 2144 Gamay
## 2145 Barbera
## 2146 Rosé
## 2147 Carmenère
## 2148 Montepulciano
## 2149 Montepulciano
## 2150 Portuguese Red
## 2151 Pinot Grigio
## 2152 Tempranillo
## 2153 Merlot
## 2154 Red Blend
## 2155 Monastrell-Syrah
## 2156 Viognier
## 2157 Viognier
## 2158 Gamay
## 2159 Portuguese Red
## 2160 Montepulciano
## 2161 Montepulciano
## 2162 Riesling
## 2163 Albariño
## 2164 Pinot Noir
## 2165 Riesling
## 2166 Riesling
## 2167 Agiorgitiko
## 2168 Rosé
## 2169 Chardonnay
## 2170 Vermentino
## 2171 Pinot Blanc
## 2172 Nebbiolo
## 2173 Sauvignon Blanc
## 2174 Nebbiolo
## 2175 Muscat
## 2176 Rosé
## 2177 Rosé
## 2178 Pinot Noir
## 2179 Sauvignon Blanc
## 2180 Sparkling Blend
## 2181 Rosé
## 2182 Tempranillo Blend
## 2183 Bordeaux-style Red Blend
## 2184 Malagousia
## 2185 Sangiovese
## 2186 Assyrtiko
## 2187 Barbera
## 2188 Chenin Blanc
## 2189 Rosé
## 2190 Cabernet Sauvignon
## 2191 Chardonnay
## 2192 Syrah
## 2193 Cabernet Sauvignon
## 2194 Rosé
## 2195 Carmenère
## 2196 Sauvignon Blanc
## 2197 Teroldego
## 2198 Petit Verdot
## 2199 Red Blend
## 2200 Riesling
## 2201 Cabernet Sauvignon
## 2202 Pinot Noir
## 2203 Petite Sirah
## 2204 Red Blend
## 2205 Moscato
## 2206 Chardonnay
## 2207 Rhône-style Red Blend
## 2208 Pinot Gris
## 2209 Malbec
## 2210 Sangiovese
## 2211 Zinfandel
## 2212 Chardonnay
## 2213 Gewürztraminer
## 2214 Garganega
## 2215 Pinot Noir
## 2216 Chardonnay
## 2217 Pinot Gris
## 2218 Riesling
## 2219 Red Blend
## 2220 Pinot Noir
## 2221 Viognier
## 2222 Pinot Noir
## 2223 Merlot
## 2224 Cabernet Sauvignon
## 2225 Sangiovese Grosso
## 2226 Sangiovese Grosso
## 2227 Sangiovese Grosso
## 2228 Pinot Noir
## 2229 Sangiovese Grosso
## 2230 Pinot Noir
## 2231 Sangiovese Grosso
## 2232 Pinot Noir
## 2233 Sangiovese Grosso
## 2234 Red Blend
## 2235 Sangiovese Grosso
## 2236 Pinot Noir
## 2237 Sangiovese Grosso
## 2238 Sangiovese Grosso
## 2239 Pinot Noir
## 2240 Sangiovese Grosso
## 2241 Sangiovese Grosso
## 2242 Pinot Noir
## 2243 Pinot Noir
## 2244 Sangiovese Grosso
## 2245 Chardonnay
## 2246 Chardonnay
## 2247 Chardonnay
## 2248 Sangiovese Grosso
## 2249 Sangiovese Grosso
## 2250 Sangiovese Grosso
## 2251 Pinot Noir
## 2252 Cabernet Sauvignon
## 2253 Cabernet Sauvignon
## 2254 Cabernet Sauvignon
## 2255 Cabernet Sauvignon
## 2256 Cabernet Sauvignon
## 2257 Shiraz
## 2258 Ruché
## 2259 Bordeaux-style Red Blend
## 2260 Bordeaux-style Red Blend
## 2261 Barbera
## 2262 Bordeaux-style Red Blend
## 2263 Nebbiolo
## 2264 Pinot Nero
## 2265 Bordeaux-style Red Blend
## 2266 Grüner Veltliner
## 2267 Cabernet Sauvignon
## 2268 Zinfandel
## 2269 Pinot Noir
## 2270 Zinfandel
## 2271 Chardonnay
## 2272 Meritage
## 2273 Welschriesling
## 2274 Portuguese White
## 2275 Sauvignon Blanc
## 2276 Red Blend
## 2277 Red Blend
## 2278 Malbec
## 2279 Red Blend
## 2280 Pinot Noir
## 2281 Zinfandel
## 2282 Viognier
## 2283 Red Blend
## 2284 Chardonnay
## 2285 Albariño
## 2286 Tinta de Toro
## 2287 Cabernet Sauvignon
## 2288 Red Blend
## 2289 Cabernet Moravia
## 2290 Sauvignon Blanc
## 2291 Red Blend
## 2292 Malbec
## 2293 Sauvignon Blanc
## 2294 Prugnolo Gentile
## 2295 Riesling
## 2296 Sangiovese Grosso
## 2297 Sangiovese
## 2298 Syrah
## 2299 Red Blend
## 2300 Rieslaner
## 2301 Riesling
## 2302 Cabernet Sauvignon
## 2303 Cabernet Sauvignon-Merlot
## 2304 Chardonnay
## 2305 Syrah
## 2306 Sangiovese Grosso
## 2307 Bordeaux-style Red Blend
## 2308 Sangiovese Grosso
## 2309 Merlot
## 2310 Tempranillo Blend
## 2311 Riesling
## 2312 Riesling
## 2313 Chardonnay
## 2314 Sangiovese
## 2315 Sangiovese Grosso
## 2316 Sangiovese Grosso
## 2317 Cabernet Sauvignon
## 2318 Sangiovese
## 2319 Sangiovese Grosso
## 2320 Rosé
## 2321 Bordeaux-style Red Blend
## 2322 Bordeaux-style Red Blend
## 2323 Bordeaux-style Red Blend
## 2324 Bordeaux-style Red Blend
## 2325 Sparkling Blend
## 2326 White Blend
## 2327 Sauvignon Blanc
## 2328 Cabernet Sauvignon
## 2329 Chardonnay
## 2330 Barbera
## 2331 Riesling
## 2332 Red Blend
## 2333 Chenin Blanc
## 2334 Syrah
## 2335 Monastrell
## 2336 Gewürztraminer
## 2337 Cabernet Sauvignon
## 2338 Chardonnay
## 2339 Malbec
## 2340 Chardonnay
## 2341 Merlot
## 2342 Malbec
## 2343 Traminette
## 2344 Chardonnay
## 2345 Rosé
## 2346 Pinot Gris
## 2347 Chardonnay
## 2348 Pinot Noir
## 2349 Merlot
## 2350 Zinfandel
## 2351 Red Blend
## 2352 Malbec
## 2353 Merlot
## 2354 Chardonnay
## 2355 Pinot Noir
## 2356 Syrah
## 2357 Red Blend
## 2358 Zinfandel
## 2359 Grüner Veltliner
## 2360 Chardonnay
## 2361 Pinot Noir
## 2362 Pinot Noir
## 2363 Red Blend
## 2364 Cabernet Sauvignon
## 2365 Red Blend
## 2366 Traminer
## 2367 Malbec
## 2368 Cabernet Sauvignon
## 2369 Gamay
## 2370 Red Blend
## 2371 Riesling
## 2372 Riesling
## 2373 Red Blend
## 2374 Red Blend
## 2375 White Blend
## 2376 Bordeaux-style Red Blend
## 2377 Red Blend
## 2378 Chardonnay
## 2379 Red Blend
## 2380 Chambourcin
## 2381 Sparkling Blend
## 2382 Portuguese White
## 2383 Portuguese Red
## 2384 Portuguese Red
## 2385 Portuguese Red
## 2386 Zinfandel
## 2387 Pinot Noir
## 2388 Malbec
## 2389 Rosé
## 2390 Sauvignon Blanc
## 2391 Melon
## 2392 Portuguese Red
## 2393 Portuguese Red
## 2394 Port
## 2395 Rosé
## 2396 Pinot Noir
## 2397 Portuguese Red
## 2398 Portuguese White
## 2399 Rosé
## 2400 Rhône-style White Blend
## 2401 Pinot Noir
## 2402 Nero d'Avola
## 2403 Chardonnay
## 2404 Chardonnay
## 2405 Chardonnay
## 2406 Pinot Noir
## 2407 Sparkling Blend
## 2408 Chardonnay
## 2409 Chardonnay
## 2410 Grillo
## 2411 Pinot Noir
## 2412 Nero di Troia
## 2413 Monica
## 2414 Bordeaux-style White Blend
## 2415 Red Blend
## 2416 Rhône-style White Blend
## 2417 Sangiovese
## 2418 Cabernet Sauvignon
## 2419 Sauvignon Blanc
## 2420 Cabernet Sauvignon
## 2421 Red Blend
## 2422 Gamay
## 2423 Bordeaux-style Red Blend
## 2424 Pinot Blanc
## 2425 Cabernet Sauvignon
## 2426 White Blend
## 2427 Red Blend
## 2428 Gamay
## 2429 Rosé
## 2430 Pinot Noir
## 2431 Pinot Gris
## 2432 Gamay
## 2433 Malbec
## 2434 Merlot
## 2435 Rosato
## 2436 Pinot Noir
## 2437 Viognier
## 2438 Austrian Red Blend
## 2439 Red Blend
## 2440 Pinot Noir
## 2441 Sauvignon Blanc
## 2442 Cabernet Sauvignon
## 2443 Pinot Noir
## 2444 Pinot Noir
## 2445 Lambrusco di Sorbara
## 2446 Red Blend
## 2447 Zinfandel
## 2448 Sagrantino
## 2449 Cesanese
## 2450 Riesling
## 2451 Sangiovese
## 2452 Cabernet Sauvignon
## 2453 G-S-M
## 2454 Bordeaux-style Red Blend
## 2455 Syrah
## 2456 Merlot
## 2457 Chardonnay
## 2458 Meritage
## 2459 White Blend
## 2460 Sangiovese
## 2461 Sémillon
## 2462 Bordeaux-style Red Blend
## 2463 Bordeaux-style Red Blend
## 2464 Bordeaux-style Red Blend
## 2465 Bordeaux-style Red Blend
## 2466 Bordeaux-style Red Blend
## 2467 Bordeaux-style Red Blend
## 2468 Bordeaux-style Red Blend
## 2469 Sangiovese
## 2470 Sherry
## 2471 Tempranillo Blend
## 2472 Viognier
## 2473 Bordeaux-style Red Blend
## 2474 Pinot Noir
## 2475 Zinfandel
## 2476 Cabernet Sauvignon
## 2477 Zinfandel
## 2478 Cabernet Sauvignon
## 2479 G-S-M
## 2480 Chardonnay
## 2481 Red Blend
## 2482 Riesling
## 2483 Merlot
## 2484 Red Blend
## 2485 Riesling
## 2486 Red Blend
## 2487 White Blend
## 2488 Cabernet Sauvignon
## 2489 Cabernet Franc
## 2490 Chardonnay
## 2491 Riesling
## 2492 Gewürztraminer
## 2493 Pinot Noir
## 2494 Cabernet Sauvignon
## 2495 Carmenère
## 2496 Red Blend
## 2497 Garganega
## 2498 White Blend
## 2499 Barbera
## 2500 Riesling
## 2501 Pinot Gris
## 2502 Feteasca Neagra
## 2503 Syrah
## 2504 Cabernet Sauvignon
## 2505 Carmenère
## 2506 Syrah
## 2507 Rhône-style Red Blend
## 2508 Chardonnay
## 2509 Tempranillo Blend
## 2510 Nebbiolo
## 2511 Nebbiolo
## 2512 Nebbiolo
## 2513 Nebbiolo
## 2514 Riesling
## 2515 Nebbiolo
## 2516 Chardonnay
## 2517 Nebbiolo
## 2518 Shiraz-Viognier
## 2519 Nebbiolo
## 2520 Nebbiolo
## 2521 Nebbiolo
## 2522 Nebbiolo
## 2523 Nebbiolo
## 2524 Nebbiolo
## 2525 Nebbiolo
## 2526 Nebbiolo
## 2527 Lagrein
## 2528 Merlot
## 2529 Grüner Veltliner
## 2530 Gelber Muskateller
## 2531 Red Blend
## 2532 Tempranillo
## 2533 Pinot Noir
## 2534 Riesling
## 2535 Tinta Fina
## 2536 Red Blend
## 2537 Syrah
## 2538 Lagrein
## 2539 Red Blend
## 2540 Red Blend
## 2541 Red Blend
## 2542 Syrah
## 2543 Chardonnay
## 2544 Rosé
## 2545 Chardonnay
## 2546 Riesling
## 2547 Pinot Grigio
## 2548 St. Laurent
## 2549 Albariño
## 2550 Tempranillo
## 2551 Petite Sirah
## 2552 Malbec
## 2553 Chardonnay
## 2554 Rhône-style White Blend
## 2555 Pinot Noir
## 2556 Cabernet Sauvignon
## 2557 Pinot Noir
## 2558 Merlot
## 2559 Rosé
## 2560 Cabernet Sauvignon
## 2561 Sauvignon Blanc
## 2562 Rhône-style White Blend
## 2563 Red Blend
## 2564 Red Blend
## 2565 Grüner Veltliner
## 2566 Chardonnay
## 2567 Bordeaux-style Red Blend
## 2568 Cabernet Sauvignon
## 2569 Malbec
## 2570 Red Blend
## 2571 White Blend
## 2572 Rhône-style Red Blend
## 2573 Sémillon
## 2574 Aglianico
## 2575 Malbec
## 2576 Merlot
## 2577 Bordeaux-style Red Blend
## 2578 Malbec
## 2579 Syrah
## 2580 Syrah
## 2581 Marsanne-Viognier
## 2582 Syrah
## 2583 Touriga Nacional
## 2584 Pinot Noir
## 2585 Bordeaux-style White Blend
## 2586 Bordeaux-style Red Blend
## 2587 Grüner Veltliner
## 2588 Riesling
## 2589 Grüner Veltliner
## 2590 Riesling
## 2591 Malbec
## 2592 Nebbiolo
## 2593 Nebbiolo
## 2594 Merlot
## 2595 Shiraz
## 2596 Riesling
## 2597 Cabernet Sauvignon-Shiraz
## 2598 Riesling
## 2599 Shiraz
## 2600 Riesling
## 2601 Cabernet Sauvignon
## 2602 Chardonnay
## 2603 Rosé
## 2604 Red Blend
## 2605 Pinot Noir
## 2606 Cabernet Sauvignon
## 2607 Carmenère
## 2608 Cabernet Sauvignon
## 2609 Syrah
## 2610 Syrah
## 2611 Sauvignon Blanc
## 2612 Cabernet Sauvignon
## 2613 Syrah-Cabernet Sauvignon
## 2614 Riesling
## 2615 Sauvignon Blanc
## 2616 Chardonnay
## 2617 Gewürztraminer-Riesling
## 2618 Cabernet Sauvignon
## 2619 Tempranillo
## 2620 Red Blend
## 2621 Riesling
## 2622 Cabernet Sauvignon
## 2623 Viognier
## 2624 Pinot Grigio
## 2625 Chardonnay
## 2626 Sangiovese
## 2627 Zinfandel
## 2628 Chardonnay
## 2629 Pinot Gris
## 2630 Zinfandel
## 2631 Zinfandel
## 2632 Shiraz
## 2633 Merlot
## 2634 Touriga Nacional
## 2635 Red Blend
## 2636 Bordeaux-style White Blend
## 2637 Bordeaux-style Red Blend
## 2638 Bordeaux-style Red Blend
## 2639 Bordeaux-style Red Blend
## 2640 Petite Sirah
## 2641 Sparkling Blend
## 2642 Red Blend
## 2643 Chardonnay
## 2644 Pugnitello
## 2645 Syrah
## 2646 Chardonnay
## 2647 Red Blend
## 2648 Pinot Noir
## 2649 Cabernet Franc
## 2650 Merlot
## 2651 Syrah
## 2652 Cerceal
## 2653 Touriga Nacional Blend
## 2654 Portuguese Red
## 2655 Red Blend
## 2656 Bordeaux-style Red Blend
## 2657 Bordeaux-style Red Blend
## 2658 Bordeaux-style Red Blend
## 2659 Bordeaux-style Red Blend
## 2660 Sangiovese
## 2661 Red Blend
## 2662 Red Blend
## 2663 Zinfandel
## 2664 Bordeaux-style Red Blend
## 2665 Chardonnay
## 2666 Austrian white blend
## 2667 Red Blend
## 2668 Sparkling Blend
## 2669 Cabernet Franc
## 2670 Rhône-style Red Blend
## 2671 Cabernet Sauvignon
## 2672 Gamay
## 2673 Pinot Noir
## 2674 Cabernet Franc
## 2675 Rhône-style Red Blend
## 2676 Cabernet Sauvignon
## 2677 Pinot Noir
## 2678 Sémillon
## 2679 Semillon-Sauvignon Blanc
## 2680 Red Blend
## 2681 Chardonnay
## 2682 Pinot Noir
## 2683 Pinot Noir
## 2684 Tempranillo
## 2685 Red Blend
## 2686 White Blend
## 2687 Cabernet Sauvignon
## 2688 Chardonnay
## 2689 Cabernet Sauvignon
## 2690 Sparkling Blend
## 2691 Cabernet Sauvignon
## 2692 Pinot Grigio
## 2693 Cabernet Sauvignon
## 2694 Chardonnay
## 2695 Merlot
## 2696 Pinot Noir
## 2697 Fumé Blanc
## 2698 Pinot Noir
## 2699 Sauvignon Blanc
## 2700 Cabernet Sauvignon
## 2701 Semillon-Sauvignon Blanc
## 2702 Pinot Noir
## 2703 Pinot Grigio
## 2704 Merlot
## 2705 Red Blend
## 2706 Chardonnay
## 2707 Pinot Noir
## 2708 Cabernet Sauvignon
## 2709 Chardonnay
## 2710 Pinot Noir
## 2711 Pinot Noir
## 2712 Pinot Noir
## 2713 Tocai
## 2714 Cabernet Franc
## 2715 Pinot Gris
## 2716 Chardonnay
## 2717 Garganega
## 2718 Pinot Grigio
## 2719 Syrah
## 2720 Merlot
## 2721 Pinot Blanc
## 2722 Rosé
## 2723 Chardonnay
## 2724 Rosé
## 2725 Viura
## 2726 Sauvignon
## 2727 Aglianico
## 2728 Zinfandel
## 2729 Cabernet Sauvignon
## 2730 Pinot Blanc
## 2731 Fiano
## 2732 Chardonnay
## 2733 Pinot Noir
## 2734 Cabernet Franc
## 2735 Chardonnay
## 2736 Merlot
## 2737 Garnacha
## 2738 Cabernet Sauvignon
## 2739 Merlot
## 2740 Pinot Blanc
## 2741 Sauvignon Blanc
## 2742 Pinot Noir
## 2743 Cabernet Sauvignon
## 2744 Tempranillo
## 2745 Rosé
## 2746 Rosé
## 2747 Greco
## 2748 Cabernet Sauvignon
## 2749 Pinot Grigio
## 2750 Merlot
## 2751 Chardonnay
## 2752 Rosé
## 2753 Tempranillo
## 2754 Chardonnay
## 2755 Merlot
## 2756 Pinot Noir
## 2757 Pinot Noir
## 2758 Garnacha
## 2759 Rosé
## 2760 Tempranillo Blend
## 2761 Merlot
## 2762 Cabernet Sauvignon
## 2763 Sauvignon Blanc
## 2764 Chardonnay
## 2765 Pinot Noir
## 2766 Cabernet Sauvignon
## 2767 Cabernet Sauvignon
## 2768 Red Blend
## 2769 Rosé
## 2770 Rosé
## 2771 Cabernet Sauvignon
## 2772 Chardonnay
## 2773 Carmenère
## 2774 Chardonnay
## 2775 Chardonnay
## 2776 Cabernet Sauvignon
## 2777 Chardonnay
## 2778 Sauvignon Blanc
## 2779 Pinot Noir
## 2780 Cabernet Sauvignon
## 2781 Portuguese Red
## 2782 Red Blend
## 2783 Rosé
## 2784 Pinot Noir
## 2785 Pinot Noir
## 2786 White Blend
## 2787 Chardonnay
## 2788 Portuguese White
## 2789 Portuguese Red
## 2790 Pinot Noir
## 2791 Red Blend
## 2792 Chardonnay
## 2793 Tinta Roriz
## 2794 Bordeaux-style Red Blend
## 2795 Zinfandel
## 2796 Chardonnay
## 2797 Chardonnay-Viognier
## 2798 Pinot Noir
## 2799 Zinfandel
## 2800 Portuguese White
## 2801 Red Blend
## 2802 Pinot Noir
## 2803 Pinot Noir
## 2804 White Blend
## 2805 Red Blend
## 2806 Sparkling Blend
## 2807 Tempranillo
## 2808 Syrah
## 2809 Merlot
## 2810 Sangiovese
## 2811 Chardonnay
## 2812 Malbec
## 2813 Zinfandel
## 2814 Tempranillo
## 2815 Red Blend
## 2816 Red Blend
## 2817 Rosé
## 2818 Red Blend
## 2819 Albariño
## 2820 Merlot
## 2821 Sangiovese
## 2822 Tempranillo Blend
## 2823 Red Blend
## 2824 Red Blend
## 2825 Bordeaux-style Red Blend
## 2826 Rosé
## 2827 Bordeaux-style White Blend
## 2828 Bordeaux-style Red Blend
## 2829 Bordeaux-style White Blend
## 2830 Bordeaux-style Red Blend
## 2831 Bordeaux-style White Blend
## 2832 Bordeaux-style White Blend
## 2833 Bordeaux-style Red Blend
## 2834 Red Blend
## 2835 Merlot
## 2836 Red Blend
## 2837 Gamay
## 2838 Sauvignon Blanc
## 2839 Cabernet Sauvignon
## 2840 Sangiovese
## 2841 Rosato
## 2842 Gamay
## 2843 Gamay
## 2844 Gamay
## 2845 Gamay
## 2846 Cabernet Sauvignon
## 2847 Red Blend
## 2848 Chardonnay
## 2849 Viognier
## 2850 Red Blend
## 2851 Red Blend
## 2852 Cabernet Franc
## 2853 Pinot Noir
## 2854 Red Blend
## 2855 Malbec
## 2856 Sangiovese
## 2857 Grenache
## 2858 Grenache
## 2859 Cabernet Sauvignon
## 2860 Merlot
## 2861 Red Blend
## 2862 Riesling
## 2863 Red Blend
## 2864 Merlot
## 2865 Tempranillo
## 2866 Pinot Noir
## 2867 Fernão Pires
## 2868 Bordeaux-style Red Blend
## 2869 Pinot Noir
## 2870 Cabernet Sauvignon
## 2871 Chardonnay
## 2872 Sauvignon Blanc
## 2873 Garganega
## 2874 Pinot Noir
## 2875 Pinot Meunier
## 2876 Petite Sirah
## 2877 Cabernet Franc-Cabernet Sauvignon
## 2878 Chardonnay
## 2879 Pinot Noir
## 2880 Merlot
## 2881 Petite Sirah
## 2882 Viognier
## 2883 Bordeaux-style Red Blend
## 2884 Pinot Noir
## 2885 Pinot Noir
## 2886 Grenache-Syrah
## 2887 G-S-M
## 2888 Pinot Noir
## 2889 Grenache
## 2890 Chenin Blanc
## 2891 Malbec
## 2892 Malbec
## 2893 Sparkling Blend
## 2894 Malbec
## 2895 Mencía
## 2896 Pinot Noir
## 2897 Pinot Noir
## 2898 Pinot Noir
## 2899 Red Blend
## 2900 Antão Vaz
## 2901 Sparkling Blend
## 2902 Tempranillo
## 2903 Rosé
## 2904 Sparkling Blend
## 2905 Sparkling Blend
## 2906 Sparkling Blend
## 2907 Pinot Noir
## 2908 Garnacha
## 2909 Chardonnay
## 2910 Chardonnay
## 2911 Pinot Noir
## 2912 Tempranillo
## 2913 Riesling
## 2914 Tempranillo Blend
## 2915 Chardonnay
## 2916 Pinot Noir
## 2917 Red Blend
## 2918 Pinot Noir
## 2919 Rosé
## 2920 Red Blend
## 2921 Port
## 2922 Portuguese White
## 2923 Seyval Blanc
## 2924 Syrah
## 2925 Sauvignon Blanc
## 2926 Cabernet Sauvignon
## 2927 Sauvignon Blanc
## 2928 Bordeaux-style Red Blend
## 2929 Cabernet Sauvignon
## 2930 Muscat Canelli
## 2931 Merlot
## 2932 Dolcetto
## 2933 Chardonnay
## 2934 Red Blend
## 2935 Chardonnay
## 2936 Tempranillo
## 2937 Zinfandel
## 2938 Viognier
## 2939 Rhône-style Red Blend
## 2940 Sangiovese
## 2941 Sauvignon Blanc
## 2942 Syrah
## 2943 Sauvignon Blanc
## 2944 Barbera
## 2945 Cabernet Franc
## 2946 Cabernet Sauvignon
## 2947 Riesling
## 2948 Sauvignon Blanc
## 2949 Malbec
## 2950 Cabernet Sauvignon
## 2951 Pinot Noir
## 2952 Pinot Noir
## 2953 Cabernet Sauvignon
## 2954 Cabernet Sauvignon
## 2955 Syrah
## 2956 Merlot
## 2957 Cabernet Merlot
## 2958 Syrah
## 2959 Cabernet Sauvignon
## 2960 Chardonnay
## 2961 Tempranillo
## 2962 Chardonnay
## 2963 Verdejo
## 2964 White Blend
## 2965 Sauvignon Blanc
## 2966 Cabernet Sauvignon
## 2967 White Blend
## 2968 Pinot Noir
## 2969 Zinfandel
## 2970 Barbera
## 2971 Tempranillo-Cabernet Sauvignon
## 2972 Cabernet Sauvignon-Merlot
## 2973 Rhône-style Red Blend
## 2974 Merlot
## 2975 Cabernet Sauvignon
## 2976 Bordeaux-style Red Blend
## 2977 Bordeaux-style Red Blend
## 2978 Merlot
## 2979 Bordeaux-style Red Blend
## 2980 Bordeaux-style Red Blend
## 2981 Pinot Noir
## 2982 Shiraz
## 2983 Shiraz
## 2984 Pinot Noir
## 2985 Red Blend
## 2986 Red Blend
## 2987 Zinfandel
## 2988 Lambrusco di Sorbara
## 2989 Riesling
## 2990 Rosé
## 2991 Zinfandel
## 2992 Pinot Noir
## 2993 Chardonnay
## 2994 Shiraz
## 2995 Chardonnay
## 2996 Cabernet Sauvignon
## 2997 Nebbiolo
## 2998 Champagne Blend
## 2999 Chardonnay
## 3000 Sparkling Blend
## 3001 Riesling
## 3002 Aglianico
## 3003 Red Blend
## 3004 Albariño
## 3005 Red Blend
## 3006 Bordeaux-style Red Blend
## 3007 Bordeaux-style Red Blend
## 3008 Cabernet Sauvignon
## 3009 Merlot
## 3010 Cabernet Sauvignon
## 3011 Grenache Blanc
## 3012 Sangiovese
## 3013 Tinta de Toro
## 3014 Syrah
## 3015 Gewürztraminer
## 3016 Red Blend
## 3017 Champagne Blend
## 3018 Zweigelt
## 3019 Bordeaux-style Red Blend
## 3020 Pinot Gris
## 3021 Pinot Noir
## 3022 Tempranillo
## 3023 Rhône-style Red Blend
## 3024 Sauvignon Blanc-Semillon
## 3025 Red Blend
## 3026 Grüner Veltliner
## 3027 Cabernet Sauvignon
## 3028 Tempranillo
## 3029 Petite Sirah
## 3030 Petite Sirah
## 3031 Cabernet Sauvignon
## 3032 Arinto
## 3033 Albariño
## 3034 Merlot
## 3035 Montepulciano
## 3036 Syrah
## 3037 Merlot
## 3038 Montepulciano
## 3039 Portuguese Red
## 3040 Portuguese Red
## 3041 Sparkling Blend
## 3042 Riesling
## 3043 Sangiovese
## 3044 Riesling
## 3045 Gamay
## 3046 Malbec
## 3047 Gamay
## 3048 Grenache Blanc
## 3049 Viognier
## 3050 Aragonez
## 3051 Red Blend
## 3052 Pinot Noir
## 3053 Red Blend
## 3054 Grenache
## 3055 Bordeaux-style Red Blend
## 3056 Barbera
## 3057 Cabernet Sauvignon
## 3058 Malbec
## 3059 Gamay
## 3060 Gewürztraminer
## 3061 Pinot Noir
## 3062 Cabernet Sauvignon
## 3063 Pinot Noir
## 3064 Pinot Noir
## 3065 Bordeaux-style White Blend
## 3066 Red Blend
## 3067 Roussanne
## 3068 Syrah
## 3069 Pinot Noir
## 3070 Pinot Noir
## 3071 Syrah
## 3072 Chardonnay
## 3073 Pinot Noir
## 3074 Pinot Noir
## 3075 Bordeaux-style Red Blend
## 3076 Bordeaux-style Red Blend
## 3077 Bordeaux-style Red Blend
## 3078 Bordeaux-style Red Blend
## 3079 Merlot-Cabernet Franc
## 3080 Syrah
## 3081 Shiraz-Viognier
## 3082 Sauvignon Blanc-Semillon
## 3083 Corvina, Rondinella, Molinara
## 3084 Corvina, Rondinella, Molinara
## 3085 Corvina, Rondinella, Molinara
## 3086 Corvina, Rondinella, Molinara
## 3087 Pinot Grigio
## 3088 Cabernet Sauvignon
## 3089 Corvina, Rondinella, Molinara
## 3090 Bordeaux-style Red Blend
## 3091 Corvina, Rondinella, Molinara
## 3092 Corvina, Rondinella, Molinara
## 3093 Chardonnay
## 3094 Cabernet Sauvignon
## 3095 Pinot Blanc
## 3096 Corvina, Rondinella, Molinara
## 3097 Red Blend
## 3098 Corvina, Rondinella, Molinara
## 3099 Verdejo
## 3100 Shiraz
## 3101 Syrah
## 3102 Bordeaux-style Red Blend
## 3103 Red Blend
## 3104 Pinot Noir
## 3105 Viognier
## 3106 Corvina, Rondinella, Molinara
## 3107 Corvina, Rondinella, Molinara
## 3108 Sparkling Blend
## 3109 Corvina, Rondinella, Molinara
## 3110 Pinot Gris
## 3111 Carmenère
## 3112 Bordeaux-style Red Blend
## 3113 Bordeaux-style Red Blend
## 3114 Syrah-Petite Sirah
## 3115 Grenache-Syrah
## 3116 Cabernet Sauvignon
## 3117 Pinot Noir
## 3118 Pinot Noir
## 3119 Cabernet Sauvignon
## 3120 Pinot Noir
## 3121 Malbec
## 3122 Red Blend
## 3123 Bordeaux-style Red Blend
## 3124 Chardonnay
## 3125 Touriga Nacional
## 3126 Pinot Blanc
## 3127 Claret
## 3128 Pinot Noir
## 3129 Chardonnay
## 3130 Primitivo
## 3131 Zinfandel
## 3132 Red Blend
## 3133 White Blend
## 3134 Bordeaux-style White Blend
## 3135 Bordeaux-style Red Blend
## 3136 Shiraz
## 3137 Malbec
## 3138 Sauvignon Blanc
## 3139 Grüner Veltliner
## 3140 Grüner Veltliner
## 3141 Pinot Noir
## 3142 Syrah
## 3143 Meritage
## 3144 Red Blend
## 3145 Pinot Noir
## 3146 Syrah
## 3147 Grüner Veltliner
## 3148 Merlot
## 3149 Torrontés
## 3150 Malbec
## 3151 Sauvignon Blanc
## 3152 Pinot Noir
## 3153 Cabernet Sauvignon
## 3154 Malbec
## 3155 Tempranillo
## 3156 Chardonnay
## 3157 Pinot Noir
## 3158 Malbec
## 3159 Malbec
## 3160 Cabernet Blend
## 3161 Muscat
## 3162 Glera
## 3163 Glera
## 3164 Pinot Gris
## 3165 Red Blend
## 3166 Malbec
## 3167 Glera
## 3168 Glera
## 3169 Glera
## 3170 Glera
## 3171 Glera
## 3172 Glera
## 3173 Glera
## 3174 Pinot Noir
## 3175 Bordeaux-style Red Blend
## 3176 Cabernet Sauvignon
## 3177 Riesling
## 3178 Riesling
## 3179 Bordeaux-style Red Blend
## 3180 Malbec
## 3181 Gamay
## 3182 Gamay
## 3183 Gamay
## 3184 Gamay
## 3185 Red Blend
## 3186 Red Blend
## 3187 Sparkling Blend
## 3188 Sauvignon Blanc
## 3189 Bordeaux-style Red Blend
## 3190 Rhône-style Red Blend
## 3191 Pinot Noir
## 3192 Gamay
## 3193 Cabernet Franc
## 3194 Viognier
## 3195 Pinot Noir
## 3196 Rhône-style Red Blend
## 3197 Sangiovese
## 3198 Cabernet Sauvignon
## 3199 Grüner Veltliner
## 3200 St. Laurent
## 3201 Gamay
## 3202 Merlot
## 3203 Grüner Veltliner
## 3204 Sangiovese
## 3205 Riesling
## 3206 Red Blend
## 3207 Cabernet Sauvignon
## 3208 Sangiovese
## 3209 Chardonnay
## 3210 Sparkling Blend
## 3211 Maturana
## 3212 Red Blend
## 3213 Syrah
## 3214 Red Blend
## 3215 Gewürztraminer
## 3216 Zinfandel
## 3217 Garnacha
## 3218 Red Blend
## 3219 Bordeaux-style Red Blend
## 3220 Rosé
## 3221 Bordeaux-style Red Blend
## 3222 Merlot
## 3223 Merlot
## 3224 Cabernet Sauvignon
## 3225 Tempranillo
## 3226 Cabernet Sauvignon
## 3227 Pecorino
## 3228 Chardonnay
## 3229 G-S-M
## 3230 Sangiovese
## 3231 Petite Sirah
## 3232 Albariño
## 3233 Pinot Noir
## 3234 G-S-M
## 3235 Rotgipfler
## 3236 Chardonnay
## 3237 Chardonnay
## 3238 White Blend
## 3239 Merlot
## 3240 Sangiovese
## 3241 Cabernet Sauvignon
## 3242 Sauvignon Blanc
## 3243 Primitivo
## 3244 Red Blend
## 3245 Cabernet Sauvignon
## 3246 Red Blend
## 3247 Champagne Blend
## 3248 White Blend
## 3249 Sangiovese
## 3250 Sangiovese
## 3251 Pinot Noir
## 3252 Bordeaux-style Red Blend
## 3253 Rosé
## 3254 Red Blend
## 3255 Zinfandel
## 3256 Sangiovese
## 3257 Merlot
## 3258 Pinot Noir
## 3259 Syrah
## 3260 Merlot
## 3261 Tinta de Toro
## 3262 Grüner Veltliner
## 3263 Bordeaux-style Red Blend
## 3264 Sauvignon Blanc
## 3265 Champagne Blend
## 3266 Rosé
## 3267 Tempranillo Blend
## 3268 Red Blend
## 3269 Bordeaux-style White Blend
## 3270 Moscato
## 3271 Malbec
## 3272 Arinto
## 3273 Insolia
## 3274 Touriga Nacional
## 3275 Nero d'Avola
## 3276 White Blend
## 3277 Rosé
## 3278 Red Blend
## 3279 Portuguese Red
## 3280 Pinot Noir
## 3281 Pinot Noir
## 3282 Red Blend
## 3283 Red Blend
## 3284 Greco
## 3285 Malbec
## 3286 Syrah
## 3287 Viognier
## 3288 Nero d'Avola
## 3289 Shiraz
## 3290 Syrah
## 3291 Falanghina
## 3292 Sauvignon Blanc
## 3293 Chardonnay
## 3294 Roussanne
## 3295 Portuguese Red
## 3296 Zinfandel
## 3297 Cabernet Blend
## 3298 Red Blend
## 3299 Portuguese White
## 3300 Red Blend
## 3301 Pinotage
## 3302 White Blend
## 3303 Pinot Noir
## 3304 Prosecco
## 3305 Pinot Noir
## 3306 Cabernet Sauvignon
## 3307 Cabernet Sauvignon
## 3308 Prosecco
## 3309 Portuguese White
## 3310 Prosecco
## 3311 Prosecco
## 3312 Pinot Noir
## 3313 Sparkling Blend
## 3314 Pinot Noir
## 3315 Bordeaux-style Red Blend
## 3316 Sangiovese
## 3317 Red Blend
## 3318 Pinot Noir
## 3319 White Blend
## 3320 Prugnolo Gentile
## 3321 Chardonnay
## 3322 Graciano
## 3323 Sauvignon Blanc
## 3324 Sangiovese
## 3325 Bordeaux-style Red Blend
## 3326 Pinot Noir
## 3327 Pinot Noir
## 3328 Sangiovese
## 3329 Red Blend
## 3330 Verdejo-Viura
## 3331 Sangiovese
## 3332 Chardonnay
## 3333 Chardonnay
## 3334 Chardonnay
## 3335 Riesling
## 3336 Pinot Noir
## 3337 Rosé
## 3338 Nero d'Avola
## 3339 Grüner Veltliner
## 3340 Chardonnay
## 3341 Rhône-style Red Blend
## 3342 Albariño
## 3343 Pinot Noir
## 3344 Kinali Yapincak
## 3345 Chardonnay
## 3346 Chardonnay
## 3347 Chardonnay
## 3348 Pinot Noir
## 3349 Chardonnay
## 3350 Chardonnay
## 3351 Cabernet Sauvignon
## 3352 Riesling
## 3353 Chardonnay
## 3354 Chardonnay
## 3355 Chardonnay
## 3356 Cabernet Franc
## 3357 Red Blend
## 3358 Cabernet Sauvignon
## 3359 Garnacha
## 3360 Tempranillo
## 3361 Riesling
## 3362 Cabernet Sauvignon
## 3363 Cabernet Sauvignon
## 3364 Riesling
## 3365 Petite Sirah
## 3366 Portuguese Red
## 3367 Chardonnay
## 3368 Teroldego
## 3369 Pinot Gris
## 3370 Pinot Noir
## 3371 Moscato
## 3372 Pinot Noir
## 3373 Pinot Blanc
## 3374 Chardonnay
## 3375 Gamay
## 3376 Syrah
## 3377 Zinfandel
## 3378 Bordeaux-style Red Blend
## 3379 Portuguese Red
## 3380 Syrah
## 3381 Pinot Gris
## 3382 Riesling
## 3383 Riesling
## 3384 Petite Sirah
## 3385 Riesling
## 3386 Red Blend
## 3387 Syrah
## 3388 Portuguese Red
## 3389 Portuguese Red
## 3390 Riesling
## 3391 Verdejo
## 3392 Chardonnay
## 3393 Xarel-lo
## 3394 Zinfandel
## 3395 Pinot Noir
## 3396 Chardonnay
## 3397 Cabernet Sauvignon
## 3398 Cabernet Sauvignon
## 3399 Zinfandel
## 3400 Cabernet Sauvignon
## 3401 Portuguese Red
## 3402 Portuguese White
## 3403 Portuguese White
## 3404 Pinot Noir
## 3405 Chardonnay
## 3406 Gewürztraminer
## 3407 Portuguese Red
## 3408 Portuguese White
## 3409 Sauvignon Blanc
## 3410 Zinfandel
## 3411 Albariño
## 3412 Portuguese White
## 3413 Pinot Noir
## 3414 Portuguese White
## 3415 Pinot Grigio
## 3416 Chardonnay
## 3417 Tempranillo
## 3418 Syrah
## 3419 Pinot Noir
## 3420 Zinfandel
## 3421 Portuguese Red
## 3422 Portuguese White
## 3423 Cabernet Franc-Carmenère
## 3424 Syrah
## 3425 Petite Sirah
## 3426 Melon
## 3427 Portuguese Red
## 3428 Portuguese White
## 3429 Pinot Noir
## 3430 Merlot
## 3431 Sauvignon Blanc
## 3432 Gamay
## 3433 Gewürztraminer
## 3434 Pinot Noir
## 3435 Monastrell-Syrah
## 3436 Syrah
## 3437 Grenache
## 3438 G-S-M
## 3439 Cabernet Sauvignon
## 3440 Verdejo-Viura
## 3441 Portuguese Red
## 3442 Syrah
## 3443 Portuguese Red
## 3444 Portuguese Red
## 3445 Portuguese Red
## 3446 Pinot Noir
## 3447 Pinot Noir
## 3448 Nebbiolo
## 3449 Red Blend
## 3450 Malbec
## 3451 Merlot
## 3452 White Blend
## 3453 Cabernet Sauvignon
## 3454 Petite Sirah
## 3455 Chardonnay
## 3456 Sauvignon Blanc
## 3457 Cabernet Sauvignon
## 3458 Malbec
## 3459 Syrah
## 3460 Pinot Noir
## 3461 White Blend
## 3462 Pinot Noir
## 3463 Red Blend
## 3464 Red Blend
## 3465 Viognier
## 3466 Sparkling Blend
## 3467 Cabernet Sauvignon
## 3468 Portuguese Red
## 3469 Red Blend
## 3470 Meritage
## 3471 Nebbiolo
## 3472 Tempranillo Blend
## 3473 Rhône-style White Blend
## 3474 Portuguese Red
## 3475 Merlot
## 3476 Pinot Noir
## 3477 Bordeaux-style Red Blend
## 3478 Bordeaux-style Red Blend
## 3479 Bordeaux-style Red Blend
## 3480 Bordeaux-style Red Blend
## 3481 Bordeaux-style Red Blend
## 3482 Touriga Nacional
## 3483 Pinot Gris
## 3484 Pinot Blanc
## 3485 Riesling
## 3486 Pinot Noir
## 3487 Gewürztraminer
## 3488 Chardonnay
## 3489 Corvina, Rondinella, Molinara
## 3490 Sangiovese
## 3491 Corvina, Rondinella, Molinara
## 3492 Chardonnay
## 3493 Carmenère
## 3494 Sparkling Blend
## 3495 Corvina, Rondinella, Molinara
## 3496 Riesling
## 3497 Syrah
## 3498 Gewürztraminer
## 3499 Corvina, Rondinella, Molinara
## 3500 Chardonnay
## 3501 Sparkling Blend
## 3502 Champagne Blend
## 3503 Cabernet Sauvignon
## 3504 Red Blend
## 3505 Grenache
## 3506 Grenache
## 3507 Meritage
## 3508 Red Blend
## 3509 Pinot Noir
## 3510 Vernaccia
## 3511 Magliocco
## 3512 Pinot Noir
## 3513 Vernaccia
## 3514 Zinfandel
## 3515 Pinot Noir
## 3516 Zinfandel
## 3517 Champagne Blend
## 3518 Pinot Noir
## 3519 Albariño
## 3520 Champagne Blend
## 3521 Red Blend
## 3522 Malbec
## 3523 Rosé
## 3524 Sangiovese
## 3525 Chardonnay
## 3526 Champagne Blend
## 3527 Aglianico
## 3528 Aglianico
## 3529 Red Blend
## 3530 Riesling
## 3531 Nebbiolo
## 3532 Riesling
## 3533 Cabernet Sauvignon
## 3534 Sauvignon Blanc
## 3535 Cabernet Sauvignon
## 3536 Chardonnay
## 3537 Zweigelt
## 3538 Bordeaux-style Red Blend
## 3539 Riesling
## 3540 Nebbiolo
## 3541 Nebbiolo
## 3542 Nebbiolo
## 3543 Cabernet Sauvignon
## 3544 Cabernet Sauvignon
## 3545 Nebbiolo
## 3546 Zinfandel
## 3547 Pinot Noir
## 3548 Riesling
## 3549 Nebbiolo
## 3550 Chardonnay
## 3551 Sauvignon Blanc
## 3552 Riesling
## 3553 Riesling
## 3554 Pinot Noir
## 3555 Shiraz
## 3556 Grüner Veltliner
## 3557 Malbec
## 3558 Blaufränkisch
## 3559 Cabernet Sauvignon
## 3560 Sauvignon Blanc
## 3561 White Blend
## 3562 Gamay Noir
## 3563 Grenache
## 3564 Nero d'Avola
## 3565 Nero d'Avola
## 3566 Port
## 3567 Sauvignon Blanc
## 3568 Sauvignon Blanc
## 3569 Portuguese Red
## 3570 Riesling
## 3571 Nero d'Avola
## 3572 Chardonnay
## 3573 Pinot Noir
## 3574 Bonarda
## 3575 Portuguese Red
## 3576 Sauvignon Blanc
## 3577 White Blend
## 3578 Cabernet Sauvignon
## 3579 Pinot Noir
## 3580 Malbec
## 3581 Pinot Noir
## 3582 Chardonnay
## 3583 Pinot Noir
## 3584 Riesling
## 3585 Sauvignon Blanc
## 3586 Portuguese White
## 3587 Red Blend
## 3588 Cabernet Franc
## 3589 Shiraz
## 3590 Sangiovese
## 3591 Rosé
## 3592 Bordeaux-style Red Blend
## 3593 Bordeaux-style Red Blend
## 3594 Merlot
## 3595 Sparkling Blend
## 3596 Sparkling Blend
## 3597 Sparkling Blend
## 3598 Bordeaux-style White Blend
## 3599 Shiraz
## 3600 Chardonnay
## 3601 Pinot Noir
## 3602 Zinfandel
## 3603 Bordeaux-style Red Blend
## 3604 Rhône-style Red Blend
## 3605 Malbec
## 3606 Red Blend
## 3607 Portuguese White
## 3608 Pinot Noir
## 3609 Sauvignon Blanc
## 3610 Petite Sirah
## 3611 Carmenère
## 3612 Sauvignon Blanc
## 3613 Touriga Nacional
## 3614 Cabernet Sauvignon
## 3615 Tempranillo
## 3616 Sparkling Blend
## 3617 Portuguese Red
## 3618 Chardonnay
## 3619 Malbec
## 3620 Sauvignon Blanc
## 3621 Pinot Noir
## 3622 Portuguese White
## 3623 Cabernet Sauvignon
## 3624 Merlot
## 3625 Cabernet Sauvignon
## 3626 Syrah
## 3627 Cabernet Sauvignon
## 3628 Rosé
## 3629 Pinot Noir
## 3630 Red Blend
## 3631 Sauvignon Blanc
## 3632 Cabernet Sauvignon
## 3633 Zinfandel
## 3634 Cabernet Sauvignon
## 3635 Red Blend
## 3636 Sauvignon Gris
## 3637 Merlot
## 3638 Rosé
## 3639 Pinot Noir
## 3640 Carmenère
## 3641 Rosé
## 3642 Chardonnay
## 3643 Bordeaux-style Red Blend
## 3644 Bordeaux-style Red Blend
## 3645 Bordeaux-style White Blend
## 3646 Red Blend
## 3647 Riesling
## 3648 Riesling
## 3649 Chardonnay
## 3650 Cabernet Sauvignon
## 3651 Sauvignon Blanc
## 3652 Syrah
## 3653 Grüner Veltliner
## 3654 Cabernet Sauvignon
## 3655 Red Blend
## 3656 Syrah
## 3657 Grüner Veltliner
## 3658 Bordeaux-style Red Blend
## 3659 Red Blend
## 3660 Red Blend
## 3661 Cabernet Sauvignon
## 3662 Cabernet Sauvignon
## 3663 Chardonnay
## 3664 Merlot
## 3665 Tempranillo
## 3666 Chardonnay
## 3667 Carmenère
## 3668 Sauvignon Blanc
## 3669 Bordeaux-style Red Blend
## 3670 Merlot
## 3671 Red Blend
## 3672 Rosé
## 3673 Moscato
## 3674 Cabernet Sauvignon
## 3675 Chardonnay
## 3676 Barbera
## 3677 Bordeaux-style White Blend
## 3678 Viognier
## 3679 Pinot Noir
## 3680 Pinot Grigio
## 3681 Red Blend
## 3682 Chardonnay
## 3683 Sauvignon Blanc
## 3684 Sauvignon Blanc
## 3685 Sauvignon Blanc
## 3686 Sauvignon Blanc
## 3687 Pinot Noir
## 3688 Champagne Blend
## 3689 Pinot Noir
## 3690 Port
## 3691 Chardonnay
## 3692 Pinot Noir
## 3693 Garnacha
## 3694 Champagne Blend
## 3695 Glera
## 3696 Sparkling Blend
## 3697 Pinot Noir
## 3698 Mencía
## 3699 Pinot Noir
## 3700 Champagne Blend
## 3701 Red Blend
## 3702 Bordeaux-style Red Blend
## 3703 Riesling
## 3704 Cabernet Franc
## 3705 Pinot Noir
## 3706 Sparkling Blend
## 3707 Riesling
## 3708 Chardonnay
## 3709 Pinot Noir
## 3710 Mencía
## 3711 Port
## 3712 Red Blend
## 3713 Rhône-style White Blend
## 3714 Aglianico
## 3715 Greco
## 3716 Spätburgunder
## 3717 Pinot Noir
## 3718 Aglianico
## 3719 Tempranillo
## 3720 Grenache
## 3721 Albariño
## 3722 Cabernet Sauvignon
## 3723 Port
## 3724 Roussanne
## 3725 Bordeaux-style Red Blend
## 3726 Bordeaux-style Red Blend
## 3727 Bordeaux-style Red Blend
## 3728 Sangiovese
## 3729 Sparkling Blend
## 3730 Gamay
## 3731 Red Blend
## 3732 Cabernet Sauvignon
## 3733 Chardonnay
## 3734 Picpoul
## 3735 Gewürztraminer
## 3736 White Blend
## 3737 Rosé
## 3738 Sparkling Blend
## 3739 White Blend
## 3740 Portuguese Red
## 3741 Sangiovese
## 3742 Gamay
## 3743 Sangiovese
## 3744 Cabernet Sauvignon
## 3745 Sangiovese
## 3746 Merlot
## 3747 Bordeaux-style Red Blend
## 3748 Cabernet Sauvignon
## 3749 Merlot
## 3750 Malbec-Merlot
## 3751 Cabernet Sauvignon
## 3752 Gamay
## 3753 Picpoul
## 3754 Riesling
## 3755 Rosado
## 3756 Carmenère
## 3757 Sangiovese
## 3758 Merlot
## 3759 Rosé
## 3760 Red Blend
## 3761 Malbec
## 3762 Chardonnay
## 3763 Riesling
## 3764 Sauvignon Blanc
## 3765 Riesling
## 3766 Sauvignon Blanc
## 3767 Sauvignon Blanc
## 3768 Rosé
## 3769 Fiano
## 3770 Greco
## 3771 Chardonnay
## 3772 Sparkling Blend
## 3773 Meritage
## 3774 Pinot Noir
## 3775 Chardonnay
## 3776 Pinot Noir
## 3777 Red Blend
## 3778 Cabernet Franc
## 3779 Vidal Blanc
## 3780 Chardonnay
## 3781 Riesling
## 3782 Sauvignon Blanc
## 3783 Cabernet Sauvignon
## 3784 Gewürztraminer
## 3785 Rosé
## 3786 Fiano
## 3787 Albanello
## 3788 Cabernet Sauvignon
## 3789 Zinfandel
## 3790 Sparkling Blend
## 3791 Red Blend
## 3792 Chardonnay
## 3793 Sangiovese
## 3794 Riesling
## 3795 Cabernet Franc
## 3796 Syrah
## 3797 Sangiovese
## 3798 Red Blend
## 3799 Sangiovese
## 3800 Sangiovese
## 3801 Chardonnay
## 3802 Cabernet Sauvignon
## 3803 Riesling
## 3804 Riesling
## 3805 Sangiovese
## 3806 Sparkling Blend
## 3807 Sauvignon Blanc
## 3808 Cabernet Sauvignon
## 3809 Tempranillo
## 3810 Cabernet Sauvignon
## 3811 Chardonnay
## 3812 Red Blend
## 3813 Viognier
## 3814 Gamay
## 3815 Malbec
## 3816 Rhône-style Red Blend
## 3817 Bordeaux-style White Blend
## 3818 Red Blend
## 3819 Portuguese Red
## 3820 Touriga Nacional
## 3821 Chardonnay
## 3822 Red Blend
## 3823 Pinot Noir
## 3824 Chenin Blanc
## 3825 Syrah
## 3826 Syrah
## 3827 Red Blend
## 3828 Chardonnay
## 3829 Pinot Noir
## 3830 Gewürztraminer
## 3831 Red Blend
## 3832 Cabernet Sauvignon
## 3833 Chenin Blanc
## 3834 Pinot Gris
## 3835 Rhône-style Red Blend
## 3836 Sangiovese
## 3837 Portuguese Red
## 3838 Red Blend
## 3839 Riesling
## 3840 Petite Sirah
## 3841 Pinot Noir
## 3842 Touriga Nacional
## 3843 Red Blend
## 3844 Portuguese Red
## 3845 Red Blend
## 3846 Gewürztraminer
## 3847 Pinot Noir
## 3848 Red Blend
## 3849 Red Blend
## 3850 Cabernet Sauvignon
## 3851 Riesling
## 3852 Pinot Noir
## 3853 Cabernet Franc
## 3854 Cabernet Franc
## 3855 Chenin Blanc
## 3856 Zinfandel
## 3857 Cabernet Sauvignon
## 3858 Syrah
## 3859 Pinot Noir
## 3860 Cabernet Sauvignon
## 3861 Red Blend
## 3862 Viognier
## 3863 Pinot Nero
## 3864 Chenin Blanc
## 3865 Syrah
## 3866 Grenache
## 3867 Gewürztraminer-Riesling
## 3868 Red Blend
## 3869 Cabernet Sauvignon
## 3870 Sauvignon Blanc
## 3871 Chenin Blanc
## 3872 Riesling
## 3873 Zinfandel
## 3874 Rhône-style White Blend
## 3875 Pinot Noir
## 3876 Trebbiano
## 3877 Pinot Noir
## 3878 Chenin Blanc-Chardonnay
## 3879 Chardonnay
## 3880 Sauvignon Blanc
## 3881 Shiraz-Cabernet Sauvignon
## 3882 Riesling
## 3883 White Port
## 3884 Sangiovese Grosso
## 3885 Red Blend
## 3886 Syrah-Grenache
## 3887 Chardonnay
## 3888 Tempranillo
## 3889 Cabernet Sauvignon
## 3890 Sauvignon Blanc
## 3891 White Blend
## 3892 Portuguese Red
## 3893 Syrah
## 3894 Chardonnay
## 3895 Sauvignon Blanc
## 3896 Garnacha
## 3897 Petite Sirah
## 3898 Red Blend
## 3899 Sauvignon Blanc
## 3900 Chardonnay
## 3901 Pinot Grigio
## 3902 Chardonnay
## 3903 Pinot Grigio
## 3904 Arinto
## 3905 Chardonnay
## 3906 Sauvignon
## 3907 Sparkling Blend
## 3908 Pinot Bianco
## 3909 Friulano
## 3910 Friulano
## 3911 Pinot Grigio
## 3912 Sauvignon
## 3913 Pinot Noir
## 3914 Sparkling Blend
## 3915 Pinot Bianco
## 3916 Pinot Noir
## 3917 Pinot Noir
## 3918 Chardonnay
## 3919 Pinot Grigio
## 3920 Verdejo
## 3921 Pinot Noir
## 3922 Red Blend
## 3923 Portuguese Red
## 3924 Zinfandel
## 3925 Ribolla Gialla
## 3926 Zinfandel
## 3927 Pinot Grigio
## 3928 Pinot Grigio
## 3929 Zinfandel
## 3930 Red Blend
## 3931 Cabernet Sauvignon
## 3932 Zinfandel
## 3933 Zinfandel
## 3934 Pinot Gris
## 3935 Red Blend
## 3936 Garnacha
## 3937 Pinot Grigio
## 3938 Chardonnay
## 3939 Portuguese Red
## 3940 G-S-M
## 3941 Malbec
## 3942 Rosé
## 3943 Zinfandel
## 3944 Chardonnay
## 3945 Tempranillo-Merlot
## 3946 Portuguese White
## 3947 Meritage
## 3948 Pinot Noir
## 3949 Rosé
## 3950 Sparkling Blend
## 3951 Rosé
## 3952 Malbec
## 3953 Shiraz
## 3954 Red Blend
## 3955 White Blend
## 3956 Gamay
## 3957 Gamay
## 3958 Bordeaux-style Red Blend
## 3959 Pinot Noir
## 3960 Syrah
## 3961 White Blend
## 3962 Bonarda
## 3963 Riesling
## 3964 Pinot Noir
## 3965 Pinot Noir
## 3966 Cabernet Sauvignon
## 3967 Rhône-style Red Blend
## 3968 Petite Sirah
## 3969 White Blend
## 3970 Syrah
## 3971 Glera
## 3972 Pinot Noir
## 3973 Bordeaux-style Red Blend
## 3974 Bordeaux-style Red Blend
## 3975 Cabernet Sauvignon
## 3976 Sauvignon Blanc
## 3977 Syrah
## 3978 Corvina, Rondinella, Molinara
## 3979 Cortese
## 3980 Sauvignon Blanc
## 3981 Chardonnay
## 3982 Chardonnay
## 3983 Pinot Gris
## 3984 Grüner Veltliner
## 3985 Barbera
## 3986 Petite Sirah
## 3987 Red Blend
## 3988 Red Blend
## 3989 Dolcetto
## 3990 Arneis
## 3991 Dolcetto
## 3992 Syrah
## 3993 Rhône-style White Blend
## 3994 Sauvignon Blanc
## 3995 Sauvignon Blanc
## 3996 Torrontés
## 3997 Moscato
## 3998 Riesling
## 3999 Tempranillo
## 4000 Riesling
## 4001 Tinta de Toro
## 4002 Sauvignon Blanc
## 4003 Cabernet Sauvignon
## 4004 Sauvignon Blanc
## 4005 Rosé
## 4006 Rosé
## 4007 Fiano
## 4008 Malvasia
## 4009 Sauvignon Blanc-Semillon
## 4010 Sauvignon Blanc
## 4011 Greco
## 4012 Bonarda
## 4013 Red Blend
## 4014 Viognier
## 4015 Chardonnay
## 4016 Sauvignon Blanc
## 4017 Sparkling Blend
## 4018 Sauvignon Blanc
## 4019 Falanghina
## 4020 Plavac Mali
## 4021 Chardonnay
## 4022 Red Blend
## 4023 Sangiovese
## 4024 Verdejo-Viura
## 4025 Chenin Blanc
## 4026 Chenin Blanc
## 4027 Greco
## 4028 Merlot
## 4029 Pinot Noir
## 4030 Petite Sirah
## 4031 Grenache
## 4032 Sauvignon Blanc
## 4033 Sparkling Blend
## 4034 Sauvignon Blanc
## 4035 Cabernet Sauvignon
## 4036 Melon
## 4037 Pinot Noir
## 4038 Chardonnay
## 4039 Cabernet Franc
## 4040 Garganega
## 4041 Garganega
## 4042 Sparkling Blend
## 4043 Lemberger
## 4044 Rosé
## 4045 Cabernet Franc
## 4046 Cabernet Sauvignon
## 4047 Sauvignon Blanc-Semillon
## 4048 Chardonnay
## 4049 Saperavi
## 4050 Pinot Noir
## 4051 Malbec
## 4052 Tannat
## 4053 Rosé
## 4054 Red Blend
## 4055 Malbec
## 4056 Chardonnay
## 4057 Rhône-style Red Blend
## 4058 Rosé
## 4059 Chardonnay
## 4060 Red Blend
## 4061 Altesse
## 4062 Sauvignon Blanc
## 4063 Red Blend
## 4064 Syrah
## 4065 Merlot
## 4066 Cabernet Sauvignon
## 4067 Sauvignon Blanc
## 4068 Red Blend
## 4069 Barbera
## 4070 Rhône-style Red Blend
## 4071 Nebbiolo
## 4072 Cabernet Franc
## 4073 Sauvignon Blanc
## 4074 Chardonnay
## 4075 Sangiovese
## 4076 Red Blend
## 4077 Cabernet Franc
## 4078 Red Blend
## 4079 Red Blend
## 4080 Cabernet Sauvignon
## 4081 Red Blend
## 4082 Sauvignon Blanc
## 4083 Red Blend
## 4084 Chardonnay
## 4085 Petite Sirah
## 4086 Red Blend
## 4087 Syrah
## 4088 Cabernet Sauvignon
## 4089 Chardonnay
## 4090 Pinot Grigio
## 4091 Portuguese White
## 4092 Portuguese Red
## 4093 Portuguese White
## 4094 Portuguese White
## 4095 Pinot Noir
## 4096 Merlot
## 4097 Sauvignon Blanc
## 4098 Portuguese White
## 4099 Pinot Noir
## 4100 Riesling
## 4101 Bordeaux-style Red Blend
## 4102 Sauvignon Blanc
## 4103 Zinfandel
## 4104 Chardonnay
## 4105 Red Blend
## 4106 Cabernet Franc
## 4107 Pinot Noir
## 4108 Portuguese Red
## 4109 Portuguese White
## 4110 Sauvignon Blanc
## 4111 Chardonnay
## 4112 Pinot Noir
## 4113 Bordeaux-style Red Blend
## 4114 Cabernet Franc
## 4115 Riesling
## 4116 Riesling
## 4117 Sauvignon Blanc
## 4118 Red Blend
## 4119 Grenache
## 4120 Sparkling Blend
## 4121 Riesling
## 4122 Champagne Blend
## 4123 Pinot Noir
## 4124 Cabernet Sauvignon
## 4125 Cabernet Sauvignon
## 4126 Sparkling Blend
## 4127 Sparkling Blend
## 4128 Champagne Blend
## 4129 Pinot Noir
## 4130 Champagne Blend
## 4131 Cabernet Blend
## 4132 Bordeaux-style Red Blend
## 4133 Chardonnay
## 4134 Pinot Noir
## 4135 Portuguese White
## 4136 Chardonnay
## 4137 Port
## 4138 Grenache
## 4139 Champagne Blend
## 4140 Port
## 4141 Pinot Noir
## 4142 Chardonnay
## 4143 Chardonnay
## 4144 Mourvèdre
## 4145 Aglianico
## 4146 Portuguese Red
## 4147 Pinot Noir
## 4148 Chardonnay
## 4149 Pinot Noir
## 4150 Pinot Noir
## 4151 Cabernet Sauvignon
## 4152 Champagne Blend
## 4153 Pinot Noir
## 4154 Cabernet Sauvignon
## 4155 Nerello Mascalese
## 4156 Chardonnay
## 4157 Nebbiolo
## 4158 Pinot Noir
## 4159 Pinot Noir
## 4160 Rhône-style Red Blend
## 4161 Red Blend
## 4162 Syrah
## 4163 Portuguese Red
## 4164 Aglianico
## 4165 Portuguese Red
## 4166 Chardonnay
## 4167 Aglianico
## 4168 Viognier
## 4169 Red Blend
## 4170 Riesling
## 4171 Red Blend
## 4172 Tempranillo
## 4173 Merlot
## 4174 Malbec
## 4175 Sparkling Blend
## 4176 Pinot Noir
## 4177 Cabernet Sauvignon
## 4178 Merlot
## 4179 Merlot
## 4180 Red Blend
## 4181 Blanc du Bois
## 4182 Grüner Veltliner
## 4183 Cabernet Sauvignon
## 4184 Provence red blend
## 4185 Pinot Noir
## 4186 Cabernet Sauvignon
## 4187 Pinot Noir
## 4188 Chardonnay
## 4189 Bordeaux-style Red Blend
## 4190 Pinot Noir
## 4191 Red Blend
## 4192 Sauvignon Blanc
## 4193 Carmenère
## 4194 Pinot Noir
## 4195 Syrah
## 4196 Chardonnay
## 4197 Pinot Noir
## 4198 Provence white blend
## 4199 Carmenère
## 4200 Cabernet Sauvignon
## 4201 Sauvignon Blanc
## 4202 Cabernet Sauvignon
## 4203 Garganega
## 4204 Syrah
## 4205 Pinot Noir
## 4206 Malbec
## 4207 Chardonnay
## 4208 Malbec
## 4209 Pinot Noir
## 4210 Nosiola
## 4211 Verdejo
## 4212 Portuguese Red
## 4213 Arinto
## 4214 Portuguese Red
## 4215 Cabernet Sauvignon
## 4216 Dornfelder
## 4217 Chardonnay
## 4218 Sangiovese
## 4219 Portuguese White
## 4220 White Blend
## 4221 Chardonnay
## 4222 Garganega
## 4223 White Blend
## 4224 Malbec
## 4225 Sauvignon Blanc
## 4226 Portuguese Red
## 4227 Chardonnay
## 4228 Malbec
## 4229 Pinot Noir
## 4230 Grenache
## 4231 Sangiovese
## 4232 Torrontés
## 4233 Shiraz
## 4234 Riesling
## 4235 Bordeaux-style White Blend
## 4236 Chardonnay
## 4237 Zinfandel
## 4238 Vermentino
## 4239 Roussanne-Viognier
## 4240 Chardonnay
## 4241 Cabernet Sauvignon
## 4242 Syrah
## 4243 Cabernet Sauvignon
## 4244 Ojaleshi
## 4245 Chardonnay
## 4246 Chardonnay
## 4247 Red Blend
## 4248 Sauvignon Blanc
## 4249 Red Blend
## 4250 Red Blend
## 4251 Cabernet Sauvignon
## 4252 Cabernet Sauvignon
## 4253 Godello
## 4254 Chardonnay
## 4255 Malbec
## 4256 Sangiovese
## 4257 Red Blend
## 4258 Cabernet Franc
## 4259 Barbera
## 4260 Merlot
## 4261 Bordeaux-style Red Blend
## 4262 Cabernet Sauvignon
## 4263 Rosé
## 4264 Cabernet Sauvignon
## 4265 Red Blend
## 4266 Bordeaux-style Red Blend
## 4267 Bordeaux-style Red Blend
## 4268 Rosé
## 4269 Red Blend
## 4270 Cabernet Sauvignon
## 4271 Cabernet Sauvignon
## 4272 Rhône-style White Blend
## 4273 Chardonnay
## 4274 Red Blend
## 4275 Cabernet Sauvignon
## 4276 Merlot
## 4277 Riesling
## 4278 Rosé
## 4279 Mondeuse
## 4280 Gamay
## 4281 Bordeaux-style Red Blend
## 4282 Colombard
## 4283 Bordeaux-style Red Blend
## 4284 Pinot Noir
## 4285 Melon
## 4286 Sparkling Blend
## 4287 Garnacha Tintorera
## 4288 Monastrell
## 4289 Champagne Blend
## 4290 Chardonnay
## 4291 Bordeaux-style Red Blend
## 4292 Riesling
## 4293 Pinot Noir
## 4294 Bordeaux-style Red Blend
## 4295 White Blend
## 4296 Assyrtico
## 4297 Syrah
## 4298 Nerello Mascalese
## 4299 Gewürztraminer
## 4300 Red Blend
## 4301 Red Blend
## 4302 White Blend
## 4303 Chardonnay
## 4304 Bordeaux-style Red Blend
## 4305 Corvina, Rondinella, Molinara
## 4306 Corvina, Rondinella, Molinara
## 4307 Sauvignon Blanc
## 4308 Corvina, Rondinella, Molinara
## 4309 Cabernet Sauvignon
## 4310 Syrah
## 4311 Corvina, Rondinella, Molinara
## 4312 Syrah
## 4313 Sauvignon Blanc
## 4314 Bordeaux-style White Blend
## 4315 Tempranillo Blend
## 4316 Sauvignon Blanc
## 4317 Riesling
## 4318 Port
## 4319 Port
## 4320 Pinot Noir
## 4321 Carmenère
## 4322 Sherry
## 4323 Montepulciano
## 4324 Pinot Noir
## 4325 Cabernet Sauvignon
## 4326 Bordeaux-style White Blend
## 4327 Chardonnay
## 4328 Pinot Noir
## 4329 Sauvignon Blanc
## 4330 Sherry
## 4331 Red Blend
## 4332 Perricone
## 4333 Viognier
## 4334 Pinot Noir
## 4335 Pedro Ximénez
## 4336 Syrah
## 4337 Mencía
## 4338 Pinot Noir
## 4339 Pinot Noir
## 4340 Sangiovese
## 4341 Pinot Gris
## 4342 White Blend
## 4343 Pinot Noir
## 4344 Chardonnay
## 4345 Pinot Noir
## 4346 Pinot Noir
## 4347 Red Blend
## 4348 Syrah
## 4349 Cabernet Sauvignon
## 4350 Auxerrois
## 4351 Pinot Noir
## 4352 Pinot Noir
## 4353 Red Blend
## 4354 Sauvignon Blanc
## 4355 Red Blend
## 4356 Red Blend
## 4357 Bordeaux-style Red Blend
## 4358 Bordeaux-style Red Blend
## 4359 Bordeaux-style Red Blend
## 4360 Bordeaux-style Red Blend
## 4361 Bordeaux-style Red Blend
## 4362 Bordeaux-style Red Blend
## 4363 Bordeaux-style Red Blend
## 4364 Portuguese Red
## 4365 Chardonnay
## 4366 Red Blend
## 4367 Cabernet Sauvignon
## 4368 Pinot Noir
## 4369 Chardonnay
## 4370 Red Blend
## 4371 Sauvignon
## 4372 Chardonnay
## 4373 Chardonnay
## 4374 Chardonnay
## 4375 Sauvignon Blanc
## 4376 Bordeaux-style Red Blend
## 4377 Pinot Noir
## 4378 Chardonnay
## 4379 Tempranillo Blend
## 4380 Chardonnay
## 4381 Red Blend
## 4382 Syrah
## 4383 Chardonnay
## 4384 Chardonnay
## 4385 Gamay
## 4386 Chardonnay
## 4387 Pinot Noir
## 4388 Pinot Noir
## 4389 Chardonnay
## 4390 Carmenère
## 4391 Chardonnay
## 4392 Bordeaux-style Red Blend
## 4393 Merlot
## 4394 Syrah
## 4395 Cabernet Sauvignon
## 4396 Merlot
## 4397 Pinot Noir
## 4398 Chardonnay
## 4399 Chardonnay
## 4400 Sparkling Blend
## 4401 Grüner Veltliner
## 4402 Pinot Noir
## 4403 Gamay
## 4404 Nebbiolo
## 4405 Chardonnay
## 4406 Chardonnay
## 4407 Sparkling Blend
## 4408 Riesling
## 4409 Viognier
## 4410 Chardonnay
## 4411 Malbec
## 4412 Merlot
## 4413 Riesling
## 4414 Chardonnay
## 4415 Chardonnay
## 4416 Moscatel
## 4417 Barbera
## 4418 Cabernet Sauvignon
## 4419 Merlot
## 4420 Cabernet Sauvignon
## 4421 Moscatel
## 4422 Pinot Noir
## 4423 Petite Sirah
## 4424 Tempranillo
## 4425 Cabernet Sauvignon
## 4426 Nebbiolo
## 4427 Chardonnay
## 4428 Bordeaux-style Red Blend
## 4429 Nebbiolo
## 4430 Gamay
## 4431 Provence white blend
## 4432 Zinfandel
## 4433 Nebbiolo
## 4434 Chardonnay
## 4435 Chardonnay
## 4436 Chardonnay
## 4437 Chardonnay
## 4438 Sparkling Blend
## 4439 Cabernet Franc
## 4440 Gamay
## 4441 Syrah-Merlot
## 4442 Albana
## 4443 Rhône-style White Blend
## 4444 Nebbiolo
## 4445 Tempranillo
## 4446 Red Blend
## 4447 Syrah
## 4448 Tempranillo
## 4449 Sangiovese
## 4450 Rosé
## 4451 Chardonnay
## 4452 Chardonnay
## 4453 Red Blend
## 4454 White Blend
## 4455 Sauvignon Blanc
## 4456 Cabernet Sauvignon
## 4457 Merlot
## 4458 Bordeaux-style Red Blend
## 4459 Red Blend
## 4460 Red Blend
## 4461 Cabernet Sauvignon
## 4462 Cabernet Sauvignon
## 4463 Cabernet Sauvignon
## 4464 White Blend
## 4465 Sauvignon Blanc
## 4466 Cabernet Sauvignon
## 4467 Cabernet Sauvignon
## 4468 Sauvignon Blanc
## 4469 Riesling
## 4470 Sangiovese
## 4471 Cabernet Sauvignon
## 4472 Chardonnay
## 4473 Bordeaux-style Red Blend
## 4474 Pinot Noir
## 4475 Tempranillo Blend
## 4476 Chardonnay
## 4477 Viognier
## 4478 Chardonnay
## 4479 Bordeaux-style Red Blend
## 4480 Pinot Noir
## 4481 Red Blend
## 4482 Sauvignon Blanc
## 4483 Cabernet Sauvignon
## 4484 Sauvignon Blanc
## 4485 Pinot Noir
## 4486 Red Blend
## 4487 Chardonnay
## 4488 Cabernet Sauvignon
## 4489 Grüner Veltliner
## 4490 Muskat
## 4491 Syrah
## 4492 Syrah
## 4493 Cabernet Sauvignon
## 4494 Pinot Noir
## 4495 Sauvignon Blanc
## 4496 Syrah
## 4497 Pinot Noir
## 4498 Pinot Noir
## 4499 Pinot Noir
## 4500 Sémillon
## 4501 Pinot Noir
## 4502 Sauvignon Blanc
## 4503 Pinot Noir
## 4504 Nerello Mascalese
## 4505 Zinfandel
## 4506 Pinot Noir
## 4507 Pinot Noir
## 4508 Pinot Noir
## 4509 Pinot Noir
## 4510 Pinot Noir
## 4511 Chardonnay
## 4512 Pinot Noir
## 4513 Pinot Noir
## 4514 Nebbiolo
## 4515 Pinot Noir
## 4516 Nebbiolo
## 4517 Chardonnay
## 4518 Pinot Noir
## 4519 Zinfandel
## 4520 Chenin Blanc
## 4521 Pinot Noir
## 4522 Chardonnay
## 4523 Nebbiolo
## 4524 Red Blend
## 4525 Red Blend
## 4526 Pinot Noir
## 4527 Chenin Blanc
## 4528 Red Blend
## 4529 Cabernet Sauvignon-Merlot
## 4530 Zinfandel
## 4531 Rhône-style Red Blend
## 4532 Touriga Nacional
## 4533 Garnacha
## 4534 Chardonnay
## 4535 Sauvignon Blanc
## 4536 Chardonnay
## 4537 Pinot Noir
## 4538 Pinot Noir
## 4539 White Blend
## 4540 Lambrusco
## 4541 Pinot Noir
## 4542 White Blend
## 4543 Bordeaux-style Red Blend
## 4544 Sangiovese
## 4545 Zinfandel
## 4546 Petite Sirah
## 4547 Zinfandel
## 4548 Bordeaux-style Red Blend
## 4549 Cabernet Sauvignon-Merlot
## 4550 Cabernet Sauvignon
## 4551 Chardonnay
## 4552 Sauvignon Blanc
## 4553 Rosé
## 4554 Pinot Noir
## 4555 Pinot Noir
## 4556 Garnacha
## 4557 Merlot
## 4558 Sparkling Blend
## 4559 Viura
## 4560 Portuguese Red
## 4561 Pinot Noir
## 4562 Portuguese Red
## 4563 Portuguese Red
## 4564 Bordeaux-style Red Blend
## 4565 Syrah
## 4566 Tempranillo
## 4567 Sauvignon Blanc
## 4568 Montepulciano
## 4569 Montepulciano
## 4570 Cabernet Sauvignon
## 4571 Tempranillo
## 4572 Chardonnay
## 4573 Viognier
## 4574 Montepulciano
## 4575 Riesling
## 4576 Portuguese Red
## 4577 Gewürztraminer
## 4578 Bordeaux-style White Blend
## 4579 Sparkling Blend
## 4580 Pinot Noir
## 4581 Portuguese Red
## 4582 Portuguese Red
## 4583 Portuguese Red
## 4584 Portuguese Red
## 4585 Red Blend
## 4586 Moscato
## 4587 Rosé
## 4588 Portuguese Red
## 4589 Albariño
## 4590 Chardonnay
## 4591 Syrah
## 4592 Zinfandel
## 4593 Syrah
## 4594 Corvina, Rondinella, Molinara
## 4595 Corvina, Rondinella, Molinara
## 4596 Pinot Noir
## 4597 Cabernet Sauvignon
## 4598 Corvina, Rondinella, Molinara
## 4599 Cabernet Sauvignon
## 4600 Viognier
## 4601 Riesling
## 4602 Gewürztraminer
## 4603 Syrah
## 4604 Cabernet Sauvignon
## 4605 Monastrell
## 4606 Grenache-Syrah
## 4607 Gewürztraminer
## 4608 Corvina, Rondinella, Molinara
## 4609 Corvina, Rondinella, Molinara
## 4610 Syrah
## 4611 Rhône-style Red Blend
## 4612 Mencía
## 4613 White Blend
## 4614 Red Blend
## 4615 Riesling
## 4616 Riesling
## 4617 White Blend
## 4618 Corvina, Rondinella, Molinara
## 4619 Nebbiolo
## 4620 Grenache
## 4621 Pinot Noir
## 4622 Pinot Noir
## 4623 Tempranillo
## 4624 Bordeaux-style Red Blend
## 4625 Malbec
## 4626 Nebbiolo
## 4627 Nebbiolo
## 4628 Nebbiolo
## 4629 Chardonnay
## 4630 Pinot Noir
## 4631 Nebbiolo
## 4632 Nebbiolo
## 4633 Sauvignon Blanc
## 4634 Red Blend
## 4635 Petite Sirah
## 4636 Sauvignon Blanc
## 4637 Chardonnay
## 4638 Chardonnay
## 4639 Cabernet Sauvignon-Malbec
## 4640 Zinfandel
## 4641 Syrah
## 4642 Zinfandel
## 4643 Touriga Nacional
## 4644 Portuguese Red
## 4645 Sauvignon Blanc
## 4646 Sauvignon Blanc
## 4647 Port
## 4648 Bordeaux-style Red Blend
## 4649 Bordeaux-style Red Blend
## 4650 Bordeaux-style Red Blend
## 4651 Bordeaux-style Red Blend
## 4652 Bordeaux-style Red Blend
## 4653 Bordeaux-style Red Blend
## 4654 Barbera
## 4655 Bordeaux-style Red Blend
## 4656 Bordeaux-style Red Blend
## 4657 Bordeaux-style Red Blend
## 4658 Red Blend
## 4659 Malbec
## 4660 Cabernet Sauvignon
## 4661 Bordeaux-style White Blend
## 4662 Bordeaux-style White Blend
## 4663 Bordeaux-style Red Blend
## 4664 Bordeaux-style White Blend
## 4665 Bordeaux-style White Blend
## 4666 Bordeaux-style Red Blend
## 4667 Bordeaux-style Red Blend
## 4668 Syrah
## 4669 Cabernet Franc
## 4670 Champagne Blend
## 4671 Cabernet Sauvignon
## 4672 Sauvignon Blanc
## 4673 Riesling
## 4674 Bordeaux-style Red Blend
## 4675 Mourvèdre
## 4676 Pinot Noir
## 4677 Pinot Noir
## 4678 Cabernet Sauvignon
## 4679 Riesling
## 4680 Riesling
## 4681 Pinot Gris
## 4682 Rosé
## 4683 Garnacha
## 4684 Cabernet Franc
## 4685 Chardonnay
## 4686 Pinot Noir
## 4687 Cabernet Sauvignon
## 4688 Pinot Noir
## 4689 Cabernet Sauvignon
## 4690 Pinot Noir
## 4691 Bordeaux-style Red Blend
## 4692 Zinfandel
## 4693 Cabernet Sauvignon-Syrah
## 4694 Pinot Noir
## 4695 Pinot Noir
## 4696 Pinot Noir
## 4697 Rosé
## 4698 Chardonnay
## 4699 Tempranillo
## 4700 Tempranillo
## 4701 Pinot Noir-Gamay
## 4702 Rosé
## 4703 Portuguese White
## 4704 Pinot Noir
## 4705 Pinot Noir
## 4706 Barbera
## 4707 Dolcetto
## 4708 Riesling
## 4709 Cabernet Sauvignon
## 4710 Nebbiolo
## 4711 Barbera
## 4712 Tempranillo
## 4713 Bordeaux-style Red Blend
## 4714 Barbera
## 4715 Riesling
## 4716 Riesling
## 4717 Barbera
## 4718 Portuguese Red
## 4719 Malbec
## 4720 Pinot Noir
## 4721 Alvarinho
## 4722 Portuguese White
## 4723 Riesling
## 4724 Pinot Noir
## 4725 Chardonnay
## 4726 Malbec
## 4727 Pinot Noir
## 4728 Malbec
## 4729 Pinot Noir
## 4730 Portuguese Red
## 4731 Cabernet Sauvignon
## 4732 Merlot
## 4733 Chardonnay
## 4734 Chardonnay
## 4735 Sémillon
## 4736 Gewürztraminer
## 4737 Chardonnay
## 4738 Sangiovese
## 4739 Chardonnay
## 4740 Sauvignon Blanc
## 4741 Sangiovese
## 4742 Merlot
## 4743 Cabernet Sauvignon
## 4744 Chardonnay
## 4745 Chenin Blanc
## 4746 Syrah
## 4747 Merlot
## 4748 Sauvignon Blanc
## 4749 Chardonnay
## 4750 Chardonnay
## 4751 Chardonnay
## 4752 Chardonnay
## 4753 Sauvignon Blanc
## 4754 Cabernet Sauvignon
## 4755 Merlot
## 4756 Merlot
## 4757 Syrah
## 4758 Sauvignon Blanc
## 4759 Chardonnay
## 4760 Syrah
## 4761 Tempranillo Blend
## 4762 Cabernet Sauvignon
## 4763 Sangiovese
## 4764 Austrian Red Blend
## 4765 Syrah
## 4766 Riesling
## 4767 Bordeaux-style Red Blend
## 4768 Bordeaux-style Red Blend
## 4769 Bordeaux-style Red Blend
## 4770 Viognier
## 4771 Sangiovese
## 4772 Sangiovese
## 4773 Chardonnay
## 4774 Malbec
## 4775 Tinto Fino
## 4776 Sangiovese
## 4777 Malbec
## 4778 Grüner Veltliner
## 4779 Chardonnay
## 4780 Sauvignon Blanc
## 4781 Pinot Noir
## 4782 Sangiovese
## 4783 Grüner Veltliner
## 4784 Grüner Veltliner
## 4785 Malbec-Cabernet Sauvignon
## 4786 Sangiovese
## 4787 Sangiovese
## 4788 Ribolla Gialla
## 4789 Moschofilero
## 4790 Pinot Grigio
## 4791 White Blend
## 4792 Pinot Grigio
## 4793 Sauvignon Blanc
## 4794 Vermentino
## 4795 Agiorgitiko
## 4796 Grechetto
## 4797 Rosé
## 4798 Moschofilero
## 4799 White Blend
## 4800 Chardonnay
## 4801 Pinot Grigio
## 4802 Riesling
## 4803 Moschofilero
## 4804 Pinot Noir
## 4805 Vernaccia
## 4806 Cabernet Sauvignon
## 4807 Malbec
## 4808 Pinot Noir
## 4809 Grüner Veltliner
## 4810 Pinot Gris
## 4811 Chardonnay
## 4812 Pinot Grigio
## 4813 Chenin Blanc
## 4814 Müller-Thurgau
## 4815 Pinot Noir
## 4816 Champagne Blend
## 4817 Zinfandel
## 4818 Chardonnay
## 4819 Grenache
## 4820 Cabernet Sauvignon
## 4821 Pinot Gris
## 4822 Sauvignon Blanc
## 4823 Chardonnay
## 4824 Pinot Grigio
## 4825 Petite Sirah
## 4826 Fumé Blanc
## 4827 Syrah
## 4828 Champagne Blend
## 4829 Dolcetto
## 4830 Fumé Blanc
## 4831 Bordeaux-style Red Blend
## 4832 Petite Sirah
## 4833 Petite Sirah
## 4834 Grenache
## 4835 Syrah
## 4836 Merlot
## 4837 Port
## 4838 Viognier
## 4839 Red Blend
## 4840 Portuguese White
## 4841 Portuguese Red
## 4842 Sauvignon Blanc
## 4843 Pinot Noir
## 4844 Pinot Noir
## 4845 Sauvignon Blanc
## 4846 Pinot Blanc
## 4847 Red Blend
## 4848 Red Blend
## 4849 Portuguese Red
## 4850 Silvaner
## 4851 Red Blend
## 4852 Red Blend
## 4853 Gamay
## 4854 Red Blend
## 4855 Malbec
## 4856 White Blend
## 4857 Tempranillo
## 4858 Red Blend
## 4859 Red Blend
## 4860 Riesling
## 4861 Red Blend
## 4862 Portuguese Red
## 4863 Cabernet Franc
## 4864 Portuguese Red
## 4865 Pinot Noir
## 4866 Zinfandel
## 4867 Portuguese Red
## 4868 Red Blend
## 4869 Pinot Noir
## 4870 Sparkling Blend
## 4871 Tempranillo
## 4872 Nerello Mascalese
## 4873 Riesling
## 4874 Red Blend
## 4875 Agiorgitiko
## 4876 Scheurebe
## 4877 Red Blend
## 4878 Chardonnay
## 4879 Red Blend
## 4880 Portuguese Red
## 4881 Nebbiolo
## 4882 Carmenère
## 4883 Carmenère
## 4884 Riesling
## 4885 White Blend
## 4886 Tempranillo
## 4887 Frappato
## 4888 Chardonnay
## 4889 Merlot
## 4890 Red Blend
## 4891 Carmenère
## 4892 Carmenère
## 4893 Red Blend
## 4894 Cabernet Sauvignon
## 4895 Syrah
## 4896 Zinfandel
## 4897 Red Blend
## 4898 Chardonnay
## 4899 Zinfandel
## 4900 Merlot
## 4901 Syrah
## 4902 Syrah
## 4903 Encruzado
## 4904 Portuguese White
## 4905 Viognier
## 4906 Portuguese White
## 4907 Nebbiolo
## 4908 Pinot Noir
## 4909 Cabernet Franc
## 4910 Alvarinho
## 4911 Portuguese Red
## 4912 Pinot Noir
## 4913 Malbec-Cabernet Sauvignon
## 4914 Zinfandel
## 4915 Nebbiolo
## 4916 Carignano
## 4917 Fernão Pires
## 4918 Portuguese White
## 4919 Cabernet Franc-Merlot
## 4920 Syrah
## 4921 Pinot Noir
## 4922 Torbato
## 4923 Chardonnay
## 4924 Albariño
## 4925 Vermentino
## 4926 Portuguese White
## 4927 Torrontés
## 4928 Shiraz-Cabernet Sauvignon
## 4929 Pinot Noir
## 4930 Pinotage
## 4931 Chardonnay
## 4932 Tinta de Toro
## 4933 Malbec
## 4934 Malbec
## 4935 Cabernet Sauvignon
## 4936 Viognier
## 4937 Syrah
## 4938 Tempranillo
## 4939 Portuguese White
## 4940 Rosé
## 4941 Rosé
## 4942 Zinfandel
## 4943 Shiraz
## 4944 Malbec
## 4945 Cabernet Sauvignon
## 4946 Syrah
## 4947 Merlot
## 4948 Portuguese Red
## 4949 Portuguese Red
## 4950 Sparkling Blend
## 4951 Bordeaux-style Red Blend
## 4952 Cabernet Sauvignon
## 4953 Sauvignon Blanc
## 4954 Zinfandel
## 4955 White Blend
## 4956 Garnacha
## 4957 Sauvignon Blanc
## 4958 Bordeaux-style Red Blend
## 4959 Syrah-Petit Verdot
## 4960 Chardonnay
## 4961 Gewürztraminer
## 4962 Pinot Bianco
## 4963 Chenin Blanc
## 4964 Cabernet Franc-Cabernet Sauvignon
## 4965 Cabernet Sauvignon
## 4966 Cabernet Sauvignon
## 4967 Garnacha Blanca
## 4968 Malbec
## 4969 Sauvignon Blanc
## 4970 Bordeaux-style Red Blend
## 4971 Sauvignon Blanc
## 4972 Syrah
## 4973 Sauvignon Blanc
## 4974 Pinot Noir
## 4975 Chardonnay
## 4976 Syrah
## 4977 Pinot Noir
## 4978 Traminer
## 4979 Gewürztraminer
## 4980 Shiraz
## 4981 Red Blend
## 4982 Bordeaux-style Red Blend
## 4983 Bordeaux-style Red Blend
## 4984 Syrah
## 4985 Aglianico
## 4986 Rhône-style Red Blend
## 4987 Sauvignon Blanc
## 4988 Sauvignon Blanc
## 4989 Riesling
## 4990 Cabernet Sauvignon
## 4991 Aglianico
## 4992 Chardonnay
## 4993 Sauvignon Blanc
## 4994 Pinot Noir
## 4995 Red Blend
## 4996 Sauvignon Blanc
## 4997 Pallagrello
## 4998 Catarratto
## 4999 Cabernet Sauvignon-Syrah
## 5000 Sauvignon Blanc
## 5001 Riesling
## 5002 Syrah
## 5003 Viognier
## 5004 Merlot
## 5005 Bordeaux-style Red Blend
## 5006 Bordeaux-style Red Blend
## 5007 Red Blend
## 5008 Tinta de Toro
## 5009 Cabernet Sauvignon-Syrah
## 5010 Bordeaux-style Red Blend
## 5011 Cabernet Sauvignon
## 5012 Riesling
## 5013 Syrah
## 5014 Cabernet Franc
## 5015 Cabernet Sauvignon
## 5016 Cabernet Sauvignon
## 5017 Cabernet Sauvignon
## 5018 Cabernet Sauvignon-Syrah
## 5019 Syrah
## 5020 Cabernet Sauvignon
## 5021 Cabernet Sauvignon
## 5022 Cabernet Sauvignon
## 5023 Cabernet Sauvignon
## 5024 Syrah
## 5025 Chardonnay
## 5026 Cabernet Sauvignon
## 5027 Cabernet Sauvignon
## 5028 Cabernet Sauvignon
## 5029 Cabernet Sauvignon
## 5030 Cabernet Sauvignon
## 5031 Petit Verdot
## 5032 Bordeaux-style Red Blend
## 5033 Bordeaux-style Red Blend
## 5034 Bordeaux-style White Blend
## 5035 Syrah
## 5036 Pinot Blanc
## 5037 Riesling
## 5038 Gewürztraminer
## 5039 White Blend
## 5040 Pinot Gris
## 5041 Chardonnay
## 5042 Cabernet Sauvignon
## 5043 Cabernet Sauvignon
## 5044 Red Blend
## 5045 Cabernet Sauvignon
## 5046 Nebbiolo
## 5047 Cabernet Sauvignon
## 5048 Chardonnay
## 5049 Cabernet Franc
## 5050 Chardonnay
## 5051 Pinot Gris
## 5052 Sauvignon Blanc
## 5053 Syrah-Cabernet Sauvignon
## 5054 Cabernet Sauvignon
## 5055 Portuguese Red
## 5056 Portuguese Red
## 5057 Zinfandel
## 5058 Chardonnay
## 5059 Malbec
## 5060 Cabernet Sauvignon
## 5061 Cabernet Sauvignon
## 5062 Sauvignon Blanc
## 5063 Syrah
## 5064 Rosé
## 5065 Nebbiolo
## 5066 Nebbiolo
## 5067 Verdelho
## 5068 Malbec
## 5069 Portuguese Red
## 5070 Pinot Noir
## 5071 Nebbiolo
## 5072 Red Blend
## 5073 White Blend
## 5074 White Blend
## 5075 Pinot Noir
## 5076 Tempranillo
## 5077 Bordeaux-style White Blend
## 5078 Cabernet Franc
## 5079 Bordeaux-style White Blend
## 5080 Bordeaux-style Red Blend
## 5081 Rosé
## 5082 Chardonnay
## 5083 Rosado
## 5084 Bordeaux-style Red Blend
## 5085 Tannat
## 5086 Morava
## 5087 Nebbiolo
## 5088 Sauvignon Blanc
## 5089 Sauvignon Blanc-Semillon
## 5090 Sauvignon Blanc
## 5091 Meritage
## 5092 Bordeaux-style Red Blend
## 5093 Cabernet Sauvignon
## 5094 Pinot Noir
## 5095 Cabernet Sauvignon
## 5096 Chardonnay
## 5097 Bordeaux-style Red Blend
## 5098 Bordeaux-style Red Blend
## 5099 Cabernet Sauvignon
## 5100 Chardonnay
## 5101 Pinot Noir
## 5102 St. Laurent
## 5103 Sauvignon Blanc
## 5104 Cabernet Sauvignon
## 5105 Pinot Noir
## 5106 Albariño
## 5107 Red Blend
## 5108 Cabernet Sauvignon
## 5109 Pinot Noir
## 5110 Grüner Veltliner
## 5111 Sparkling Blend
## 5112 Moscato
## 5113 Barbera
## 5114 Barbera
## 5115 Pinot Grigio
## 5116 Cabernet Sauvignon
## 5117 Rotgipfler
## 5118 Cabernet Sauvignon
## 5119 Pinot Noir
## 5120 Pinot Noir
## 5121 Pinot Noir
## 5122 Syrah
## 5123 Zinfandel
## 5124 Grüner Veltliner
## 5125 Gamay
## 5126 Chardonnay
## 5127 Cabernet Franc
## 5128 Zinfandel
## 5129 Grüner Veltliner
## 5130 Pinot Noir
## 5131 Gamay
## 5132 Cabernet Sauvignon
## 5133 Gamay
## 5134 Riesling
## 5135 Red Blend
## 5136 Rhône-style Red Blend
## 5137 Pinot Noir
## 5138 Red Blend
## 5139 Carmenère
## 5140 Cabernet Sauvignon
## 5141 Cabernet Sauvignon
## 5142 Chardonnay
## 5143 Rhône-style Red Blend
## 5144 Merlot
## 5145 Pinot Noir
## 5146 Chardonnay
## 5147 Bordeaux-style Red Blend
## 5148 Bordeaux-style Red Blend
## 5149 Bordeaux-style Red Blend
## 5150 Chardonnay
## 5151 Claret
## 5152 Sauvignon Blanc
## 5153 Grenache
## 5154 Chardonnay
## 5155 Chardonnay
## 5156 White Blend
## 5157 Grenache
## 5158 Grenache
## 5159 Pinot Blanc
## 5160 Pinot Gris
## 5161 Syrah
## 5162 Syrah
## 5163 Pinot Noir
## 5164 Pinot Noir
## 5165 Rosé
## 5166 Sangiovese Grosso
## 5167 Cabernet Sauvignon
## 5168 Chardonnay
## 5169 Riesling
## 5170 Dolcetto
## 5171 Red Blend
## 5172 Cabernet Sauvignon
## 5173 Sangiovese Grosso
## 5174 Red Blend
## 5175 Rhône-style Red Blend
## 5176 Grüner Veltliner
## 5177 Chardonnay
## 5178 Pinot Noir
## 5179 Pinot Noir
## 5180 Pinot Noir
## 5181 Sangiovese
## 5182 Cabernet Sauvignon
## 5183 Cabernet Sauvignon
## 5184 Red Blend
## 5185 Sangiovese
## 5186 Malbec
## 5187 Chenin Blanc
## 5188 Savagnin
## 5189 Chardonnay
## 5190 Pinot Noir
## 5191 Red Blend
## 5192 Malbec
## 5193 Sauvignon Blanc
## 5194 Riesling
## 5195 Chardonnay
## 5196 Rhône-style Red Blend
## 5197 Red Blend
## 5198 Sangiovese
## 5199 Red Blend
## 5200 Portuguese White
## 5201 Pinot Noir
## 5202 Syrah
## 5203 Cabernet Sauvignon
## 5204 Savagnin
## 5205 Cabernet Sauvignon
## 5206 Silvaner
## 5207 Pinot Gris
## 5208 Zinfandel
## 5209 Red Blend
## 5210 Chardonnay
## 5211 Pinot Noir
## 5212 Riesling
## 5213 Tempranillo Blend
## 5214 Pinot Noir
## 5215 Riesling
## 5216 Cabernet Sauvignon
## 5217 Cabernet Sauvignon
## 5218 Pinot Noir
## 5219 Pinot Noir
## 5220 Sauvignon Blanc
## 5221 Red Blend
## 5222 Pinot Noir
## 5223 Pinot Noir
## 5224 Pinot Noir
## 5225 Chardonnay
## 5226 Syrah
## 5227 Cabernet Sauvignon
## 5228 Cabernet Sauvignon
## 5229 Tempranillo
## 5230 Portuguese Red
## 5231 Pinot Noir
## 5232 Chardonnay
## 5233 Pinot Noir
## 5234 Zinfandel
## 5235 Pinot Noir
## 5236 Pinot Noir
## 5237 Sangiovese
## 5238 Sangiovese
## 5239 Red Blend
## 5240 Pedro Ximénez
## 5241 Syrah
## 5242 Sauvignon Blanc
## 5243 Sangiovese
## 5244 Red Blend
## 5245 Bordeaux-style Red Blend
## 5246 Sauvignon Blanc
## 5247 Sauvignon Blanc
## 5248 Chardonnay
## 5249 Red Blend
## 5250 Sangiovese
## 5251 Sparkling Blend
## 5252 Sangiovese
## 5253 Pinot Noir
## 5254 Cabernet Franc
## 5255 Pinot Noir
## 5256 Pinot Noir
## 5257 Cabernet Sauvignon
## 5258 Sauvignon Blanc
## 5259 Syrah
## 5260 Pinot Noir
## 5261 Bordeaux-style Red Blend
## 5262 Gewürztraminer
## 5263 Pinot Noir
## 5264 Red Blend
## 5265 Montepulciano
## 5266 Pecorino
## 5267 Merlot
## 5268 Verdicchio
## 5269 Grenache Blanc
## 5270 Pinot Blanc
## 5271 Pinot Gris
## 5272 Rhône-style Red Blend
## 5273 Chardonnay
## 5274 Sauvignon Blanc
## 5275 Montepulciano
## 5276 Riesling
## 5277 Gewürztraminer
## 5278 Sauvignon Blanc
## 5279 Red Blend
## 5280 Meritage
## 5281 Merlot
## 5282 Pinotage
## 5283 Lemberger
## 5284 Riesling
## 5285 Chenin Blanc
## 5286 Red Blend
## 5287 Syrah
## 5288 Chardonnay
## 5289 Syrah
## 5290 Pinot Noir
## 5291 Shiraz
## 5292 Moscato
## 5293 Pinot Noir
## 5294 Cabernet Sauvignon
## 5295 Sauvignon Blanc
## 5296 Red Blend
## 5297 Malbec
## 5298 Zinfandel
## 5299 Syrah
## 5300 Sangiovese Grosso
## 5301 Torrontés
## 5302 Shiraz
## 5303 Sauvignon Blanc
## 5304 Merlot
## 5305 Bonarda
## 5306 Sauvignon Blanc
## 5307 Sangiovese Grosso
## 5308 Syrah-Mourvèdre
## 5309 Malbec
## 5310 Sangiovese Grosso
## 5311 Moscato
## 5312 Rosé
## 5313 Sangiovese
## 5314 Syrah
## 5315 Malbec
## 5316 Malbec
## 5317 Rosé
## 5318 Rhône-style Red Blend
## 5319 Chardonnay
## 5320 Grüner Veltliner
## 5321 Chardonnay
## 5322 Chardonnay
## 5323 Rosé
## 5324 Chardonnay
## 5325 Tempranillo Blend
## 5326 Rosé
## 5327 Gelber Muskateller
## 5328 Zinfandel
## 5329 Syrah
## 5330 Pinot Noir
## 5331 Rosé
## 5332 Rosé
## 5333 Bordeaux-style Red Blend
## 5334 Ribolla Gialla
## 5335 Merlot
## 5336 Garnacha
## 5337 Red Blend
## 5338 Cabernet Sauvignon
## 5339 Vermentino
## 5340 Pinot Noir
## 5341 Rosé
## 5342 Rosé
## 5343 Rosé
## 5344 Zinfandel
## 5345 Pinot Grigio
## 5346 Sauvignon
## 5347 Cabernet Sauvignon
## 5348 Grüner Veltliner
## 5349 Grüner Veltliner
## 5350 Viognier
## 5351 Cabernet Sauvignon
## 5352 Red Blend
## 5353 Rhône-style Red Blend
## 5354 Grüner Veltliner
## 5355 Pinot Noir
## 5356 Pinot Noir
## 5357 Pinot Noir
## 5358 Zweigelt
## 5359 Sauvignon Blanc
## 5360 Grüner Veltliner
## 5361 Chardonnay
## 5362 Montepulciano
## 5363 Tempranillo
## 5364 Pinot Noir
## 5365 Chardonnay
## 5366 Cabernet Sauvignon
## 5367 Pinot Noir
## 5368 Pinotage
## 5369 Aleatico
## 5370 Pinot Noir
## 5371 Vernaccia
## 5372 White Blend
## 5373 Sangiovese
## 5374 Tempranillo
## 5375 Red Blend
## 5376 Rosé
## 5377 Zinfandel
## 5378 Red Blend
## 5379 Sauvignon Blanc
## 5380 Cabernet Sauvignon
## 5381 Portuguese White
## 5382 Riesling
## 5383 Pinot Noir
## 5384 Cabernet Sauvignon
## 5385 Merlot
## 5386 Pinot Grigio
## 5387 Chardonnay
## 5388 Red Blend
## 5389 Pinot Noir
## 5390 Malvasia
## 5391 Sparkling Blend
## 5392 Pinot Noir
## 5393 Petit Verdot
## 5394 Sparkling Blend
## 5395 Port
## 5396 Verdelho
## 5397 Rosé
## 5398 Chardonnay
## 5399 Viognier
## 5400 Zinfandel
## 5401 Red Blend
## 5402 Tempranillo
## 5403 Portuguese Red
## 5404 Cabernet Sauvignon
## 5405 Claret
## 5406 Tempranillo Blend
## 5407 Alvarinho
## 5408 White Blend
## 5409 Pinot Noir
## 5410 Pinot Noir
## 5411 Chardonnay
## 5412 Portuguese White
## 5413 Malbec
## 5414 Portuguese White
## 5415 Nebbiolo
## 5416 Carcajolu
## 5417 Kisi
## 5418 Nebbiolo
## 5419 Chardonnay
## 5420 Pinot Noir
## 5421 Sauvignon Blanc
## 5422 Petite Sirah
## 5423 Pinot Noir
## 5424 Pinot Noir
## 5425 Nebbiolo
## 5426 Malbec
## 5427 Cabernet Sauvignon
## 5428 Chardonnay
## 5429 Zinfandel
## 5430 Nebbiolo
## 5431 Pinot Noir
## 5432 Portuguese Red
## 5433 Red Blend
## 5434 Syrah
## 5435 Malbec
## 5436 Meritage
## 5437 Malbec
## 5438 Carmenère
## 5439 Pinot Noir
## 5440 Malbec
## 5441 Chardonnay
## 5442 Glera
## 5443 Cabernet Franc
## 5444 Gewürztraminer
## 5445 Sauvignon Blanc
## 5446 Rhône-style Red Blend
## 5447 Sparkling Blend
## 5448 Red Blend
## 5449 Red Blend
## 5450 Ribolla Gialla
## 5451 Port
## 5452 Zinfandel
## 5453 Rosé
## 5454 Port
## 5455 Port
## 5456 Glera
## 5457 Chardonnay
## 5458 Chardonnay
## 5459 Sparkling Blend
## 5460 Cabernet Franc
## 5461 Chardonnay
## 5462 Montepulciano
## 5463 Cabernet Sauvignon
## 5464 Rhône-style White Blend
## 5465 Pinot Noir
## 5466 Red Blend
## 5467 Tempranillo
## 5468 Riesling
## 5469 Pinot Noir
## 5470 Merlot
## 5471 Pinot Noir
## 5472 Bordeaux-style White Blend
## 5473 Sauvignon Blanc
## 5474 Sauvignon Blanc
## 5475 Red Blend
## 5476 Montepulciano
## 5477 Chardonnay
## 5478 Red Blend
## 5479 Merlot
## 5480 Pinot Noir
## 5481 Pinot Noir
## 5482 Pinot Gris
## 5483 Red Blend
## 5484 Chardonnay
## 5485 Sauvignon Blanc
## 5486 Chardonnay
## 5487 Rhône-style Red Blend
## 5488 Rosé
## 5489 Rosé
## 5490 Pinot Grigio
## 5491 Bordeaux-style Red Blend
## 5492 Sangiovese
## 5493 Grüner Veltliner
## 5494 Sauvignon Blanc
## 5495 Bordeaux-style Red Blend
## 5496 Cabernet Sauvignon
## 5497 Cabernet Sauvignon
## 5498 Weissburgunder
## 5499 Tinto Fino
## 5500 Bordeaux-style Red Blend
## 5501 Bordeaux-style Red Blend
## 5502 Chardonnay
## 5503 Red Blend
## 5504 Riesling
## 5505 Grüner Veltliner
## 5506 Bordeaux-style Red Blend
## 5507 Cabernet Sauvignon
## 5508 Riesling
## 5509 Cabernet Sauvignon
## 5510 Grüner Veltliner
## 5511 Grüner Veltliner
## 5512 Sangiovese
## 5513 Malbec
## 5514 Zierfandler
## 5515 Grüner Veltliner
## 5516 Chardonnay
## 5517 Sauvignon Blanc
## 5518 Portuguese White
## 5519 Carmenère
## 5520 Carmenère
## 5521 Rosé
## 5522 Pinot Noir
## 5523 Cabernet Sauvignon
## 5524 Godello
## 5525 Red Blend
## 5526 Tempranillo Blend
## 5527 Riesling
## 5528 Primitivo
## 5529 Pinot Noir
## 5530 Tempranillo Blend
## 5531 Rosé
## 5532 Verdejo
## 5533 Sauvignon Blanc
## 5534 Cabernet Sauvignon
## 5535 Garnacha Blanca
## 5536 Viognier-Chardonnay
## 5537 Sparkling Blend
## 5538 Pinot Grigio
## 5539 Chardonnay
## 5540 Sauvignon Blanc
## 5541 Garnacha
## 5542 Viura
## 5543 Carmenère
## 5544 Sauvignon Blanc
## 5545 Garnacha
## 5546 Riesling
## 5547 Chardonnay
## 5548 Viognier
## 5549 Pinot Meunier
## 5550 Red Blend
## 5551 Sauvignon
## 5552 Malbec-Merlot
## 5553 Petit Manseng
## 5554 Malbec
## 5555 White Blend
## 5556 Malbec
## 5557 Rhône-style Red Blend
## 5558 Pinot Noir
## 5559 Bordeaux-style Red Blend
## 5560 Red Blend
## 5561 Grüner Veltliner
## 5562 White Blend
## 5563 White Blend
## 5564 Malbec
## 5565 Zinfandel
## 5566 Pinot Bianco
## 5567 Syrah
## 5568 Riesling
## 5569 White Blend
## 5570 Red Blend
## 5571 Pinot Bianco
## 5572 Pinotage
## 5573 Malbec
## 5574 Cabernet Sauvignon
## 5575 Pinot Bianco
## 5576 Sauvignon Blanc
## 5577 Torrontés
## 5578 Verdicchio
## 5579 Pinot Noir
## 5580 White Blend
## 5581 Riesling
## 5582 Syrah
## 5583 Vidal Blanc
## 5584 Cabernet Blend
## 5585 Pinot Grigio
## 5586 Fumé Blanc
## 5587 Cabernet Sauvignon
## 5588 Merlot
## 5589 Cabernet Sauvignon
## 5590 White Blend
## 5591 Sangiovese
## 5592 Pinot Bianco
## 5593 White Blend
## 5594 Riesling
## 5595 Gewürztraminer
## 5596 Sauvignon Blanc
## 5597 Corvina, Rondinella, Molinara
## 5598 Malbec
## 5599 Bordeaux-style Red Blend
## 5600 Riesling
## 5601 Pinot Noir
## 5602 Riesling
## 5603 Sauvignon Blanc
## 5604 Zinfandel
## 5605 Corvina, Rondinella, Molinara
## 5606 Riesling
## 5607 Sparkling Blend
## 5608 Pinot Noir
## 5609 Corvina, Rondinella, Molinara
## 5610 Corvina, Rondinella, Molinara
## 5611 Chardonnay
## 5612 Sparkling Blend
## 5613 Riesling
## 5614 Pinot Noir
## 5615 Sauvignon Blanc
## 5616 Riesling
## 5617 Corvina, Rondinella, Molinara
## 5618 Corvina, Rondinella, Molinara
## 5619 Shiraz-Grenache
## 5620 Chardonnay
## 5621 Sherry
## 5622 Zinfandel
## 5623 Riesling
## 5624 Sémillon
## 5625 Chardonnay
## 5626 Aglianico
## 5627 Grüner Veltliner
## 5628 Palomino
## 5629 Fiano
## 5630 Merlot
## 5631 Cabernet Sauvignon
## 5632 Sauvignon Blanc
## 5633 Red Blend
## 5634 Zinfandel
## 5635 Magliocco
## 5636 Pinot Noir
## 5637 Chardonnay
## 5638 Pinot Noir
## 5639 Syrah
## 5640 Merlot
## 5641 Tempranillo
## 5642 Greco
## 5643 Pinot Noir
## 5644 Aglianico
## 5645 Red Blend
## 5646 Sparkling Blend
## 5647 Pinot Noir
## 5648 Chardonnay
## 5649 Grüner Veltliner
## 5650 Syrah
## 5651 Sangiovese
## 5652 Grüner Veltliner
## 5653 Riesling
## 5654 Zinfandel
## 5655 Cabernet Sauvignon
## 5656 Bordeaux-style Red Blend
## 5657 Verdelho
## 5658 Sauvignon Blanc
## 5659 Pinot Noir
## 5660 Gamay
## 5661 Falanghina
## 5662 Red Blend
## 5663 Petite Sirah
## 5664 Merlot
## 5665 Chardonnay
## 5666 Gamay
## 5667 Chardonnay
## 5668 Rosé
## 5669 Sauvignon Blanc
## 5670 Barbera
## 5671 Red Blend
## 5672 Grüner Veltliner
## 5673 Chardonnay
## 5674 Pinot Noir
## 5675 Pinot Noir
## 5676 Mourvèdre
## 5677 Albariño
## 5678 Red Blend
## 5679 Merlot
## 5680 Chardonnay
## 5681 Riesling
## 5682 Gelber Muskateller
## 5683 Riesling
## 5684 Pinot Noir
## 5685 Nebbiolo
## 5686 Barbera
## 5687 Pinot Noir
## 5688 Viognier
## 5689 Champagne Blend
## 5690 Champagne Blend
## 5691 Nebbiolo
## 5692 Nebbiolo
## 5693 Chardonnay
## 5694 Bordeaux-style Red Blend
## 5695 Bordeaux-style Red Blend
## 5696 Sangiovese
## 5697 Syrah
## 5698 Chardonnay
## 5699 Cabernet Franc
## 5700 Syrah
## 5701 Sangiovese
## 5702 Chardonnay
## 5703 Pinot Noir
## 5704 Zierfandler
## 5705 Nebbiolo
## 5706 Merlot
## 5707 Syrah
## 5708 Grenache-Carignan
## 5709 Grüner Veltliner
## 5710 Malbec
## 5711 Grüner Veltliner
## 5712 Grenache
## 5713 Cabernet Sauvignon
## 5714 Sangiovese
## 5715 Syrah
## 5716 Bordeaux-style Red Blend
## 5717 Bordeaux-style Red Blend
## 5718 Bordeaux-style Red Blend
## 5719 Bordeaux-style Red Blend
## 5720 Bordeaux-style Red Blend
## 5721 Bordeaux-style Red Blend
## 5722 Pinot Grigio
## 5723 Pinot Noir
## 5724 Sauvignon Blanc
## 5725 Riesling
## 5726 Rosé
## 5727 Nebbiolo
## 5728 Cabernet Sauvignon
## 5729 Cabernet Sauvignon
## 5730 Pinot Noir
## 5731 Red Blend
## 5732 Rosé
## 5733 Cabernet Sauvignon
## 5734 Bordeaux-style Red Blend
## 5735 Rosé
## 5736 Rosé
## 5737 Rosé
## 5738 Nascetta
## 5739 Bordeaux-style Red Blend
## 5740 Grenache-Syrah
## 5741 Petite Sirah
## 5742 Lagrein
## 5743 Lagrein
## 5744 Sauvignon Blanc
## 5745 Chardonnay
## 5746 Grüner Veltliner
## 5747 Rosé
## 5748 Chardonnay
## 5749 Rhône-style White Blend
## 5750 Pinot Noir
## 5751 Syrah
## 5752 Chardonnay
## 5753 Pinot Noir
## 5754 Pinot Noir
## 5755 Pinot Noir
## 5756 Syrah
## 5757 Zinfandel
## 5758 Zinfandel
## 5759 Pinot Noir
## 5760 Syrah
## 5761 Pinot Noir
## 5762 Sauvignon Blanc
## 5763 Pinot Noir
## 5764 Pinot Noir
## 5765 Riesling
## 5766 Pinot Gris
## 5767 Riesling
## 5768 Rosé
## 5769 Cabernet Sauvignon
## 5770 Sauvignon Blanc
## 5771 Pinot Noir
## 5772 Pinot Noir
## 5773 Rhône-style Red Blend
## 5774 Pinot Noir
## 5775 Red Blend
## 5776 Red Blend
## 5777 Red Blend
## 5778 Tempranillo
## 5779 Red Blend
## 5780 Chardonnay
## 5781 Cabernet Sauvignon
## 5782 Chardonnay
## 5783 Chardonnay
## 5784 Sauvignon Blanc
## 5785 Rosé
## 5786 Cabernet Sauvignon
## 5787 Malbec
## 5788 Malbec
## 5789 Pinot Noir
## 5790 Cabernet Sauvignon
## 5791 Riesling
## 5792 Rosé
## 5793 Pinot Noir
## 5794 Rhône-style White Blend
## 5795 Sauvignon Blanc
## 5796 Merlot
## 5797 Sauvignon Blanc
## 5798 Rosé
## 5799 Tempranillo
## 5800 Red Blend
## 5801 Malbec
## 5802 Red Blend
## 5803 Rosé
## 5804 Cabernet Sauvignon
## 5805 Cabernet Sauvignon
## 5806 Rosé
## 5807 Pinot Noir
## 5808 Chardonnay
## 5809 Merlot
## 5810 Portuguese White
## 5811 Portuguese White
## 5812 Pinot Noir
## 5813 Portuguese White
## 5814 Rosado
## 5815 Port
## 5816 Chardonnay
## 5817 White Blend
## 5818 Chardonnay
## 5819 Portuguese Sparkling
## 5820 White Blend
## 5821 Malbec
## 5822 Chardonnay
## 5823 Portuguese Sparkling
## 5824 Rosado
## 5825 Torrontés
## 5826 Pinot Noir
## 5827 Portuguese White
## 5828 Pinot Noir
## 5829 Siria
## 5830 Viognier
## 5831 Monastrell
## 5832 Shiraz
## 5833 Portuguese White
## 5834 Portuguese White
## 5835 Portuguese Red
## 5836 Sangiovese
## 5837 Nebbiolo
## 5838 Cabernet Sauvignon
## 5839 Cabernet Sauvignon
## 5840 Bordeaux-style Red Blend
## 5841 Viognier
## 5842 Marsanne
## 5843 Red Blend
## 5844 Sauvignon Blanc
## 5845 Cabernet Sauvignon
## 5846 Grenache
## 5847 Rhône-style Red Blend
## 5848 Cabernet Sauvignon
## 5849 Red Blend
## 5850 Encruzado
## 5851 Portuguese Red
## 5852 Portuguese Red
## 5853 Sparkling Blend
## 5854 Bordeaux-style Red Blend
## 5855 Bordeaux-style Red Blend
## 5856 Bordeaux-style Red Blend
## 5857 Bordeaux-style Red Blend
## 5858 Malbec
## 5859 Bordeaux-style Red Blend
## 5860 Bordeaux-style Red Blend
## 5861 Bordeaux-style Red Blend
## 5862 Falanghina
## 5863 Vernaccia
## 5864 Pinot Noir
## 5865 Syrah
## 5866 Rosé
## 5867 Chardonnay
## 5868 Cabernet Sauvignon
## 5869 Pinot Noir
## 5870 Red Blend
## 5871 Merlot
## 5872 Zinfandel
## 5873 Cabernet Sauvignon
## 5874 Chardonnay
## 5875 Pinot Noir
## 5876 Carmenère
## 5877 Pinot Noir
## 5878 Claret
## 5879 G-S-M
## 5880 Riesling
## 5881 Red Blend
## 5882 Cabernet Sauvignon
## 5883 Pinot Noir
## 5884 Chardonnay
## 5885 Merlot
## 5886 Pinot Grigio
## 5887 Albariño
## 5888 Pinot Noir
## 5889 Chardonnay
## 5890 Sparkling Blend
## 5891 Riesling
## 5892 Malbec
## 5893 Malbec
## 5894 Pinot Noir
## 5895 Sémillon
## 5896 Torrontés
## 5897 Cabernet Sauvignon
## 5898 Sauvignon Blanc
## 5899 Zinfandel
## 5900 Chardonnay
## 5901 Cabernet Sauvignon
## 5902 Cabernet Sauvignon
## 5903 Red Blend
## 5904 Cabernet Sauvignon
## 5905 Portuguese Red
## 5906 Sémillon
## 5907 Malbec
## 5908 Sémillon
## 5909 Torrontés
## 5910 Cabernet Sauvignon-Malbec
## 5911 Chardonnay
## 5912 Chardonnay
## 5913 Pinot Noir
## 5914 Pinot Noir
## 5915 Sauvignon Blanc
## 5916 Cabernet Sauvignon
## 5917 Pinot Noir
## 5918 Frappato
## 5919 Cabernet Franc
## 5920 Sauvignon Blanc
## 5921 Cabernet Sauvignon
## 5922 Merlot
## 5923 Red Blend
## 5924 Aglianico
## 5925 Cabernet Sauvignon
## 5926 Cabernet Sauvignon
## 5927 Syrah
## 5928 Chardonnay
## 5929 Sparkling Blend
## 5930 Red Blend
## 5931 Bordeaux-style Red Blend
## 5932 Bordeaux-style Red Blend
## 5933 Bordeaux-style Red Blend
## 5934 Bordeaux-style Red Blend
## 5935 Champagne Blend
## 5936 Champagne Blend
## 5937 Bordeaux-style Red Blend
## 5938 Bordeaux-style Red Blend
## 5939 Bordeaux-style Red Blend
## 5940 Bordeaux-style Red Blend
## 5941 Bordeaux-style Red Blend
## 5942 Bordeaux-style Red Blend
## 5943 Bordeaux-style Red Blend
## 5944 Bordeaux-style Red Blend
## 5945 Cabernet Sauvignon
## 5946 Pinot Noir
## 5947 Bordeaux-style Red Blend
## 5948 Pinot Noir
## 5949 Red Blend
## 5950 Malbec-Syrah
## 5951 Sauvignon Blanc
## 5952 Cabernet Sauvignon
## 5953 Greco
## 5954 Chardonnay
## 5955 Cabernet Sauvignon
## 5956 Chardonnay
## 5957 Bordeaux-style White Blend
## 5958 Bordeaux-style Red Blend
## 5959 Bordeaux-style Red Blend
## 5960 Red Blend
## 5961 Chardonnay
## 5962 Asprinio
## 5963 Cabernet Sauvignon
## 5964 Sauvignon Blanc
## 5965 Sauvignon Blanc
## 5966 Rosé
## 5967 White Blend
## 5968 Pinot Noir
## 5969 Pinot Noir
## 5970 Red Blend
## 5971 Grillo
## 5972 Grillo
## 5973 Catarratto
## 5974 Merlot
## 5975 Chardonnay
## 5976 Cabernet Sauvignon
## 5977 Merlot
## 5978 Alsace white blend
## 5979 Chardonnay
## 5980 Chardonnay
## 5981 Pinot Noir
## 5982 Grillo
## 5983 Cabernet Sauvignon
## 5984 Pinot Noir
## 5985 Chardonnay
## 5986 White Blend
## 5987 Catarratto
## 5988 Chardonnay
## 5989 Aglianico
## 5990 Syrah
## 5991 Chardonnay
## 5992 Grillo
## 5993 White Blend
## 5994 Garnacha Blanca
## 5995 Chardonnay
## 5996 Chardonnay
## 5997 Feteascǎ Regalǎ
## 5998 Sparkling Blend
## 5999 Dolcetto
## 6000 Red Blend
## 6001 Pinot Gris
## 6002 Red Blend
## 6003 Red Blend
## 6004 Red Blend
## 6005 Chardonnay
## 6006 Tannat
## 6007 Cabernet Sauvignon
## 6008 Port
## 6009 Syrah
## 6010 Sangiovese
## 6011 Chardonnay
## 6012 Zinfandel
## 6013 Cabernet Sauvignon
## 6014 Port
## 6015 Red Blend
## 6016 Red Blend
## 6017 Chardonnay
## 6018 Roussanne
## 6019 Pinot Noir
## 6020 Pinot Noir
## 6021 Red Blend
## 6022 Cabernet Sauvignon-Merlot
## 6023 Chardonnay
## 6024 Cabernet Sauvignon
## 6025 Portuguese White
## 6026 Red Blend
## 6027 Red Blend
## 6028 Champagne Blend
## 6029 Pinot Noir
## 6030 Champagne Blend
## 6031 Pinot Noir
## 6032 Pinot Noir
## 6033 Champagne Blend
## 6034 Champagne Blend
## 6035 Pinot Noir
## 6036 Cabernet Sauvignon
## 6037 Zinfandel
## 6038 Champagne Blend
## 6039 Champagne Blend
## 6040 Champagne Blend
## 6041 Pinot Noir
## 6042 Pinot Noir
## 6043 Pinot Noir
## 6044 Champagne Blend
## 6045 Bordeaux-style White Blend
## 6046 Pinot Noir
## 6047 Pinot Noir
## 6048 Pinot Noir
## 6049 Champagne Blend
## 6050 Shiraz
## 6051 Champagne Blend
## 6052 Pinot Noir
## 6053 Zinfandel
## 6054 Pinot Noir
## 6055 Pinot Noir
## 6056 Champagne Blend
## 6057 Zinfandel
## 6058 Red Blend
## 6059 Rosé
## 6060 Cabernet Franc
## 6061 Rosé
## 6062 Cabernet Sauvignon
## 6063 Riesling
## 6064 Sauvignon Blanc
## 6065 Red Blend
## 6066 Tempranillo
## 6067 Red Blend
## 6068 Sangiovese
## 6069 Red Blend
## 6070 Sangiovese
## 6071 Red Blend
## 6072 Champagne Blend
## 6073 Cabernet Sauvignon
## 6074 Rhône-style Red Blend
## 6075 Syrah
## 6076 Red Blend
## 6077 Albariño
## 6078 Red Blend
## 6079 Cabernet Sauvignon
## 6080 Grüner Veltliner
## 6081 Tempranillo
## 6082 Sangiovese
## 6083 Sangiovese
## 6084 Merlot
## 6085 Syrah
## 6086 Moscato
## 6087 Sauvignon Blanc
## 6088 Zinfandel
## 6089 Malbec
## 6090 Pinot Noir
## 6091 Cabernet Sauvignon
## 6092 Cabernet Sauvignon
## 6093 Torrontés
## 6094 Tempranillo
## 6095 Cabernet Sauvignon
## 6096 Nebbiolo
## 6097 Chardonnay
## 6098 Sparkling Blend
## 6099 Nebbiolo
## 6100 Alvarinho
## 6101 Chardonnay
## 6102 Red Blend
## 6103 Portuguese Red
## 6104 Portuguese White
## 6105 Portuguese White
## 6106 Chardonnay
## 6107 Touriga Nacional
## 6108 Chardonnay
## 6109 Chardonnay
## 6110 Portuguese Sparkling
## 6111 Portuguese Red
## 6112 Zinfandel
## 6113 Cannonau
## 6114 Red Blend
## 6115 Sauvignon Blanc
## 6116 Chardonnay
## 6117 Pinot Noir
## 6118 Pinot Noir
## 6119 Pinot Noir
## 6120 Tempranillo
## 6121 Tempranillo
## 6122 Nebbiolo
## 6123 Cabernet Sauvignon
## 6124 Cabernet Sauvignon
## 6125 Pinot Noir
## 6126 Pinot Noir
## 6127 Pinot Noir
## 6128 Pinot Noir
## 6129 G-S-M
## 6130 Champagne Blend
## 6131 Champagne Blend
## 6132 Pinot Noir
## 6133 Cabernet Sauvignon
## 6134 Portuguese Red
## 6135 Nebbiolo
## 6136 Cabernet Sauvignon
## 6137 Chardonnay
## 6138 Chenin Blanc
## 6139 Nebbiolo
## 6140 Chardonnay
## 6141 Nebbiolo
## 6142 Red Blend
## 6143 Pinot Noir
## 6144 Pinot Noir
## 6145 Nebbiolo
## 6146 Petite Sirah
## 6147 Cabernet Sauvignon
## 6148 Petite Sirah
## 6149 Rosé
## 6150 Bordeaux-style White Blend
## 6151 Sauvignon Blanc
## 6152 Pinot Noir
## 6153 Chardonnay
## 6154 Sauvignon Blanc
## 6155 Cabernet Sauvignon
## 6156 Red Blend
## 6157 Rosé
## 6158 Sparkling Blend
## 6159 Zinfandel
## 6160 Prosecco
## 6161 Zinfandel
## 6162 Bordeaux-style White Blend
## 6163 Bordeaux-style White Blend
## 6164 Chardonnay
## 6165 Chardonnay
## 6166 Bordeaux-style White Blend
## 6167 Riesling
## 6168 Rosé
## 6169 Champagne Blend
## 6170 Champagne Blend
## 6171 Pinot Noir
## 6172 Rosé
## 6173 Bordeaux-style Red Blend
## 6174 Rosado
## 6175 Lambrusco Grasparossa
## 6176 Lambrusco Grasparossa
## 6177 Tempranillo
## 6178 Chardonnay
## 6179 Chardonnay
## 6180 Gamay
## 6181 G-S-M
## 6182 Marselan
## 6183 Zinfandel
## 6184 Albariño
## 6185 Viura
## 6186 Chardonnay
## 6187 Verdejo
## 6188 Lambrusco
## 6189 Chardonnay
## 6190 Tocai Friulano
## 6191 Red Blend
## 6192 Nebbiolo
## 6193 Mourvèdre
## 6194 Chardonnay
## 6195 Chardonnay
## 6196 Barbera
## 6197 Chardonnay
## 6198 Petit Verdot
## 6199 Grüner Veltliner
## 6200 Riesling
## 6201 Malbec-Syrah
## 6202 Malbec
## 6203 Syrah
## 6204 Chardonnay
## 6205 Malbec
## 6206 Sémillon
## 6207 Pinot Grigio
## 6208 Portuguese Red
## 6209 Cabernet Franc
## 6210 Portuguese White
## 6211 Tempranillo
## 6212 Zinfandel
## 6213 Cabernet Franc
## 6214 Chardonnay
## 6215 Chardonnay
## 6216 Chardonnay
## 6217 Cabernet Franc
## 6218 Chardonnay
## 6219 Syrah
## 6220 Portuguese White
## 6221 Cabernet Franc
## 6222 Pinot Gris
## 6223 Cabernet Sauvignon
## 6224 Sauvignon Blanc
## 6225 Chardonnay
## 6226 Portuguese Red
## 6227 Portuguese Red
## 6228 Rosé
## 6229 Portuguese White
## 6230 Chardonnay
## 6231 Schiava
## 6232 White Blend
## 6233 Pinot Nero
## 6234 Alfrocheiro
## 6235 Cabernet Sauvignon
## 6236 Pinot Noir
## 6237 Grenache Blanc
## 6238 Rhône-style White Blend
## 6239 Melon
## 6240 Altesse
## 6241 Melon
## 6242 Riesling
## 6243 Grenache
## 6244 Pinot Grigio
## 6245 Red Blend
## 6246 Riesling
## 6247 Carmenère
## 6248 Pinot Noir
## 6249 Tempranillo
## 6250 Portuguese Red
## 6251 Turbiana
## 6252 Portuguese Red
## 6253 Turbiana
## 6254 Portuguese White
## 6255 Viognier
## 6256 Port
## 6257 Zinfandel
## 6258 Cabernet Sauvignon
## 6259 Zinfandel
## 6260 Sauvignon
## 6261 Cabernet Sauvignon
## 6262 Merlot
## 6263 Bordeaux-style Red Blend
## 6264 Chardonnay
## 6265 Cabernet Sauvignon
## 6266 Cabernet Sauvignon
## 6267 Petite Sirah
## 6268 Viognier
## 6269 Pinot Noir
## 6270 Pinot Noir
## 6271 Cabernet Sauvignon
## 6272 Bordeaux-style Red Blend
## 6273 Riesling
## 6274 Cabernet Sauvignon
## 6275 Pinot Noir
## 6276 Chardonnay
## 6277 Cabernet Sauvignon
## 6278 Pinot Noir
## 6279 Pinot Noir
## 6280 Cabernet Sauvignon
## 6281 Chardonnay
## 6282 Syrah
## 6283 Pinot Noir
## 6284 Chardonnay
## 6285 Cabernet Sauvignon
## 6286 Chardonnay
## 6287 Cabernet Sauvignon
## 6288 Cabernet Sauvignon
## 6289 Zinfandel
## 6290 Pinot Noir
## 6291 Portuguese Red
## 6292 Sauvignon Blanc
## 6293 Cabernet Sauvignon
## 6294 Cabernet Franc
## 6295 Red Blend
## 6296 Viognier
## 6297 Petite Sirah
## 6298 Portuguese Red
## 6299 Grenache Blanc
## 6300 Cabernet Sauvignon
## 6301 Pinot Noir
## 6302 Red Blend
## 6303 Sparkling Blend
## 6304 Port
## 6305 Chenin Blanc
## 6306 Red Blend
## 6307 Barbera
## 6308 Syrah
## 6309 Red Blend
## 6310 Red Blend
## 6311 Chardonnay
## 6312 Petite Sirah
## 6313 Chardonnay-Semillon
## 6314 Zinfandel
## 6315 Sangiovese
## 6316 Glera
## 6317 Chenin Blanc-Chardonnay
## 6318 Melon
## 6319 Pinot Noir
## 6320 Chardonnay
## 6321 Melon
## 6322 Glera
## 6323 Red Blend
## 6324 Pinot Noir
## 6325 Sparkling Blend
## 6326 Sparkling Blend
## 6327 Chardonnay
## 6328 Pinot Noir
## 6329 Bordeaux-style Red Blend
## 6330 Bordeaux-style Red Blend
## 6331 Pinot Noir
## 6332 Pinot Gris
## 6333 Pinot Noir
## 6334 Pinot Noir
## 6335 Pinot Meunier
## 6336 Champagne Blend
## 6337 Riesling
## 6338 Glera
## 6339 Champagne Blend
## 6340 Pinot Grigio
## 6341 Mourvèdre
## 6342 Viognier
## 6343 Cabernet Sauvignon
## 6344 Tempranillo
## 6345 Merlot
## 6346 Zinfandel
## 6347 Zinfandel
## 6348 Spätburgunder
## 6349 Port
## 6350 Bordeaux-style Red Blend
## 6351 Cabernet Sauvignon
## 6352 Nebbiolo
## 6353 Riesling
## 6354 Chardonnay
## 6355 Zinfandel
## 6356 Vermentino
## 6357 Nebbiolo
## 6358 Chardonnay
## 6359 Pinot Noir
## 6360 Shiraz
## 6361 Nebbiolo
## 6362 Zinfandel
## 6363 Chardonnay
## 6364 Chardonnay
## 6365 Nebbiolo
## 6366 Pinot Noir
## 6367 Chardonnay
## 6368 Cabernet Franc
## 6369 Nebbiolo
## 6370 Nebbiolo
## 6371 Syrah
## 6372 Chardonnay
## 6373 Chardonnay
## 6374 Shiraz
## 6375 Portuguese Red
## 6376 Red Blend
## 6377 Chenin Blanc
## 6378 Malbec
## 6379 Rhône-style Red Blend
## 6380 Malbec-Syrah
## 6381 Chenin Blanc
## 6382 Red Blend
## 6383 White Blend
## 6384 Chardonnay
## 6385 Portuguese White
## 6386 Red Blend
## 6387 Portuguese Red
## 6388 Glera
## 6389 Sauvignon Blanc
## 6390 Portuguese White
## 6391 Portuguese Red
## 6392 Merlot-Malbec
## 6393 Cabernet Franc
## 6394 Riesling
## 6395 Malbec-Syrah
## 6396 Chenin Blanc
## 6397 Malbec-Cabernet Sauvignon
## 6398 Glera
## 6399 Rosé
## 6400 Portuguese Red
## 6401 Baga
## 6402 Pinot Noir
## 6403 Cabernet Sauvignon
## 6404 Sauvignon Blanc
## 6405 Rosé
## 6406 Cabernet Sauvignon
## 6407 Corvina
## 6408 Zweigelt
## 6409 Riesling
## 6410 Trebbiano
## 6411 Pinot Noir
## 6412 Zinfandel
## 6413 Sauvignon Blanc
## 6414 Viognier
## 6415 Sauvignon Blanc
## 6416 Cabernet Sauvignon
## 6417 White Blend
## 6418 Chardonnay
## 6419 Chenin Blanc
## 6420 Sauvignon Blanc
## 6421 Cabernet Sauvignon
## 6422 Sauvignon Blanc
## 6423 Merlot
## 6424 Bordeaux-style Red Blend
## 6425 Sangiovese Grosso
## 6426 Bordeaux-style Red Blend
## 6427 Champagne Blend
## 6428 Bordeaux-style Red Blend
## 6429 Bordeaux-style White Blend
## 6430 Bordeaux-style Red Blend
## 6431 Bordeaux-style White Blend
## 6432 Cabernet Sauvignon
## 6433 Cabernet Sauvignon
## 6434 Bordeaux-style Red Blend
## 6435 Bordeaux-style Red Blend
## 6436 Bordeaux-style Red Blend
## 6437 Sangiovese Grosso
## 6438 Tinta de Toro
## 6439 Chardonnay
## 6440 Sangiovese Grosso
## 6441 Bordeaux-style Red Blend
## 6442 Bordeaux-style Red Blend
## 6443 Bordeaux-style Red Blend
## 6444 Bordeaux-style Red Blend
## 6445 Bordeaux-style Red Blend
## 6446 Sangiovese Grosso
## 6447 Bordeaux-style Red Blend
## 6448 Bordeaux-style Red Blend
## 6449 Cabernet Sauvignon
## 6450 Champagne Blend
## 6451 Sangiovese Grosso
## 6452 Grenache
## 6453 Corvina, Rondinella, Molinara
## 6454 Chardonnay
## 6455 Cabernet Sauvignon
## 6456 Syrah
## 6457 Chardonnay
## 6458 Syrah
## 6459 Pinot Noir
## 6460 Pinot Noir
## 6461 Pinot Noir
## 6462 Cabernet Sauvignon-Syrah
## 6463 Rosé
## 6464 Corvina, Rondinella, Molinara
## 6465 White Blend
## 6466 Riesling
## 6467 Corvina, Rondinella, Molinara
## 6468 Syrah
## 6469 Chardonnay
## 6470 Corvina, Rondinella, Molinara
## 6471 Chardonnay
## 6472 Zinfandel
## 6473 Corvina, Rondinella, Molinara
## 6474 Syrah
## 6475 Red Blend
## 6476 Bordeaux-style Red Blend
## 6477 Syrah
## 6478 Champagne Blend
## 6479 Corvina, Rondinella, Molinara
## 6480 Cabernet Sauvignon
## 6481 Portuguese White
## 6482 Portuguese Red
## 6483 Pinot Noir
## 6484 Sparkling Blend
## 6485 Montepulciano
## 6486 Riesling
## 6487 Portuguese Red
## 6488 Red Blend
## 6489 Red Blend
## 6490 Pinot Noir
## 6491 Petite Sirah
## 6492 Albariño
## 6493 Red Blend
## 6494 Cabernet Sauvignon
## 6495 Cabernet Sauvignon
## 6496 Red Blend
## 6497 Sparkling Blend
## 6498 Nebbiolo
## 6499 Red Blend
## 6500 Montepulciano
## 6501 Cabernet Sauvignon
## 6502 Portuguese Red
## 6503 Syrah
## 6504 Portuguese Red
## 6505 Bonarda
## 6506 Sparkling Blend
## 6507 Sauvignon Blanc
## 6508 Red Blend
## 6509 Bonarda
## 6510 Albariño
## 6511 Chardonnay
## 6512 Tempranillo
## 6513 Cabernet Sauvignon
## 6514 Chardonnay
## 6515 Cabernet Franc-Merlot
## 6516 Pinot Noir
## 6517 Gewürztraminer
## 6518 Norton
## 6519 Chardonnay
## 6520 Pinot Noir
## 6521 Chardonnay
## 6522 Pinot Noir
## 6523 Montepulciano
## 6524 Tempranillo
## 6525 Norton
## 6526 Cabernet Sauvignon
## 6527 Viognier
## 6528 Cabernet Franc
## 6529 Alicante Bouschet
## 6530 Tempranillo
## 6531 Tempranillo
## 6532 Cabernet Sauvignon
## 6533 Sparkling Blend
## 6534 Pinot Noir
## 6535 Pinot Grigio
## 6536 Vermentino
## 6537 Chardonnay
## 6538 Chardonnay
## 6539 Chardonnay
## 6540 Cabernet Franc
## 6541 Sauvignon Blanc
## 6542 Pinot Noir
## 6543 Sauvignon Blanc
## 6544 Carmenère
## 6545 Viognier
## 6546 Sauvignon Blanc
## 6547 Riesling
## 6548 Tempranillo
## 6549 Carmenère
## 6550 Viognier
## 6551 Riesling
## 6552 Sauvignon Blanc
## 6553 Viognier
## 6554 Malbec
## 6555 Malbec
## 6556 Pinot Noir
## 6557 Pinot Noir
## 6558 Graciano
## 6559 Pinot Grigio
## 6560 Seyval Blanc
## 6561 Gewürztraminer
## 6562 Chardonnay
## 6563 Merlot
## 6564 Blanc du Bois
## 6565 Sparkling Blend
## 6566 Tannat
## 6567 Sauvignon Blanc
## 6568 Primitivo
## 6569 Sauvignon Blanc
## 6570 Chardonnay
## 6571 Pinot Noir
## 6572 Chardonnay
## 6573 Chardonnay
## 6574 Chardonnay
## 6575 Syrah
## 6576 Tokaji
## 6577 Chardonnay
## 6578 Chardonnay
## 6579 Cabernet Sauvignon
## 6580 Cabernet Sauvignon
## 6581 Cabernet Sauvignon
## 6582 Pinot Noir
## 6583 Chardonnay
## 6584 Pinot Noir
## 6585 Syrah
## 6586 Chardonnay
## 6587 Chardonnay
## 6588 Cabernet Sauvignon
## 6589 Syrah
## 6590 Syrah
## 6591 Sangiovese
## 6592 Pinot Noir
## 6593 Sangiovese
## 6594 Melon
## 6595 Chardonnay
## 6596 Vernaccia
## 6597 Sangiovese
## 6598 Zinfandel
## 6599 Gamay
## 6600 Cabernet Sauvignon
## 6601 Gamay
## 6602 Vernaccia
## 6603 Red Blend
## 6604 Sangiovese
## 6605 Pinot Noir
## 6606 Sauvignon Blanc
## 6607 Vernaccia
## 6608 Sauvignon Blanc
## 6609 Melon
## 6610 Sauvignon Blanc
## 6611 Chardonnay
## 6612 Chardonnay
## 6613 Cabernet Sauvignon
## 6614 Sauvignon Blanc
## 6615 Chardonnay
## 6616 Pinot Nero
## 6617 Cabernet Sauvignon
## 6618 Pinot Noir
## 6619 Cabernet Sauvignon
## 6620 Riesling
## 6621 Glera
## 6622 Mourvèdre
## 6623 Portuguese White
## 6624 Red Blend
## 6625 Pinot Noir
## 6626 White Blend
## 6627 Sangiovese
## 6628 Viognier
## 6629 Sauvignon Blanc
## 6630 Semillon-Sauvignon Blanc
## 6631 Merlot
## 6632 Garganega
## 6633 Syrah
## 6634 Pinot Gris
## 6635 Malbec
## 6636 Red Blend
## 6637 Chardonnay
## 6638 Chardonnay
## 6639 Glera
## 6640 Nebbiolo
## 6641 Zinfandel
## 6642 Chardonnay
## 6643 Sauvignon Blanc
## 6644 Chardonnay
## 6645 Pinot Noir
## 6646 Chardonnay
## 6647 Chardonnay
## 6648 Welschriesling
## 6649 Chardonnay
## 6650 Chardonnay
## 6651 Chardonnay
## 6652 Chardonnay
## 6653 Pinot Noir
## 6654 Chardonnay
## 6655 Chardonnay
## 6656 Chardonnay
## 6657 Syrah
## 6658 Sauvignon Blanc
## 6659 Rosé
## 6660 Pinot Noir
## 6661 Malbec
## 6662 Malbec
## 6663 Chardonnay
## 6664 Chardonnay
## 6665 Pinot Noir
## 6666 Cabernet Sauvignon
## 6667 Sauvignon Blanc
## 6668 Chardonnay
## 6669 G-S-M
## 6670 Red Blend
## 6671 Chardonnay
## 6672 Syrah
## 6673 Bordeaux-style Red Blend
## 6674 Shiraz
## 6675 Cabernet Sauvignon
## 6676 Cabernet Sauvignon
## 6677 Cabernet Sauvignon
## 6678 Portuguese Red
## 6679 Riesling
## 6680 Red Blend
## 6681 Red Blend
## 6682 Cabernet Sauvignon
## 6683 Bordeaux-style Red Blend
## 6684 Nebbiolo
## 6685 Syrah
## 6686 Riesling
## 6687 Zinfandel
## 6688 Petit Verdot
## 6689 Cabernet Sauvignon
## 6690 Nebbiolo
## 6691 Syrah
## 6692 Gewürztraminer
## 6693 Nebbiolo
## 6694 Zinfandel
## 6695 Nebbiolo
## 6696 Riesling
## 6697 Syrah
## 6698 Pinot Noir
## 6699 Red Blend
## 6700 Pinot Noir
## 6701 Sparkling Blend
## 6702 Cabernet Sauvignon
## 6703 Cabernet Sauvignon
## 6704 Cinsault
## 6705 Red Blend
## 6706 Monastrell
## 6707 Merlot
## 6708 Barbera
## 6709 Pinot Noir
## 6710 Red Blend
## 6711 Rhône-style Red Blend
## 6712 Bordeaux-style Red Blend
## 6713 Cabernet Franc
## 6714 Nebbiolo
## 6715 Rhône-style Red Blend
## 6716 Melon
## 6717 Red Blend
## 6718 Red Blend
## 6719 Lemberger
## 6720 Cabernet Sauvignon
## 6721 Cabernet Sauvignon
## 6722 Petite Sirah
## 6723 Chardonnay
## 6724 Bordeaux-style Red Blend
## 6725 Pinot Noir
## 6726 Monastrell
## 6727 Albana
## 6728 Pinot Noir
## 6729 Cabernet Sauvignon-Syrah
## 6730 Sparkling Blend
## 6731 Pinot Noir
## 6732 Pinot Noir
## 6733 Rhône-style Red Blend
## 6734 Pinot Noir
## 6735 Pinot Noir
## 6736 Pinot Noir
## 6737 Grüner Veltliner
## 6738 Chardonnay
## 6739 Cabernet Sauvignon
## 6740 Cabernet Sauvignon
## 6741 Pinot Noir
## 6742 Moscadello
## 6743 Cabernet Sauvignon
## 6744 Pinot Noir
## 6745 Pinot Noir
## 6746 Bordeaux-style Red Blend
## 6747 G-S-M
## 6748 Pinot Noir
## 6749 Chenin Blanc
## 6750 Sauvignon Blanc
## 6751 Sangiovese
## 6752 Grüner Veltliner
## 6753 Malbec
## 6754 Red Blend
## 6755 Pinot Noir
## 6756 Syrah
## 6757 Grüner Veltliner
## 6758 Sangiovese
## 6759 Riesling
## 6760 Sangiovese
## 6761 Sauvignon Blanc
## 6762 Grüner Veltliner
## 6763 Zierfandler
## 6764 White Blend
## 6765 Grüner Veltliner
## 6766 Merlot
## 6767 Malbec-Cabernet Sauvignon
## 6768 Cabernet Sauvignon
## 6769 Albariño
## 6770 Sangiovese
## 6771 Sangiovese
## 6772 Bordeaux-style Red Blend
## 6773 Bordeaux-style Red Blend
## 6774 Bordeaux-style Red Blend
## 6775 Bordeaux-style Red Blend
## 6776 Bordeaux-style Red Blend
## 6777 Melon
## 6778 Pinot Noir
## 6779 Pinotage
## 6780 Cabernet Sauvignon-Carmenère
## 6781 Petite Sirah
## 6782 Red Blend
## 6783 Pinot Noir
## 6784 Pinot Noir
## 6785 White Blend
## 6786 Chenin Blanc
## 6787 Viognier
## 6788 Tempranillo Blend
## 6789 Chardonnay
## 6790 Red Blend
## 6791 Cabernet Sauvignon
## 6792 Grüner Veltliner
## 6793 Shiraz
## 6794 Rhône-style Red Blend
## 6795 Verdejo
## 6796 Sangiovese Grosso
## 6797 Red Blend
## 6798 Bordeaux-style Red Blend
## 6799 Sangiovese Grosso
## 6800 Bordeaux-style Red Blend
## 6801 Merlot
## 6802 Sangiovese Grosso
## 6803 Cabernet Sauvignon
## 6804 Pinot Noir
## 6805 Shiraz
## 6806 Sangiovese Grosso
## 6807 Red Blend
## 6808 Champagne Blend
## 6809 Sangiovese Grosso
## 6810 Syrah-Viognier
## 6811 Rosé
## 6812 Tempranillo-Cabernet Sauvignon
## 6813 Cabernet Sauvignon-Tempranillo
## 6814 Bordeaux-style Red Blend
## 6815 Bordeaux-style Red Blend
## 6816 Bordeaux-style Red Blend
## 6817 Bordeaux-style Red Blend
## 6818 Bordeaux-style Red Blend
## 6819 Red Blend
## 6820 Pinot Noir
## 6821 Sangiovese Grosso
## 6822 Red Blend
## 6823 Pinot Noir
## 6824 Sangiovese Grosso
## 6825 Pinot Noir
## 6826 Tempranillo Blend
## 6827 Chardonnay
## 6828 Malbec
## 6829 Godello
## 6830 Sangiovese Grosso
## 6831 Sangiovese Grosso
## 6832 Sangiovese Grosso
## 6833 Sangiovese Grosso
## 6834 Tempranillo
## 6835 Champagne Blend
## 6836 Syrah-Cabernet Sauvignon
## 6837 Bordeaux-style White Blend
## 6838 Bordeaux-style Red Blend
## 6839 Bordeaux-style Red Blend
## 6840 Bordeaux-style Red Blend
## 6841 Chardonnay
## 6842 Sangiovese Grosso
## 6843 Sangiovese Grosso
## 6844 Sangiovese Grosso
## 6845 Sangiovese Grosso
## 6846 Riesling
## 6847 Bordeaux-style Red Blend
## 6848 Sangiovese Grosso
## 6849 Sangiovese Grosso
## 6850 Bordeaux-style Red Blend
## 6851 Bordeaux-style Red Blend
## 6852 Sangiovese Grosso
## 6853 Chardonnay
## 6854 Champagne Blend
## 6855 Glera
## 6856 Glera
## 6857 Cabernet Franc
## 6858 Grenache Blanc
## 6859 Tempranillo
## 6860 Glera
## 6861 Champagne Blend
## 6862 Sparkling Blend
## 6863 Sparkling Blend
## 6864 Cabernet Franc
## 6865 Carignan
## 6866 Torrontés
## 6867 Riesling
## 6868 Chardonnay
## 6869 Malbec
## 6870 Sparkling Blend
## 6871 Sauvignon Blanc
## 6872 Garganega
## 6873 Chardonnay
## 6874 Red Blend
## 6875 Glera
## 6876 Champagne Blend
## 6877 Riesling
## 6878 Pinot Noir
## 6879 Pinot Blanc
## 6880 Zinfandel
## 6881 Riesling
## 6882 Cabernet Franc
## 6883 Glera
## 6884 Pinot Grigio
## 6885 Pinot Bianco
## 6886 Sauvignon
## 6887 Friulano
## 6888 Sauvignon
## 6889 Malbec
## 6890 Riesling
## 6891 Cabernet Franc
## 6892 Syrah
## 6893 Ribolla Gialla
## 6894 Sauvignon
## 6895 White Blend
## 6896 Friulano
## 6897 Pinot Noir
## 6898 Chardonnay
## 6899 Pinot Noir
## 6900 Malbec
## 6901 Kerner
## 6902 Pinot Grigio
## 6903 Pinot Grigio
## 6904 Chardonnay
## 6905 Malbec
## 6906 Cabernet Sauvignon
## 6907 Sauvignon
## 6908 Riesling
## 6909 Portuguese White
## 6910 Chardonnay
## 6911 Pinot Grigio
## 6912 Malbec
## 6913 Touriga Nacional
## 6914 Pinot Noir
## 6915 Melon
## 6916 Pinot Noir
## 6917 Red Blend
## 6918 Garganega
## 6919 Viognier
## 6920 Pinot Noir
## 6921 Portuguese White
## 6922 Melon
## 6923 Chardonnay
## 6924 Pinot Noir
## 6925 Pinot Noir
## 6926 Pinot Noir
## 6927 Pinot Noir
## 6928 Cabernet Sauvignon
## 6929 Portuguese Red
## 6930 Portuguese Red
## 6931 Pinot Noir
## 6932 Spätburgunder
## 6933 Portuguese Red
## 6934 Portuguese Red
## 6935 Cabernet Sauvignon
## 6936 Pinot Noir
## 6937 Sauvignon
## 6938 Pinot Noir
## 6939 Portuguese Red
## 6940 Pinot Noir
## 6941 Alicante Bouschet
## 6942 Riesling
## 6943 Sauvignon Blanc
## 6944 Bordeaux-style Red Blend
## 6945 Shiraz
## 6946 Riesling
## 6947 Riesling
## 6948 Scheurebe
## 6949 Cabernet Sauvignon
## 6950 Cabernet Sauvignon
## 6951 Sangiovese Grosso
## 6952 Sangiovese Grosso
## 6953 Riesling
## 6954 Sherry
## 6955 Malbec
## 6956 Riesling
## 6957 Riesling
## 6958 Riesling
## 6959 Bordeaux-style Red Blend
## 6960 Bordeaux-style Red Blend
## 6961 Sangiovese
## 6962 Loureiro-Arinto
## 6963 Red Blend
## 6964 Red Blend
## 6965 Cabernet Sauvignon
## 6966 Sauvignon Blanc
## 6967 Red Blend
## 6968 Primitivo
## 6969 Cabernet Franc
## 6970 Red Blend
## 6971 Rosé
## 6972 Cabernet Sauvignon
## 6973 Portuguese White
## 6974 Sauvignon Blanc
## 6975 Cabernet Sauvignon
## 6976 Portuguese Red
## 6977 Pinot Grigio
## 6978 Chardonnay
## 6979 Bordeaux-style White Blend
## 6980 Bordeaux-style White Blend
## 6981 Bordeaux-style Red Blend
## 6982 Malbec
## 6983 Sauvignon Blanc-Semillon
## 6984 Red Blend
## 6985 Portuguese Red
## 6986 Chardonnay
## 6987 Shiraz
## 6988 Gewürztraminer
## 6989 Pinot Noir
## 6990 Rosé
## 6991 Gamay
## 6992 Merlot
## 6993 Red Blend
## 6994 Cabernet Sauvignon
## 6995 Nebbiolo
## 6996 Malbec
## 6997 Red Blend
## 6998 White Blend
## 6999 Cabernet Franc
## 7000 Nebbiolo
## 7001 Nebbiolo
## 7002 Pinot Noir
## 7003 Rosé
## 7004 Rosé
## 7005 Bordeaux-style Red Blend
## 7006 Bordeaux-style Red Blend
## 7007 Pinot Gris
## 7008 Nebbiolo
## 7009 Touriga Nacional
## 7010 Cabernet Sauvignon
## 7011 Bordeaux-style Red Blend
## 7012 Lambrusco Grasparossa
## 7013 Chardonnay
## 7014 Portuguese Red
## 7015 Cabernet-Syrah
## 7016 Bordeaux-style Red Blend
## 7017 Rosé
## 7018 Syrah-Grenache
## 7019 Syrah
## 7020 Red Blend
## 7021 Pinot Noir
## 7022 Gewürztraminer
## 7023 Zinfandel
## 7024 Sparkling Blend
## 7025 Chardonnay
## 7026 Pinot Noir
## 7027 Cabernet Franc
## 7028 Cabernet Sauvignon
## 7029 Bordeaux-style Red Blend
## 7030 Cabernet Franc
## 7031 Cabernet Sauvignon
## 7032 Cabernet Sauvignon
## 7033 Chardonnay
## 7034 Pinot Noir
## 7035 Bordeaux-style Red Blend
## 7036 Tinta de Toro
## 7037 Bordeaux-style Red Blend
## 7038 Bordeaux-style Red Blend
## 7039 Pinot Noir
## 7040 Semillon-Sauvignon Blanc
## 7041 Zinfandel
## 7042 Pinot Noir
## 7043 Riesling
## 7044 Chardonnay
## 7045 Portuguese White
## 7046 Portuguese Red
## 7047 Cabernet Sauvignon
## 7048 Malbec
## 7049 Chardonnay
## 7050 Rosé
## 7051 Chardonnay
## 7052 Pinot Noir
## 7053 Pinot Noir
## 7054 Cabernet Sauvignon
## 7055 Pinot Noir
## 7056 Sauvignon Blanc-Chardonnay
## 7057 White Blend
## 7058 Merlot
## 7059 Malbec
## 7060 Rosé
## 7061 Alvarinho
## 7062 Albariño
## 7063 Albariño
## 7064 Sauvignon Blanc
## 7065 Moscato
## 7066 White Blend
## 7067 Rosé
## 7068 Bordeaux-style White Blend
## 7069 Verdejo
## 7070 Barbera
## 7071 Pinot Noir
## 7072 Portuguese Red
## 7073 Pinot Noir
## 7074 Merlot
## 7075 Cabernet Sauvignon
## 7076 Torrontés
## 7077 Malbec
## 7078 Symphony
## 7079 Chardonnay
## 7080 Pinot Noir
## 7081 Malbec
## 7082 Pinot Noir
## 7083 Pinot Noir
## 7084 Primitivo
## 7085 Cabernet Franc
## 7086 Pinot Noir
## 7087 Merlot
## 7088 Sauvignon Blanc
## 7089 Cabernet Sauvignon
## 7090 Primitivo
## 7091 Sparkling Blend
## 7092 Rosé
## 7093 Champagne Blend
## 7094 Torrontés
## 7095 Malbec
## 7096 Torrontés
## 7097 Rosé
## 7098 Bordeaux-style Red Blend
## 7099 Port
## 7100 Verdejo
## 7101 Glera
## 7102 Sparkling Blend
## 7103 Sparkling Blend
## 7104 Chardonnay
## 7105 Gamay Noir
## 7106 Champagne Blend
## 7107 Sauvignon Blanc
## 7108 Champagne Blend
## 7109 Port
## 7110 Chardonnay
## 7111 Pinot Noir
## 7112 Syrah
## 7113 Pinot Noir
## 7114 Pinot Noir
## 7115 Sauvignon Blanc
## 7116 Sauvignon Blanc
## 7117 Glera
## 7118 Champagne Blend
## 7119 Glera
## 7120 Glera
## 7121 Red Blend
## 7122 Gamay
## 7123 Glera
## 7124 Rhône-style Red Blend
## 7125 White Blend
## 7126 Meritage
## 7127 Pinot Gris
## 7128 Sauvignon Blanc
## 7129 Pinot Noir
## 7130 Riesling
## 7131 Pinot Noir
## 7132 Portuguese Red
## 7133 Sauvignon Blanc
## 7134 Montepulciano
## 7135 Rhône-style Red Blend
## 7136 Sauvignon Blanc
## 7137 Primitivo
## 7138 Cabernet Sauvignon
## 7139 Chardonnay
## 7140 Port
## 7141 Pinot Noir
## 7142 Pinot Noir
## 7143 Barbera
## 7144 Cabernet Sauvignon
## 7145 Chardonnay
## 7146 Sauvignon Blanc
## 7147 Sauvignon Blanc
## 7148 Bordeaux-style Red Blend
## 7149 Tempranillo
## 7150 Red Blend
## 7151 Sauvignon Blanc
## 7152 Chardonnay
## 7153 Sauvignon Blanc
## 7154 Moscato
## 7155 Rosé
## 7156 Gewürztraminer
## 7157 Barbera
## 7158 Barbera
## 7159 Nebbiolo
## 7160 Prosecco
## 7161 Nebbiolo
## 7162 Barbera
## 7163 Viognier
## 7164 Rosé
## 7165 Cabernet Franc
## 7166 Fiano
## 7167 Greco
## 7168 Sauvignon Blanc
## 7169 Red Blend
## 7170 Riesling
## 7171 Verdejo
## 7172 Syrah
## 7173 Merlot
## 7174 Fiano
## 7175 Cabernet Sauvignon
## 7176 Riesling
## 7177 Bordeaux-style Red Blend
## 7178 Chenin Blanc
## 7179 Bordeaux-style Red Blend
## 7180 Red Blend
## 7181 Rosé
## 7182 Rosé
## 7183 Chardonnay
## 7184 Pinot Noir
## 7185 Sparkling Blend
## 7186 Rhône-style Red Blend
## 7187 Syrah
## 7188 Pinot Noir
## 7189 Cabernet Sauvignon
## 7190 Red Blend
## 7191 Sparkling Blend
## 7192 Sauvignon Blanc
## 7193 Merlot
## 7194 Chardonnay
## 7195 Pinot Noir
## 7196 Port
## 7197 Sauvignon Blanc
## 7198 Alicante Bouschet
## 7199 Sauvignon Blanc
## 7200 Sauvignon Blanc
## 7201 Pinot Noir
## 7202 Pinot Noir
## 7203 Pinot Noir
## 7204 Bordeaux-style Red Blend
## 7205 Portuguese Red
## 7206 Riesling
## 7207 Pinot Noir
## 7208 Pinot Noir
## 7209 Melon
## 7210 Red Blend
## 7211 Zinfandel
## 7212 Portuguese White
## 7213 Nero d'Avola
## 7214 Nebbiolo
## 7215 Nebbiolo
## 7216 Port
## 7217 Chardonnay
## 7218 Pinot Noir
## 7219 Nebbiolo
## 7220 Red Blend
## 7221 Vermentino
## 7222 Pinot Noir
## 7223 Grenache
## 7224 Corvina, Rondinella, Molinara
## 7225 Corvina, Rondinella, Molinara
## 7226 Cabernet Sauvignon
## 7227 Red Blend
## 7228 Chardonnay
## 7229 Chardonnay
## 7230 Chardonnay
## 7231 Cabernet Sauvignon
## 7232 Tempranillo
## 7233 Verdejo
## 7234 Corvina, Rondinella, Molinara
## 7235 Chardonnay
## 7236 Tempranillo
## 7237 Cabernet Franc
## 7238 Pinot Noir
## 7239 Gewürztraminer
## 7240 Sauvignon Blanc
## 7241 Corvina, Rondinella, Molinara
## 7242 Sparkling Blend
## 7243 Chardonnay
## 7244 Chardonnay
## 7245 Chardonnay
## 7246 Cabernet Sauvignon
## 7247 Chardonnay
## 7248 Red Blend
## 7249 Mencía
## 7250 Tinta de Toro
## 7251 Pinot Noir
## 7252 Cabernet Franc
## 7253 Chardonnay
## 7254 Syrah
## 7255 Merlot
## 7256 Red Blend
## 7257 Rhône-style White Blend
## 7258 Syrah
## 7259 Cabernet Sauvignon
## 7260 Pinot Noir
## 7261 Bordeaux-style Red Blend
## 7262 Bordeaux-style Red Blend
## 7263 Carmenère
## 7264 Riesling
## 7265 Syrah
## 7266 Chardonnay
## 7267 Feteasca Neagra
## 7268 Petite Sirah
## 7269 Pinot Noir
## 7270 Riesling
## 7271 Cabernet Sauvignon
## 7272 Red Blend
## 7273 Red Blend
## 7274 Bordeaux-style Red Blend
## 7275 Rhône-style White Blend
## 7276 Zinfandel
## 7277 Gewürztraminer
## 7278 Furmint
## 7279 Riesling
## 7280 G-S-M
## 7281 Red Blend
## 7282 Pinot Nero
## 7283 Petit Verdot
## 7284 Cabernet Sauvignon
## 7285 Malbec
## 7286 Chardonnay
## 7287 Bordeaux-style Red Blend
## 7288 Merlot
## 7289 Zinfandel
## 7290 Syrah
## 7291 Fiano
## 7292 Riesling
## 7293 Riesling
## 7294 Edelzwicker
## 7295 Rhône-style Red Blend
## 7296 Bordeaux-style Red Blend
## 7297 Sauvignon Blanc
## 7298 Rhône-style Red Blend
## 7299 Pinot Noir
## 7300 Sauvignon Blanc-Semillon
## 7301 Syrah
## 7302 Pinot Grigio
## 7303 Riesling
## 7304 Cabernet Franc
## 7305 Chardonnay
## 7306 Chardonnay
## 7307 Bordeaux-style White Blend
## 7308 Bordeaux-style White Blend
## 7309 Pinot Noir
## 7310 Gewürztraminer
## 7311 Champagne Blend
## 7312 Riesling
## 7313 Gewürztraminer
## 7314 Tempranillo
## 7315 Pinot Grigio
## 7316 Pinot Noir
## 7317 Portuguese White
## 7318 Moscatel
## 7319 Chardonnay
## 7320 Cabernet Franc
## 7321 Chardonnay
## 7322 Sangiovese
## 7323 Portuguese Red
## 7324 Merlot
## 7325 Chardonnay
## 7326 Tempranillo
## 7327 Tempranillo
## 7328 Cabernet Sauvignon
## 7329 Pinot Noir
## 7330 Chardonnay
## 7331 Red Blend
## 7332 Cabernet Sauvignon
## 7333 Albariño
## 7334 Zinfandel
## 7335 Cabernet Sauvignon
## 7336 Prugnolo Gentile
## 7337 Pinot Noir
## 7338 Merlot
## 7339 Petite Sirah
## 7340 Cabernet Sauvignon
## 7341 Grüner Veltliner
## 7342 Albariño
## 7343 Malbec
## 7344 Sangiovese
## 7345 Riesling
## 7346 Sangiovese
## 7347 Tempranillo
## 7348 White Blend
## 7349 Sangiovese
## 7350 Sangiovese
## 7351 Pinot Noir
## 7352 Riesling
## 7353 Sangiovese
## 7354 Grüner Veltliner
## 7355 Malbec
## 7356 Meritage
## 7357 Bordeaux-style Red Blend
## 7358 Bordeaux-style Red Blend
## 7359 Bordeaux-style Red Blend
## 7360 Syrah
## 7361 Riesling
## 7362 Sangiovese
## 7363 Sangiovese
## 7364 Albariño
## 7365 Rosé
## 7366 Sauvignon Blanc
## 7367 Bordeaux-style Red Blend
## 7368 Rhône-style White Blend
## 7369 Red Blend
## 7370 Bordeaux-style White Blend
## 7371 Chenin Blanc
## 7372 Merlot
## 7373 Chardonnay
## 7374 Chardonnay
## 7375 Riesling
## 7376 Chardonnay
## 7377 Pinot Noir
## 7378 Cabernet Sauvignon
## 7379 Riesling
## 7380 Chenin Blanc
## 7381 Tinta de Toro
## 7382 Riesling
## 7383 Pinot Noir
## 7384 Bordeaux-style Red Blend
## 7385 Pinot Noir
## 7386 Rosé
## 7387 Petite Sirah
## 7388 Syrah
## 7389 Rhône-style Red Blend
## 7390 Cabernet Franc
## 7391 Red Blend
## 7392 Red Blend
## 7393 Cabernet Franc
## 7394 Pinot Noir
## 7395 Pinot Noir
## 7396 Sauvignon
## 7397 Zinfandel
## 7398 Portuguese Red
## 7399 Chardonnay
## 7400 Zinfandel
## 7401 Zinfandel
## 7402 Bordeaux-style Red Blend
## 7403 Zinfandel
## 7404 Chardonnay
## 7405 Bordeaux-style Red Blend
## 7406 Riesling
## 7407 Tempranillo
## 7408 Red Blend
## 7409 Madeira Blend
## 7410 Merlot
## 7411 Dolcetto
## 7412 Pinot Gris
## 7413 Touriga Nacional
## 7414 Cabernet Sauvignon
## 7415 Sauvignon Blanc
## 7416 Sauvignon Blanc
## 7417 Tempranillo Blend
## 7418 Gewürztraminer
## 7419 Cabernet Sauvignon
## 7420 Red Blend
## 7421 Merlot
## 7422 Viognier
## 7423 Riesling
## 7424 Merlot
## 7425 Riesling
## 7426 Riesling
## 7427 Shiraz
## 7428 Riesling
## 7429 Merlot
## 7430 Shiraz-Cabernet Sauvignon
## 7431 Cabernet Sauvignon
## 7432 Chardonnay
## 7433 White Blend
## 7434 Cabernet Franc
## 7435 Syrah
## 7436 Shiraz
## 7437 Chardonnay
## 7438 Riesling
## 7439 Petite Sirah
## 7440 White Blend
## 7441 Merlot
## 7442 Merlot
## 7443 Riesling
## 7444 Merlot
## 7445 Black Muscat
## 7446 Riesling
## 7447 Merlot
## 7448 Chardonnay
## 7449 Red Blend
## 7450 Sauvignon Blanc
## 7451 Viognier
## 7452 Grenache Noir
## 7453 Nebbiolo
## 7454 Barbera
## 7455 Barbera
## 7456 Nebbiolo
## 7457 Red Blend
## 7458 Pinot Noir
## 7459 Merlot
## 7460 Nebbiolo
## 7461 Rosé
## 7462 Chardonnay
## 7463 Pinot Gris
## 7464 Red Blend
## 7465 Chardonnay
## 7466 Carmenère
## 7467 Red Blend
## 7468 White Blend
## 7469 Chardonnay
## 7470 Nebbiolo
## 7471 Rosé
## 7472 Chardonnay
## 7473 Cabernet Sauvignon
## 7474 Red Blend
## 7475 Pinot Noir
## 7476 Sauvignon Blanc
## 7477 Nebbiolo
## 7478 Nebbiolo
## 7479 Barbera
## 7480 Pinotage
## 7481 Merlot
## 7482 Viognier
## 7483 Roussanne
## 7484 Cabernet Sauvignon
## 7485 Cabernet Sauvignon
## 7486 Sherry
## 7487 Tempranillo
## 7488 Pinot Noir
## 7489 Gewürztraminer
## 7490 Cabernet Sauvignon
## 7491 Nebbiolo
## 7492 Pinot Gris
## 7493 Merlot
## 7494 Red Blend
## 7495 Merlot
## 7496 Sauvignon Blanc
## 7497 Grenache
## 7498 Cabernet Sauvignon
## 7499 Sauvignon Blanc
## 7500 Chardonnay
## 7501 Syrah
## 7502 Chardonnay
## 7503 Pinot Noir
## 7504 Grenache Blanc
## 7505 Moscato
## 7506 Red Blend
## 7507 Pinot Noir
## 7508 Gamay
## 7509 Malbec
## 7510 Sparkling Blend
## 7511 Chardonnay
## 7512 Red Blend
## 7513 Glera
## 7514 Riesling
## 7515 Petite Sirah
## 7516 Cabernet Sauvignon
## 7517 Merlot
## 7518 Pinot Noir
## 7519 Champagne Blend
## 7520 Chardonnay
## 7521 Champagne Blend
## 7522 Portuguese Red
## 7523 Pinot Noir
## 7524 Pinot Noir
## 7525 Durella
## 7526 Pinot Noir
## 7527 Viognier
## 7528 Chardonnay
## 7529 Pinot Noir
## 7530 Cabernet Sauvignon
## 7531 Chardonnay
## 7532 Sauvignon Blanc
## 7533 Sauvignon Blanc
## 7534 Pinot Noir
## 7535 Sangiovese
## 7536 Chardonnay
## 7537 Sangiovese
## 7538 Chardonnay
## 7539 Bordeaux-style Red Blend
## 7540 Sangiovese
## 7541 Cabernet Sauvignon
## 7542 Sangiovese
## 7543 Sangiovese
## 7544 Red Blend
## 7545 Monastrell
## 7546 Monastrell
## 7547 Malbec
## 7548 Riesling
## 7549 Bordeaux-style Red Blend
## 7550 Red Blend
## 7551 Cabernet Sauvignon
## 7552 Portuguese White
## 7553 Red Blend
## 7554 Pinot Noir
## 7555 Red Blend
## 7556 Red Blend
## 7557 Portuguese White
## 7558 Red Blend
## 7559 Port
## 7560 Chardonnay
## 7561 Cabernet Franc
## 7562 Bordeaux-style Red Blend
## 7563 Bordeaux-style White Blend
## 7564 Pinot Noir
## 7565 Chardonnay
## 7566 Sauvignon Blanc
## 7567 Bordeaux-style Red Blend
## 7568 Red Blend
## 7569 White Blend
## 7570 Chardonnay
## 7571 Rosé
## 7572 Zinfandel
## 7573 Sauvignon Blanc
## 7574 Sauvignon Blanc
## 7575 Merlot
## 7576 Chardonnay
## 7577 Malbec
## 7578 Sauvignon Blanc
## 7579 Cabernet Sauvignon
## 7580 Sauvignon Blanc
## 7581 Corvina, Rondinella, Molinara
## 7582 Sauvignon Blanc
## 7583 Chardonnay
## 7584 Riesling
## 7585 Merlot
## 7586 Carmenère
## 7587 Chardonnay
## 7588 Bordeaux-style Red Blend
## 7589 Champagne Blend
## 7590 Traminer
## 7591 Cabernet Sauvignon
## 7592 Cabernet Sauvignon
## 7593 Pinot Grigio
## 7594 Pinot Noir
## 7595 Sauvignon Blanc
## 7596 Cabernet Sauvignon
## 7597 Carmenère
## 7598 White Blend
## 7599 Pinot Grigio
## 7600 Viognier
## 7601 Sangiovese
## 7602 Sauvignon Blanc
## 7603 Chardonnay
## 7604 Merlot
## 7605 Chardonnay
## 7606 Cabernet Sauvignon
## 7607 Pinot Noir
## 7608 Arinto
## 7609 Petite Sirah
## 7610 Pinot Grigio
## 7611 Chardonnay
## 7612 White Blend
## 7613 Syrah
## 7614 Champagne Blend
## 7615 Sparkling Blend
## 7616 Sparkling Blend
## 7617 Sauvignon Blanc
## 7618 Albariño
## 7619 Glera
## 7620 Malvasia
## 7621 Chardonnay
## 7622 Pinot Noir
## 7623 Riesling
## 7624 Vermentino
## 7625 Sparkling Blend
## 7626 Cabernet Sauvignon
## 7627 Cabernet Franc
## 7628 Pinot Noir
## 7629 Red Blend
## 7630 Glera
## 7631 Bordeaux-style Red Blend
## 7632 Champagne Blend
## 7633 Champagne Blend
## 7634 Barbera
## 7635 Pinot Noir
## 7636 Pinot Gris
## 7637 Glera
## 7638 Glera
## 7639 Cabernet Franc
## 7640 Red Blend
## 7641 Glera
## 7642 Glera
## 7643 Glera
## 7644 Riesling
## 7645 White Blend
## 7646 Chardonnay
## 7647 Gamay
## 7648 Cabernet Sauvignon
## 7649 Nero d'Avola
## 7650 Tempranillo
## 7651 Grillo
## 7652 Albariño
## 7653 Gamay
## 7654 Cabernet Sauvignon
## 7655 Merlot
## 7656 Viognier
## 7657 Grillo
## 7658 Pinot Gris
## 7659 Riesling
## 7660 Sauvignon Blanc
## 7661 Red Blend
## 7662 White Blend
## 7663 Nerello Mascalese
## 7664 Chardonnay
## 7665 Red Blend
## 7666 Pinot Noir
## 7667 Pinot Noir
## 7668 Sparkling Blend
## 7669 Tempranillo
## 7670 Gewürztraminer
## 7671 Chardonnay
## 7672 Portuguese Sparkling
## 7673 Moscato
## 7674 Sauvignon Blanc
## 7675 Cabernet Sauvignon
## 7676 Dolcetto
## 7677 Assyrtiko
## 7678 Sparkling Blend
## 7679 Chardonnay
## 7680 Xinomavro
## 7681 Cabernet Franc
## 7682 Chardonnay
## 7683 Pinot Noir
## 7684 Tempranillo
## 7685 Pinot Noir
## 7686 Cabernet Sauvignon
## 7687 Red Blend
## 7688 Zinfandel
## 7689 Pinot Noir
## 7690 Chardonnay
## 7691 Tinto del Pais
## 7692 Red Blend
## 7693 Sauvignon Blanc
## 7694 Sangiovese
## 7695 Red Blend
## 7696 Bordeaux-style White Blend
## 7697 Sauvignon Blanc
## 7698 Cabernet Sauvignon
## 7699 Meritage
## 7700 Tempranillo
## 7701 Cabernet Sauvignon
## 7702 Cabernet Sauvignon
## 7703 Sauvignon Blanc
## 7704 Chardonnay
## 7705 Red Blend
## 7706 Tempranillo Blend
## 7707 Merlot
## 7708 Tempranillo Blend
## 7709 Pinot Noir
## 7710 Bordeaux-style Red Blend
## 7711 Pinot Noir
## 7712 Sauvignon Blanc
## 7713 Chardonnay
## 7714 Riesling
## 7715 Merlot-Cabernet Sauvignon
## 7716 White Blend
## 7717 Tempranillo Blend
## 7718 Tempranillo
## 7719 Bordeaux-style Red Blend
## 7720 Petite Sirah
## 7721 Cercial
## 7722 Riesling
## 7723 Merlot
## 7724 Merlot
## 7725 Bordeaux-style Red Blend
## 7726 Bordeaux-style White Blend
## 7727 Merlot
## 7728 Bordeaux-style Red Blend
## 7729 Bordeaux-style Red Blend
## 7730 Bordeaux-style Red Blend
## 7731 Bordeaux-style White Blend
## 7732 G-S-M
## 7733 Gamay
## 7734 Portuguese Red
## 7735 Portuguese Red
## 7736 Pinot Noir
## 7737 Riesling
## 7738 Cabernet Sauvignon
## 7739 Riesling
## 7740 Pinot Noir
## 7741 Chardonnay
## 7742 Gamay
## 7743 Pinot Gris
## 7744 Bordeaux-style Red Blend
## 7745 Nebbiolo
## 7746 Portuguese Red
## 7747 Gewürztraminer
## 7748 Cabernet Sauvignon
## 7749 Pinot Noir
## 7750 Pinot Noir
## 7751 Pinot Noir
## 7752 Chardonnay
## 7753 Cabernet Sauvignon
## 7754 Grüner Veltliner
## 7755 Riesling
## 7756 Bordeaux-style Red Blend
## 7757 Cabernet Sauvignon
## 7758 Chardonnay
## 7759 Nebbiolo
## 7760 Chardonnay
## 7761 Bordeaux-style Red Blend
## 7762 Cabernet Sauvignon
## 7763 Pinot Noir
## 7764 Chardonnay
## 7765 Sauvignon Blanc
## 7766 Syrah
## 7767 Weissburgunder
## 7768 Syrah
## 7769 Blaufränkisch
## 7770 Red Blend
## 7771 Riesling
## 7772 Blaufränkisch
## 7773 Sauvignon Blanc
## 7774 Marsanne
## 7775 Rhône-style Red Blend
## 7776 Tempranillo
## 7777 Syrah
## 7778 Chardonnay
## 7779 Rhône-style Red Blend
## 7780 Bordeaux-style Red Blend
## 7781 Roter Veltliner
## 7782 Nebbiolo
## 7783 Grüner Veltliner
## 7784 Syrah
## 7785 Nebbiolo
## 7786 Shiraz
## 7787 Viognier
## 7788 Grüner Veltliner
## 7789 Malbec
## 7790 Gewürztraminer
## 7791 Nebbiolo
## 7792 Chardonnay
## 7793 Nebbiolo
## 7794 Grüner Veltliner
## 7795 Grüner Veltliner
## 7796 Zweigelt
## 7797 Syrah
## 7798 Syrah
## 7799 Riesling
## 7800 Grüner Veltliner
## 7801 Chardonnay
## 7802 Red Blend
## 7803 Dolcetto
## 7804 Syrah
## 7805 Sangiovese Grosso
## 7806 Portuguese White
## 7807 Merlot
## 7808 Sauvignon Blanc
## 7809 Shiraz-Cabernet Sauvignon
## 7810 White Blend
## 7811 Syrah
## 7812 Cabernet Sauvignon
## 7813 Cabernet Sauvignon
## 7814 Tempranillo
## 7815 Sauvignon Blanc
## 7816 Petite Sirah
## 7817 Tempranillo
## 7818 Pinot Noir
## 7819 Verdelho
## 7820 Chardonnay
## 7821 Sauvignon Blanc
## 7822 Cabernet Sauvignon
## 7823 Shiraz
## 7824 Merlot
## 7825 Tempranillo
## 7826 Cabernet Sauvignon
## 7827 Shiraz
## 7828 Fumé Blanc
## 7829 Pinot Noir
## 7830 Shiraz
## 7831 Red Blend
## 7832 Shiraz
## 7833 Shiraz-Cabernet Sauvignon
## 7834 White Blend
## 7835 Syrah
## 7836 Pinot Noir
## 7837 Zinfandel
## 7838 Tempranillo Blend
## 7839 Red Blend
## 7840 Merlot
## 7841 Gewürztraminer
## 7842 Gewürztraminer
## 7843 Cabernet Franc
## 7844 Chardonnay
## 7845 Cabernet Sauvignon
## 7846 Johannisberg Riesling
## 7847 Albariño
## 7848 Cabernet Sauvignon
## 7849 Sangiovese
## 7850 Grenache
## 7851 Rhône-style Red Blend
## 7852 Malbec
## 7853 Malbec
## 7854 Pinot Noir
## 7855 Pinot Noir
## 7856 Champagne Blend
## 7857 Sparkling Blend
## 7858 Bordeaux-style Red Blend
## 7859 Champagne Blend
## 7860 Champagne Blend
## 7861 Chardonnay
## 7862 Sparkling Blend
## 7863 Chardonnay
## 7864 Zinfandel
## 7865 Grüner Veltliner
## 7866 Champagne Blend
## 7867 Malbec
## 7868 Malbec
## 7869 Cabernet Sauvignon
## 7870 Red Blend
## 7871 Cabernet Sauvignon
## 7872 Bordeaux-style Red Blend
## 7873 Chardonnay
## 7874 Pinot Noir
## 7875 Chardonnay
## 7876 Chardonnay
## 7877 Cabernet Sauvignon
## 7878 Sparkling Blend
## 7879 Riesling
## 7880 Chardonnay
## 7881 Pinot Noir
## 7882 Bordeaux-style Red Blend
## 7883 Cabernet Sauvignon
## 7884 Fernão Pires
## 7885 Portuguese White
## 7886 Pinot Noir
## 7887 Sauvignon Blanc
## 7888 Chardonnay
## 7889 Pinot Noir
## 7890 Syrah
## 7891 Red Blend
## 7892 White Blend
## 7893 Chardonnay
## 7894 Portuguese Sparkling
## 7895 White Blend
## 7896 Red Blend
## 7897 Portuguese White
## 7898 Turbiana
## 7899 Bordeaux-style Red Blend
## 7900 Bordeaux-style Red Blend
## 7901 Chardonnay
## 7902 Sparkling Blend
## 7903 Syrah
## 7904 Bordeaux-style Red Blend
## 7905 Pinot Noir
## 7906 Cabernet Sauvignon
## 7907 Portuguese White
## 7908 Red Blend
## 7909 Zinfandel
## 7910 Cabernet Sauvignon
## 7911 Zinfandel
## 7912 Charbono
## 7913 Nebbiolo
## 7914 Red Blend
## 7915 Vermentino
## 7916 Nebbiolo
## 7917 Shiraz
## 7918 Chardonnay
## 7919 G-S-M
## 7920 Pinot Noir
## 7921 Alvarinho
## 7922 Red Blend
## 7923 Pinot Noir
## 7924 Zinfandel
## 7925 Portuguese Red
## 7926 Petite Verdot
## 7927 Nebbiolo
## 7928 Malbec
## 7929 Malbec-Cabernet Sauvignon
## 7930 Sémillon
## 7931 Riesling
## 7932 Portuguese Red
## 7933 G-S-M
## 7934 Cabernet Sauvignon
## 7935 Cabernet Sauvignon
## 7936 Nebbiolo
## 7937 Nebbiolo
## 7938 Chardonnay
## 7939 Chardonnay
## 7940 Chardonnay
## 7941 Cabernet Sauvignon
## 7942 Shiraz-Cabernet Sauvignon
## 7943 Red Blend
## 7944 Pinot Nero
## 7945 Sauvignon Blanc
## 7946 Chardonnay
## 7947 Sauvignon Blanc
## 7948 Cinsault
## 7949 Pinot Noir
## 7950 Merlot
## 7951 Pinot Noir
## 7952 Shiraz
## 7953 Red Blend
## 7954 Cabernet Sauvignon
## 7955 Passerina
## 7956 Syrah
## 7957 Grüner Veltliner
## 7958 Grüner Veltliner
## 7959 Red Blend
## 7960 Rosé
## 7961 Pinot Noir
## 7962 Vernaccia
## 7963 Vernaccia
## 7964 Malbec
## 7965 Chardonnay
## 7966 Grüner Veltliner
## 7967 Moscato
## 7968 Rosé
## 7969 Viognier
## 7970 White Blend
## 7971 Rosé
## 7972 Chardonnay
## 7973 Provence white blend
## 7974 Chardonnay
## 7975 Pinot Noir
## 7976 Chardonnay
## 7977 Zinfandel
## 7978 Rosé
## 7979 Pinot Noir
## 7980 Pinot Noir
## 7981 Cabernet Sauvignon
## 7982 Chardonnay
## 7983 Cabernet Sauvignon
## 7984 Chardonnay
## 7985 Red Blend
## 7986 Pinot Noir
## 7987 Vernaccia
## 7988 Garganega
## 7989 Garganega
## 7990 Portuguese Red
## 7991 Rosé
## 7992 Cabernet Franc
## 7993 Portuguese Red
## 7994 Rosé
## 7995 Portuguese Red
## 7996 Semillon-Sauvignon Blanc
## 7997 Pinot Noir
## 7998 Rhône-style White Blend
## 7999 Chardonnay
## 8000 Cabernet Sauvignon
## 8001 Zinfandel
## 8002 Rhône-style Red Blend
## 8003 Rhône-style Red Blend
## 8004 Rhône-style Red Blend
## 8005 Portuguese White
## 8006 Garganega
## 8007 Red Blend
## 8008 Glera
## 8009 Pinot Noir
## 8010 Merlot
## 8011 Rhône-style Red Blend
## 8012 Champagne Blend
## 8013 Bordeaux-style Red Blend
## 8014 Bordeaux-style Red Blend
## 8015 Sparkling Blend
## 8016 Sauvignon Blanc
## 8017 Cabernet Franc
## 8018 Arneis
## 8019 Riesling
## 8020 Chardonnay
## 8021 Portuguese Red
## 8022 Portuguese White
## 8023 Chardonnay
## 8024 Chardonnay
## 8025 Valdiguié
## 8026 Primitivo
## 8027 Merlot
## 8028 Portuguese Red
## 8029 Portuguese White
## 8030 Chardonnay
## 8031 Pinot Gris
## 8032 Sparkling Blend
## 8033 Sparkling Blend
## 8034 Pinot Noir
## 8035 Zinfandel
## 8036 Riesling
## 8037 Sangiovese
## 8038 Sauvignon Blanc
## 8039 Tempranillo
## 8040 Sangiovese
## 8041 Merlot
## 8042 Red Blend
## 8043 Bordeaux-style White Blend
## 8044 Rosé
## 8045 Syrah
## 8046 Gamay
## 8047 Pinot Noir
## 8048 Gamay
## 8049 Sparkling Blend
## 8050 Nebbiolo
## 8051 Rhône-style White Blend
## 8052 Sangiovese
## 8053 Rhône-style Red Blend
## 8054 Chardonnay
## 8055 Colombard-Sauvignon Blanc
## 8056 Gamay
## 8057 Gamay
## 8058 Gamay
## 8059 Grenache Blanc
## 8060 Red Blend
## 8061 Sangiovese
## 8062 Riesling
## 8063 Chardonnay
## 8064 Sparkling Blend
## 8065 Riesling
## 8066 Chenin Blanc
## 8067 Sauvignon Blanc
## 8068 Grenache
## 8069 Red Blend
## 8070 Champagne Blend
## 8071 Nebbiolo
## 8072 Red Blend
## 8073 Red Blend
## 8074 Sauvignon Blanc
## 8075 Portuguese Red
## 8076 Bordeaux-style Red Blend
## 8077 Syrah
## 8078 Red Blend
## 8079 Bordeaux-style Red Blend
## 8080 Bordeaux-style Red Blend
## 8081 Cabernet Sauvignon
## 8082 Bordeaux-style Red Blend
## 8083 Zinfandel
## 8084 Syrah
## 8085 Portuguese Red
## 8086 Portuguese Red
## 8087 Zinfandel
## 8088 Chardonnay
## 8089 Red Blend
## 8090 Portuguese Red
## 8091 Chardonnay
## 8092 Syrah
## 8093 Portuguese Red
## 8094 Chardonnay
## 8095 Cabernet Sauvignon
## 8096 Syrah
## 8097 Syrah-Mourvèdre
## 8098 Sauvignon Blanc
## 8099 Pinot Noir
## 8100 Chardonnay
## 8101 Sauvignon Blanc
## 8102 Chardonnay
## 8103 Chardonnay
## 8104 Chardonnay
## 8105 Chardonnay
## 8106 Pinot Noir
## 8107 Pinot Noir
## 8108 Red Blend
## 8109 Pinot Noir
## 8110 Red Blend
## 8111 Bordeaux-style Red Blend
## 8112 Sparkling Blend
## 8113 Cabernet Sauvignon
## 8114 Red Blend
## 8115 Pinotage
## 8116 Cabernet Sauvignon
## 8117 Cabernet Sauvignon
## 8118 Mourvèdre
## 8119 Pinot Noir
## 8120 Syrah
## 8121 Pinot Noir
## 8122 Pinot Noir
## 8123 Pinot Noir
## 8124 Syrah
## 8125 Dolcetto
## 8126 Cabernet Franc
## 8127 Garganega
## 8128 Pinot Noir
## 8129 Champagne Blend
## 8130 Cabernet Sauvignon
## 8131 Melon
## 8132 Cabernet Sauvignon
## 8133 Pinot Noir
## 8134 Champagne Blend
## 8135 Ribolla Gialla
## 8136 Champagne Blend
## 8137 Malbec
## 8138 Glera
## 8139 Zinfandel
## 8140 Sparkling Blend
## 8141 Cabernet Sauvignon
## 8142 Chardonnay
## 8143 Pinot Noir
## 8144 Petit Verdot
## 8145 Moscato
## 8146 Chardonnay
## 8147 Torrontés
## 8148 White Blend
## 8149 Pinot Noir
## 8150 Pinot Noir
## 8151 Pinot Noir
## 8152 Sparkling Blend
## 8153 Champagne Blend
## 8154 Pinot Noir
## 8155 Bordeaux-style White Blend
## 8156 Bordeaux-style White Blend
## 8157 Rosé
## 8158 Pinot Noir
## 8159 Riesling
## 8160 Pinot Noir
## 8161 Inzolia
## 8162 Portuguese White
## 8163 Portuguese White
## 8164 Rosato
## 8165 Cabernet Sauvignon
## 8166 Red Blend
## 8167 Syrah
## 8168 Rosato
## 8169 Viognier
## 8170 Red Blend
## 8171 Kangoun
## 8172 Loureiro
## 8173 Chardonnay
## 8174 Rhône-style Red Blend
## 8175 Chardonnay
## 8176 Tempranillo
## 8177 Chardonnay
## 8178 Riesling
## 8179 Cabernet Franc
## 8180 Cabernet Sauvignon
## 8181 G-S-M
## 8182 Bordeaux-style Red Blend
## 8183 Pinot Blanc
## 8184 Red Blend
## 8185 Bordeaux-style Red Blend
## 8186 Grüner Veltliner
## 8187 Bordeaux-style Red Blend
## 8188 Shiraz
## 8189 Bordeaux-style White Blend
## 8190 Champagne Blend
## 8191 Chardonnay
## 8192 Chardonnay
## 8193 Syrah
## 8194 Sparkling Blend
## 8195 Champagne Blend
## 8196 Pinot Noir
## 8197 Sauvignon Blanc
## 8198 Bordeaux-style White Blend
## 8199 Bordeaux-style White Blend
## 8200 Merlot
## 8201 Chardonnay
## 8202 Syrah
## 8203 Riesling
## 8204 Grüner Veltliner
## 8205 Bordeaux-style White Blend
## 8206 Bordeaux-style White Blend
## 8207 Bordeaux-style White Blend
## 8208 Chenin Blanc
## 8209 Chardonnay
## 8210 Portuguese Red
## 8211 Cabernet Sauvignon
## 8212 Syrah
## 8213 Pinot Noir
## 8214 Riesling
## 8215 Riesling
## 8216 Chardonnay
## 8217 Pinot Noir
## 8218 Chardonnay
## 8219 Red Blend
## 8220 Merlot
## 8221 Riesling
## 8222 Chardonnay
## 8223 Rosé
## 8224 Portuguese Red
## 8225 Sparkling Blend
## 8226 Chardonnay
## 8227 Sparkling Blend
## 8228 Champagne Blend
## 8229 Tempranillo
## 8230 G-S-M
## 8231 Riesling
## 8232 Champagne Blend
## 8233 Pinot Noir
## 8234 Red Blend
## 8235 Vidal Blanc
## 8236 Cabernet Sauvignon
## 8237 Pinot Noir
## 8238 Red Blend
## 8239 Carmenère
## 8240 Cabernet Sauvignon
## 8241 Bordeaux-style Red Blend
## 8242 Shiraz
## 8243 Cabernet Franc
## 8244 Sauvignon Blanc
## 8245 Pinot Noir
## 8246 Zinfandel
## 8247 Merlot
## 8248 Pinot Gris
## 8249 Rhône-style Red Blend
## 8250 Verdicchio
## 8251 Cabernet Sauvignon
## 8252 Riesling
## 8253 Pinot Noir
## 8254 Red Blend
## 8255 Merlot
## 8256 Verdicchio
## 8257 Verdicchio
## 8258 Carmenère
## 8259 St. Laurent
## 8260 Cabernet Sauvignon
## 8261 Blaufränkisch
## 8262 Riesling
## 8263 Syrah
## 8264 Cabernet Sauvignon
## 8265 Pinot Gris
## 8266 Red Blend
## 8267 Pecorino
## 8268 Pinot Noir
## 8269 Red Blend
## 8270 Nebbiolo
## 8271 Chardonnay
## 8272 Chardonnay
## 8273 Chardonnay
## 8274 Carmenère
## 8275 Pinot Noir
## 8276 Posip
## 8277 Sauvignon Blanc
## 8278 Pinot Noir
## 8279 Chardonnay
## 8280 Vilana
## 8281 Nebbiolo
## 8282 Cabernet Sauvignon
## 8283 Chardonnay
## 8284 Nebbiolo
## 8285 Pinot Noir
## 8286 Syrah
## 8287 Nebbiolo
## 8288 Pinot Noir
## 8289 Chardonnay
## 8290 Cabernet Sauvignon
## 8291 Rhône-style Red Blend
## 8292 Bordeaux-style Red Blend
## 8293 Grüner Veltliner
## 8294 Pinot Noir
## 8295 Pinot Noir
## 8296 Bordeaux-style Red Blend
## 8297 Riesling
## 8298 Zinfandel
## 8299 Zinfandel
## 8300 Red Blend
## 8301 Grüner Veltliner
## 8302 Grüner Veltliner
## 8303 Sparkling Blend
## 8304 Riesling
## 8305 Riesling
## 8306 Rosé
## 8307 Sangiovese
## 8308 Zinfandel
## 8309 Syrah
## 8310 Grüner Veltliner
## 8311 Zinfandel
## 8312 Grüner Veltliner
## 8313 Petite Sirah
## 8314 Grüner Veltliner
## 8315 Red Blend
## 8316 Pinot Gris
## 8317 Petite Sirah
## 8318 Red Blend
## 8319 Pinot Noir
## 8320 Pinot Noir
## 8321 Chardonnay
## 8322 Sémillon
## 8323 Rhône-style White Blend
## 8324 Cabernet Franc
## 8325 Roussanne
## 8326 Cabernet Sauvignon
## 8327 Merlot
## 8328 Riesling
## 8329 Viognier
## 8330 Pinot Noir
## 8331 Riesling
## 8332 Merlot
## 8333 Verdicchio
## winery
## 1 Nicosia
## 2 Quinta dos Avidagos
## 3 Rainstorm
## 4 St. Julian
## 5 Sweet Cheeks
## 6 Tandem
## 7 Terre di Giurfo
## 8 Trimbach
## 9 Heinz Eifel
## 10 Jean-Baptiste Adam
## 11 Kirkland Signature
## 12 Leon Beyer
## 13 Louis M. Martini
## 14 Masseria Setteporte
## 15 Mirassou
## 16 Richard Böcking
## 17 Felix Lavaque
## 18 Gaucho Andino
## 19 Pradorey
## 20 Quiévremont
## 21 Quiévremont
## 22 Acrobat
## 23 Baglio di Pianetto
## 24 Bianchi
## 25 Canicattì
## 26 Castello di Amorosa
## 27 Stemmari
## 28 Stemmari
## 29 Terre di Giurfo
## 30 Clarksburg Wine Company
## 31 Domaine de la Madone
## 32 Duca di Salaparuta
## 33 Duca di Salaparuta
## 34 Envolve
## 35 Envolve
## 36 Erath
## 37 Estampa
## 38 Feudi del Pisciotto
## 39 Feudi di San Marzano
## 40 Feudo di Santa Tresa
## 41 Feudo Montoni
## 42 Hawkins Cellars
## 43 Henry Fessy
## 44 Robert Hall
## 45 Sundance
## 46 Tarara
## 47 Tasca d'Almerita
## 48 The White Knight
## 49 Trump
## 50 Vignerons de Bel Air
## 51 Viticultori Associati Canicatti
## 52 Casa Silva
## 53 Cantine di Dolianova
## 54 Château de Sours
## 55 Corvo
## 56 RustRidge
## 57 Souverain
## 58 Tasca d'Almerita
## 59 Tres Palacios
## 60 Mellisoni
## 61 Okapi
## 62 Podere dal Nespoli
## 63 Ram
## 64 Roland Champion
## 65 Sevtap
## 66 Simonnet-Febvre
## 67 Vignerons des Terres Secrètes
## 68 Basel Cellars
## 69 Cocobon
## 70 Collet
## 71 Drumheller
## 72 Eco Terreno
## 73 Grifalco
## 74 Hindsight
## 75 Hindsight
## 76 Mulvane Wine Co.
## 77 Schmitt Söhne
## 78 Yalumba
## 79 Z'IVO
## 80 Adega Cooperativa do Cartaxo
## 81 Aresti
## 82 Spyro
## 83 Lionel Osmin & Cie
## 84 Mitolo
## 85 Napa Cellars
## 86 P.J. Valckenberg
## 87 Palencia
## 88 Passaggio
## 89 Poggio Alloro
## 90 Fattoria Sardi
## 91 Ferrari-Carano
## 92 Folie à Deux
## 93 Franciscan
## 94 Fuchs
## 95 Gård
## 96 Henry Fessy
## 97 Henry Fessy
## 98 Heron Hill
## 99 Serpaia di Endrizzi
## 100 Soquel Vineyards
## 101 Ventosa
## 102 Lamoreaux Landing
## 103 Lamoreaux Landing
## 104 Leyda
## 105 Madonna Alta
## 106 Marchesi Antinori
## 107 Marchesi de' Frescobaldi
## 108 Marchesi de' Frescobaldi
## 109 Martin Ranch
## 110 Ornellaia
## 111 Pardon et Fils
## 112 Piña
## 113 Podere Ciona
## 114 Poggioventoso
## 115 Pull
## 116 Pull
## 117 R2
## 118 Rideau
## 119 Tenuta Forconi
## 120 Dopff & Irion
## 121 Ceretto
## 122 Matrix
## 123 Mauritson
## 124 Henry's Drive Vignerons
## 125 Silverado
## 126 Le Riche
## 127 Pierre Sparr
## 128 Pierre Sparr
## 129 Kuentz-Bas
## 130 Camberley
## 131 Ceretto
## 132 Dopff & Irion
## 133 Delheim
## 134 Poderi Luigi Einaudi
## 135 Clark-Clauden
## 136 Giacomo Ascheri
## 137 Lassègue
## 138 Beaumont
## 139 Dopff & Irion
## 140 Kuentz-Bas
## 141 Poderi Colla
## 142 Giacomo Ascheri
## 143 Banyan
## 144 Domaine Zind-Humbrecht
## 145 Terra Valentine
## 146 Testarossa
## 147 Vincent Vineyards
## 148 Vincent Vineyards
## 149 Weingut Liebfrauenstift
## 150 Wrath
## 151 Yardstick
## 152 Herdade Grande
## 153 Albatross Ridge
## 154 Alta Colina
## 155 Marques de Griñon
## 156 Big Basin
## 157 Carl Graff
## 158 Casa Santa Vitória
## 159 Castello di Gabbiano
## 160 Castello Romitorio
## 161 Château Vincens
## 162 Chronic Cellars
## 163 Claiborne & Churchill
## 164 Collin-Bourisset
## 165 Conde de Velázquez
## 166 Cono Sur
## 167 Domaine Berthoumieu
## 168 Dracaena
## 169 Duckhorn
## 170 Dutton-Goldfield
## 171 Fritz Haag
## 172 Fritz Haag
## 173 G7
## 174 Le Cadeau
## 175 Stoneleigh
## 176 Tenuta Peter Sölva & Söhne
## 177 TerraMater
## 178 Isole e Olena
## 179 Kenwood
## 180 La Chablisienne
## 181 Manzoni
## 182 McIntyre Vineyards
## 183 Abbadia Ardenga
## 184 Alamos
## 185 Anaba
## 186 Apaltagua
## 187 Harrington
## 188 Abbazia Santa Anastasia
## 189 Viña Bisquertt
## 190 Emiliana
## 191 Fattoria Alois
## 192 Henry's Drive Vignerons
## 193 Aldegheri
## 194 Bertrand Ambroise
## 195 Campomaggio
## 196 Carpineto
## 197 Cesani
## 198 Spier
## 199 Sequum
## 200 Sierra Starr
## 201 Tenuta di Sesta
## 202 Terlan
## 203 Yatir
## 204 Adega Cooperativa de Borba
## 205 J. Lohr
## 206 J. Lohr
## 207 Courtney Benham
## 208 Del Carlo Winery
## 209 Delaire Graff
## 210 Domaine St Pierre
## 211 Eikendal
## 212 Famille Perrin
## 213 Matarromera
## 214 MCV
## 215 Mounts
## 216 Or Haganuz
## 217 Podere Scopetone
## 218 Quinta de Foz de Arouce
## 219 Robert Mondavi
## 220 Samuel Tinon
## 221 Sixteen by Twenty
## 222 St. Pauls
## 223 Talenti
## 224 Terlan
## 225 Mendel
## 226 Oldenburg
## 227 Oldenburg
## 228 Wagner
## 229 Treleaven
## 230 Benessere
## 231 Bloomer Creek
## 232 Andean Sky
## 233 Angove's
## 234 Silvan Ridge
## 235 Talamonti
## 236 Testarossa
## 237 Meeker
## 238 Consorzio Vini Tipici di San Marino
## 239 D'Arenberg
## 240 Dogwood
## 241 Domaine du Tariquet
## 242 Falcor
## 243 Hayman & Hill
## 244 Hermann J. Wiemer
## 245 J. & F. Lurton
## 246 Finca Las Moras
## 247 Long Flat
## 248 Work
## 249 Amity
## 250 Autumn Hill
## 251 Blue Rock
## 252 Cherry Hill
## 253 Cloud 9
## 254 Cueva de las Manos
## 255 David Fulton
## 256 Esterlina
## 257 Goats do Roam Wine Co.
## 258 Graham Beck
## 259 Hartenberg
## 260 Vignobles 46N118
## 261 Willamette Valley Vineyards
## 262 Algodon
## 263 Beaver Creek
## 264 Byron
## 265 Jardin
## 266 Jardin
## 267 Kaiken
## 268 Lungarotti
## 269 Marchesi Fumanelli
## 270 Mariell
## 271 Livio Felluga
## 272 My Big Fat Greek Wine
## 273 Nals Margreid
## 274 O. Fournier
## 275 Pico Maccario
## 276 Sottano
## 277 St. Francis
## 278 Trailhead
## 279 Erath
## 280 Franz Haas
## 281 Forstreiter
## 282 Cambria
## 283 I Giusti e Zanza
## 284 J. Christopher
## 285 Viña Cobos
## 286 Salomon-Undhof
## 287 Talley
## 288 Acústic
## 289 Josef Schmid
## 290 Parallel
## 291 Château Lafon-Rochet
## 292 Dionigi
## 293 Domaine Daniel Dugois
## 294 Kilikanoon
## 295 Finca Sophenia
## 296 Treana
## 297 Ventisquero
## 298 Aquinas
## 299 Arboleda
## 300 Attilio Ghisolfi
## 301 Benessere
## 302 Buried Cane
## 303 Cantina del Nebbiolo
## 304 Cascina Adelaide
## 305 Cascina La Ghersa
## 306 Claudia Springs
## 307 Cramele Recas
## 308 Domaine Bertagna
## 309 Domaine Sigalas
## 310 Socré
## 311 Boffa
## 312 Otto's Constant Dream
## 313 Mount Veeder
## 314 Rabino
## 315 Robert Mondavi
## 316 Bellussi
## 317 Château Mont-Pérat
## 318 Château Tour de Mirambeau
## 319 Aresti
## 320 Paladin
## 321 Perlage
## 322 Sant Eurosia
## 323 Sant Eurosia
## 324 J. & F. Lurton
## 325 L'Antica Quercia
## 326 Lucas Vineyards
## 327 Marsuret
## 328 De Martino
## 329 Beringer
## 330 Brutocao
## 331 Clos La Chance
## 332 Cono Sur
## 333 Sommariva
## 334 Spagnol
## 335 Jacquart
## 336 L'Antica Quercia
## 337 Koyle
## 338 Château Notre Dame du Quatourze
## 339 Mémoires
## 340 Cavas Hill
## 341 Antoine Moltès & Fils
## 342 Pezzi King
## 343 Bellisco
## 344 Pura 8
## 345 Viña Tarapacá
## 346 Chambers Rosewood Vineyards
## 347 Chambers Rosewood Vineyards
## 348 Robert Weil
## 349 Chambers Rosewood Vineyards
## 350 Torbreck
## 351 Cavallotto
## 352 Oremus
## 353 Rochioli
## 354 Louis Latour
## 355 Robert Weil
## 356 Rochioli
## 357 Jasper Hill
## 358 Château de la Tour
## 359 Weingut Hans Bausch
## 360 Philippe Colin
## 361 Torbreck
## 362 Bel Colle
## 363 J. Davies
## 364 Louis Latour
## 365 Winderlea
## 366 Wakefield
## 367 Cantina Terlano
## 368 De Martino
## 369 Montresor
## 370 Ronco del Gelso
## 371 Sebastiani
## 372 Elena Walch
## 373 Gini
## 374 Borgo Conventi
## 375 Ceago Vinegarden
## 376 Valiano
## 377 Volpe Pasini
## 378 Zenato
## 379 L.A. Cetto
## 380 La Vis
## 381 Lapostolle
## 382 Fratelli Zeni
## 383 Carmen
## 384 Tommasi
## 385 San Michele Eppan
## 386 Vinoce
## 387 Merriam
## 388 Murphy-Goode
## 389 Kynsi
## 390 Cantina Terlano
## 391 Casa Julia
## 392 Valdivieso
## 393 Bridlewood
## 394 San Pedro
## 395 Undurraga
## 396 Conti Formentini
## 397 Cline
## 398 Cono Sur
## 399 Aresti
## 400 Astoria
## 401 Cantine Maschio
## 402 Val d'Oca
## 403 Viña Bisquertt
## 404 Vinavanti
## 405 Vino V
## 406 Viticoltori Ponte
## 407 Jacquart
## 408 Lapostolle
## 409 Le Vigne di Alice
## 410 McGregor
## 411 Miles
## 412 Morro Bay
## 413 Perlage
## 414 Pizzolato
## 415 Pizzolato
## 416 Red Newt Cellars
## 417 Ca'Tullio
## 418 Pizzolato
## 419 Michlits
## 420 Château de Callac
## 421 Château de Marsan
## 422 Guardian
## 423 Kerloo
## 424 Kohl
## 425 Las Positas
## 426 Lieb
## 427 Luberri
## 428 Macari
## 429 Malat
## 430 Milbrandt
## 431 Ojai
## 432 ONX
## 433 Pomum
## 434 Prospect 772
## 435 Revello Fratelli
## 436 Gebeshuber
## 437 Tenuta La Marchesa
## 438 Trione
## 439 Vinos de Arganza
## 440 Vinos de Arganza
## 441 Walla Walla Vintners
## 442 Winzer Krems
## 443 Wölffer
## 444 Dunbar
## 445 Eschenhof Holzer
## 446 Fattorie Romeo del Castello
## 447 Flying Cloud
## 448 Gadais Père et Fils
## 449 André Brunel
## 450 Majolini
## 451 Montaudon
## 452 Montemercurio
## 453 Patrick Javillier
## 454 Philippe Fontaine
## 455 Pillitteri
## 456 Robert Mondavi
## 457 Roederer Estate
## 458 Rusack
## 459 Bellavista
## 460 Chanoine
## 461 Chehalem
## 462 Chehalem
## 463 Henri de Villamont
## 464 Vollereaux
## 465 Wittmann
## 466 Valentina Cubi
## 467 Deutz
## 468 Domaine Serene
## 469 Dr. Loosen
## 470 Dr. Loosen
## 471 H. Blin
## 472 Henri de Villamont
## 473 Henri de Villamont
## 474 Herdade Grande
## 475 Jeaunaux-Robin
## 476 Bell
## 477 Castello di Amorosa
## 478 Château Vray Croix de Gay
## 479 Dampierre
## 480 Santa Maria La Palma
## 481 Sparkman
## 482 Argiolas
## 483 Babcock
## 484 Cape View
## 485 Ken Forrester
## 486 Louis Bernard
## 487 Lyeth
## 488 Marco Cecchini
## 489 Vigneti Le Monde
## 490 Vigneti Le Monde
## 491 V&N; Cellars
## 492 Winzer Krems
## 493 Zerba Cellars
## 494 Insania
## 495 Knapp
## 496 Lava Cap
## 497 Loess
## 498 MICA Cellars
## 499 Michael Pozzan
## 500 Domaine du Grand Cros
## 501 El Coto
## 502 Fenestra
## 503 Gunter Triebaumer
## 504 Hanna
## 505 Alain Jaume et Fils
## 506 Aleo
## 507 Altùris
## 508 Camaraderie
## 509 Camaraderie
## 510 Beringer
## 511 Big Basin
## 512 Boude Baudin
## 513 Boude Baudin
## 514 Conn Creek
## 515 Cono Sur
## 516 D.R. Stephens
## 517 Davis Family
## 518 Davis Family
## 519 Domaine Jeannin-Naltet
## 520 Prospect 772
## 521 Qupé
## 522 Qupé
## 523 Rex Hill
## 524 Ruby
## 525 Structure
## 526 Testarossa
## 527 Tumwater
## 528 Wittmann
## 529 Jeaunaux-Robin
## 530 Joseph Jewell
## 531 Lapostolle
## 532 Le Cadeau
## 533 Le Cadeau
## 534 Le Cadeau
## 535 Le Vigne
## 536 Maximin Grünhäuser
## 537 Northstar
## 538 Padis
## 539 Paul O'Brien
## 540 Claiborne & Churchill
## 541 Flying Goat Cellars
## 542 Flying Goat Cellars
## 543 Abbazia di Novacella
## 544 Midsummer Cellars
## 545 ONX
## 546 Les Belles Collines
## 547 Lutum
## 548 Turiya
## 549 Iron Horse
## 550 Brandini
## 551 Artesa
## 552 Carlisle
## 553 Château Vignelaure
## 554 Clos d'Argentine
## 555 Mas de Cadenet
## 556 Passing Time
## 557 Resalte
## 558 Sanctuary
## 559 Terre Rouge
## 560 Limerick Lane
## 561 Limerick Lane
## 562 Loring Wine Company
## 563 Eighty Four
## 564 Flying Goat Cellars
## 565 Four Lanterns
## 566 Turiya
## 567 World's End
## 568 Benegas
## 569 W.H. Smith
## 570 Alleromb
## 571 Ardor
## 572 Berryessa Gap
## 573 Brezza
## 574 Château Bois Chantant
## 575 Château de Campuget
## 576 Château de l'Aubrade
## 577 Château de Pressac
## 578 Chateau Lafayette Reneau
## 579 Château Maison Noble Saint Martin
## 580 Cupcake
## 581 Raconteur
## 582 Savage Grace
## 583 Seven Falls
## 584 Silvertip
## 585 Steininger
## 586 Stevens
## 587 Strauss
## 588 Strauss
## 589 Trinity River
## 590 Umathum
## 591 Vintage Cowboy
## 592 Winzer Krems
## 593 Kontos
## 594 Landhaus Mayer
## 595 Lavau
## 596 L'Ecole No. 41
## 597 Lyrarakis
## 598 Malat
## 599 Midnight
## 600 Michael Pozzan
## 601 Michele Chiarlo
## 602 Monte Xanic
## 603 Paoletti
## 604 Peconic Bay Winery
## 605 Príncipe de Viana
## 606 Proemio
## 607 Quady North
## 608 Quady North
## 609 Quinta do Portal
## 610 Raptor Ridge
## 611 Rodney Strong
## 612 Saintsbury
## 613 Sextant
## 614 Solar de Pinheiro
## 615 Suavia
## 616 Tilia
## 617 B Cellars
## 618 Bacio della Luna
## 619 Barlow
## 620 Borgo Maragliano
## 621 Bortolotti
## 622 Claiborne & Churchill
## 623 Coiled
## 624 Coiled
## 625 Colter's Creek
## 626 Corte Falco
## 627 Domenico Cavazza
## 628 Cascina La Ghersa
## 629 Kangarilla Road
## 630 Walt
## 631 WillaKenzie Estate
## 632 Willm
## 633 Jean-Marc Bernhard
## 634 Yeringberg
## 635 Armida
## 636 Marqués de Murrieta
## 637 Torbreck
## 638 Biecher & Schaal
## 639 Domaines Schlumberger
## 640 Domaines Schlumberger
## 641 Foxen
## 642 Les Belles Collines
## 643 Luis Duarte
## 644 Melhill
## 645 Niner
## 646 Purple Hands
## 647 Quinta da Lagoalva de Cima
## 648 Quinta do Monte Xisto
## 649 Reichsgraf von Kesselstatt
## 650 Stone The Crows
## 651 Sturm
## 652 Kuentz-Bas
## 653 Plantagenet
## 654 Scratch
## 655 Sipp Mack
## 656 St. Amant
## 657 Stoller
## 658 Fable Mountain
## 659 Vine Cliff
## 660 Va Piano
## 661 Y Rousseau
## 662 Monte Volpe
## 663 Palladino
## 664 Paradise Ridge
## 665 Pecchenino
## 666 Poderi Colla
## 667 Poet's Leap
## 668 Rafael Cambra
## 669 Raphael
## 670 Seven Hills
## 671 Snoqualmie
## 672 Stags' Leap Winery
## 673 The Grapes of Roth
## 674 The Withers Winery
## 675 Truchard
## 676 Acacia
## 677 Array
## 678 Baracchi Riccardo
## 679 Baracchi Riccardo
## 680 Barrister
## 681 Bodegas Berceo
## 682 Bunnell
## 683 Castello di Neive
## 684 Castello di Querceto
## 685 Chateau Ste. Michelle
## 686 Cobb
## 687 Comm. G. B. Burlotto
## 688 Cooper-Garrod
## 689 Mosquito Fleet
## 690 Nadia
## 691 Nittnaus Hans und Christine
## 692 Nottingham Cellars
## 693 Poggio Argentiera
## 694 Pride Mountain
## 695 Reyneke
## 696 Ruffino
## 697 Saint Clair
## 698 Soellner
## 699 Woodinville Wine Cellars
## 700 Kanonkop
## 701 El Enemigo
## 702 Château d'Esclans
## 703 Château Riotor
## 704 Château Sainte Marguerite
## 705 Château Vignelaure
## 706 Cloudy Bay
## 707 Domaine de la Bastide Blanche
## 708 Domaine du Grand Cros
## 709 Domaine Sainte-Marie
## 710 Dry Creek Vineyard
## 711 Dry River
## 712 Dutton Estate
## 713 Failla
## 714 Friedeman
## 715 Akarua
## 716 Benvenuto de la Serna
## 717 Carrick
## 718 JCB
## 719 Casca Wines
## 720 Cave de Viré
## 721 Cortes de Cima
## 722 Domaine Bousquet
## 723 Mendel
## 724 Messias
## 725 Mont Sec
## 726 Paolo Manzone
## 727 Quinta de Paços
## 728 Rascal
## 729 Terrazas de Los Andes
## 730 Herdade Grande
## 731 Jack's House
## 732 Kiwi Cuvée
## 733 Domaine Michel Goubard
## 734 Domaine Poulleau Père et Fils
## 735 Durigutti
## 736 El Esteco
## 737 Felten Cellars
## 738 Wines & Winemakers
## 739 Lagarde
## 740 Marchesi di Barolo
## 741 McPherson
## 742 Patriarche Père et Fils
## 743 Paul Reitz
## 744 Pech Merle
## 745 Punset
## 746 Ribafreixo
## 747 Jacob's Creek
## 748 William Knuttel
## 749 Casa Larga
## 750 Cave de Beblenheim
## 751 De Loach
## 752 De Martino
## 753 Dopff Au Moulin
## 754 Center of Effort
## 755 El Coto
## 756 Handley
## 757 Kuleto Estate
## 758 Lane Tanner
## 759 MacRostie
## 760 Monte De Oro
## 761 Mounts
## 762 Ninquén
## 763 Oro de Castilla
## 764 Pablo del Villar
## 765 Pax
## 766 Robert Foley
## 767 42°S
## 768 Manyana
## 769 McWilliam's Hanwood Estate
## 770 Paternoster
## 771 G. H. Mumm
## 772 Iron Horse
## 773 Jean Milan
## 774 Monte da Penha
## 775 Patton Valley
## 776 Patton Valley
## 777 Pierre Gimonnet et Fils
## 778 Scubla
## 779 Adelsheim
## 780 Bruno Paillard
## 781 Castello d'Albola
## 782 Ferrari
## 783 Laetitia
## 784 Bella
## 785 Quinta do Sagrado
## 786 San Pedro de Yacochuya
## 787 Sobredos
## 788 St. Supéry
## 789 Viña Cobos
## 790 Von Schleinitz
## 791 Barnard Griffin
## 792 Beacon Hill
## 793 Bernard Magrez
## 794 Brian Carter Cellars
## 795 Buttonwood
## 796 Château Corbin
## 797 Château Haut-Logat
## 798 Château La Branne
## 799 Château Mayne Vieil
## 800 Château Mille-Roses
## 801 Chessman
## 802 Deerfield Ranch
## 803 Domaine Franck Besson
## 804 Efeste
## 805 Efeste
## 806 Firesteed
## 807 Iron Hub
## 808 Kooyong
## 809 Moncaro
## 810 Finca Constancia
## 811 Aiken
## 812 Castell
## 813 Donkey & Goat
## 814 Torbreck
## 815 Valdicava
## 816 Finn Hill
## 817 Keuka Spring
## 818 La Playa
## 819 Les Vins Aujoux
## 820 Mont Gravet
## 821 Navardia
## 822 Pata Negra
## 823 Ridolfi
## 824 Still Waters
## 825 Stomping Ground
## 826 Tenuta Poggio il Castellare
## 827 Tenuta San Giorgio
## 828 Terrapura
## 829 Clos Troteligotte
## 830 Columbia Winery
## 831 Domaine de Thulon
## 832 Domaine du Haut-Poncié
## 833 Domaine du Vissoux
## 834 Dosio
## 835 G7
## 836 Georges Duboeuf
## 837 Juvé y Camps
## 838 Juvé y Camps
## 839 Kontos
## 840 Lamoreaux Landing
## 841 Laurent Gauthier
## 842 Leaping Horse
## 843 Manoir du Carra
## 844 Maryhill
## 845 Cottanera
## 846 CVA Canicattì
## 847 Domaine Barmès-Buecher
## 848 Domaine Bott-Geyl
## 849 Domaine Collotte
## 850 Domaine Faiveley
## 851 Domaine Jacques Prieur
## 852 Domaine René Bouvier
## 853 Domaine Roland Schmitt
## 854 Dr. H. Thanisch (Erben Thanisch)
## 855 Easton
## 856 Edna Valley Vineyard
## 857 Fattoria La Rivolta
## 858 Fess Parker
## 859 Firesteed
## 860 Foretell
## 861 Gershon Bachus
## 862 Graci
## 863 Tornatore
## 864 West of Temperance
## 865 Winzergenossenschaft Mayschoss-Altenahr
## 866 Baglio del Cristo di Campobello
## 867 Beresford
## 868 Carabella
## 869 Carmen
## 870 Casa Dumetz
## 871 Greenwood Ridge
## 872 Herencia
## 873 J. Scott Cellars
## 874 Chateau Dereszla
## 875 Quinta do Vallado
## 876 Roquette e Cazes
## 877 Vall Llach
## 878 Ceralti
## 879 Château Bel-Air Ortet
## 880 Château Ferrière
## 881 Cline
## 882 Fuentes
## 883 Fuse
## 884 I Luoghi
## 885 J Vineyards & Winery
## 886 Kokomo
## 887 Loup Blanc
## 888 Maritávora
## 889 Owen Roe
## 890 Pacific Ridge
## 891 Phoenix Ranch
## 892 2nd Chance
## 893 Bergevin Lane
## 894 Hungerford Hill
## 895 Jacopo Biondi-Santi
## 896 Le Buche
## 897 Leonesse Cellars
## 898 Market Vineyards
## 899 Marsiliana
## 900 Mazzei
## 901 Morlanda
## 902 Quinta do Vallado
## 903 Becker
## 904 Bex
## 905 Boffa
## 906 Brennan
## 907 Brennan
## 908 Casa de Vilacetinho
## 909 Cascina Bruciata
## 910 Castello di Neive
## 911 Antucura
## 912 Frédéric Brouca
## 913 Fullerton
## 914 Gotsa Family Wines
## 915 Graffigna
## 916 Coelho
## 917 Coelho
## 918 Deltetto
## 919 Diego Conterno
## 920 Domaine Bousquet
## 921 Evans & Tate
## 922 Falua
## 923 Finca Sophenia
## 924 Fiuza
## 925 Sidewood
## 926 Terre Rouge
## 927 Antonio Mas
## 928 Aveleda
## 929 Battaglio
## 930 Bella Grace
## 931 Bodega Calle
## 932 Borgogno F.lli Serio e Battista
## 933 Château les Petits Arnauds
## 934 Château Mougneaux
## 935 Château Saintongey
## 936 Château Ségonzac
## 937 Chehalem
## 938 Chehalem
## 939 Covila
## 940 Cuda Ridge Wines
## 941 Duménil
## 942 Ego Bodegas
## 943 Ektimo Vineyards
## 944 Finca del Marquesado
## 945 Folin Cellars
## 946 Francis Coppola
## 947 Frank Family
## 948 Real Companhia Velha
## 949 Santos & Seixo
## 950 Travaglini
## 951 Vine Cliff
## 952 Yorkville Cellars
## 953 Agustí Torelló Mata
## 954 Amalie Robert
## 955 Archgate Cellars
## 956 Bersano
## 957 Cantine di Marzo
## 958 Carica
## 959 Ignacio Marín
## 960 Jacquart
## 961 Château Cap Saint-Martin
## 962 Château de Bel
## 963 Vranken
## 964 Château Pavillon de Boyrein
## 965 Fabiano
## 966 Vinosia
## 967 Kono
## 968 Santa Ema
## 969 Tommasi
## 970 Morandé
## 971 One Hope
## 972 Pommery
## 973 Saddleback
## 974 Alexander Valley Vineyards
## 975 Covington
## 976 Feudo Montoni
## 977 Kendall-Jackson
## 978 Ledgewood Creek
## 979 X
## 980 Château Lamothe-Vincent
## 981 Montresor
## 982 Yvon Mau
## 983 Bellenda
## 984 Breggo
## 985 Byzantium
## 986 Pascual Toso
## 987 Quinta de la Rosa
## 988 Sieber Rd
## 989 Lachini
## 990 Mauro
## 991 Dancing Bull
## 992 Domaine de Mirail
## 993 Domaine des Terrisses
## 994 Domaine du Tariquet
## 995 Fournier Père et Fils
## 996 Benanti
## 997 Caruso & Minini
## 998 Yalumba
## 999 The Four Graces
## 1000 Amity
## 1001 Arcane Cellars
## 1002 Benanti
## 1003 Benton-Lane
## 1004 Château Puy-Servain
## 1005 Château Puy-Servain
## 1006 Domaine Philippe Portier
## 1007 Expression 44°
## 1008 Fournier Père et Fils
## 1009 Nick Faldo
## 1010 Tarapaca
## 1011 The Four Graces
## 1012 Hunt Country Vineyards
## 1013 Antichi Vinai 1877
## 1014 Baglio di Pianetto
## 1015 Brecon Estate
## 1016 Callaway
## 1017 Casa di Grazia
## 1018 Casa di Grazia
## 1019 Ruhlmann
## 1020 Spring Mountain Vineyard
## 1021 Stanton Vineyard
## 1022 Terrazas de Los Andes
## 1023 Cusumano
## 1024 Dalton
## 1025 Domaine Barmès-Buecher
## 1026 Dragonette
## 1027 Firesteed
## 1028 Folin Cellars
## 1029 Gaba do Xil
## 1030 Gorka Izagirre
## 1031 Grgich Hills
## 1032 Linaje Garsea
## 1033 Omaka Springs
## 1034 Ventana
## 1035 Vieil Armand
## 1036 Viticultori Associati Canicatti
## 1037 Vivera
## 1038 WildAire
## 1039 Mills Reef
## 1040 Pazo Torrado
## 1041 Sur de los Andes
## 1042 Babich
## 1043 Rentas de Fincas
## 1044 Setzer
## 1045 Tenuta Luisa
## 1046 Honeywood Winery
## 1047 I Clivi
## 1048 Irony
## 1049 Kedar's K'orus
## 1050 Kedar's K'orus
## 1051 Little Black Dress
## 1052 Marqués de Vizhoja
## 1053 Estancia
## 1054 Finca La Emperatriz
## 1055 Vinai dell'Abbate
## 1056 Winzer Krems
## 1057 Graf Hardegg
## 1058 Botalcura
## 1059 Bridgeway
## 1060 Calatrasi
## 1061 Château Bélingard
## 1062 Clos Teddi
## 1063 Colutta
## 1064 Ormonde
## 1065 Principe di Corleone
## 1066 Sandeman
## 1067 Scott Harvey
## 1068 Sea Slopes
## 1069 Trisaetum
## 1070 Bergström
## 1071 Bergström
## 1072 Mauro Veglio
## 1073 Poças
## 1074 Quinta do Vesuvio
## 1075 Schild Estate
## 1076 Shafer
## 1077 Alphonse Mellot
## 1078 Ascheri
## 1079 Bergström
## 1080 Big Table Farm
## 1081 Trisaetum
## 1082 Trisaetum
## 1083 Horsepower
## 1084 J. Davies
## 1085 Château de Parnay
## 1086 Tres Sabores
## 1087 Trisaetum
## 1088 Williams Selyem
## 1089 Cayuse
## 1090 Chappellet
## 1091 Churchill's
## 1092 Cobb
## 1093 Dion
## 1094 Domaine Bernard Fleuriet et Fils
## 1095 Drouhin Oregon Roserock
## 1096 Robert Mondavi
## 1097 Santa Alicia
## 1098 Stevens
## 1099 Rutherford Ranch
## 1100 Sextant
## 1101 Valdivieso
## 1102 Weixelbaum
## 1103 Landmark
## 1104 Mercer
## 1105 Michel Gassier
## 1106 Nada Fiorenzo
## 1107 Barrage Cellars
## 1108 Berryessa Gap
## 1109 Bonny Doon
## 1110 Carpineto
## 1111 Casajús
## 1112 Castellroig
## 1113 Château d'Or et de Gueules
## 1114 Chateau Ste. Michelle
## 1115 Citille di Sopra
## 1116 Condado de Oriza
## 1117 Cookies & Cream
## 1118 Daou
## 1119 Dei
## 1120 Domaine de Gensac
## 1121 Domaine Rolet Père et Fils
## 1122 Domaine Rotier
## 1123 Three Brothers
## 1124 Wilridge
## 1125 Wilridge
## 1126 Belden Barns
## 1127 Château du Retout
## 1128 Château la Gravette Lacombe
## 1129 Château Méric
## 1130 Apaltagua
## 1131 In Re
## 1132 Chasing Venus
## 1133 Château les Joyeuses
## 1134 Château Monfort Bellevue
## 1135 Château Vrai Caillou
## 1136 Concha y Toro
## 1137 Experience
## 1138 Cantine Grasso
## 1139 Grifalco
## 1140 Madrigal
## 1141 Millbrook
## 1142 Santa Rita
## 1143 Scotto Family Cellars
## 1144 Spicy Vines
## 1145 Kirkland Signature
## 1146 Les Vignerons Réunis de Monségur
## 1147 Nugnes
## 1148 Barnard Griffin
## 1149 Cantine Grasso
## 1150 Château les Lattes
## 1151 Concha y Toro
## 1152 Ports of New York
## 1153 Whitman Cellars
## 1154 Winkler-Hermaden
## 1155 Fire Block
## 1156 Palivou
## 1157 Felsner
## 1158 Gemella
## 1159 Gunter Triebaumer
## 1160 Gunter Triebaumer
## 1161 Tsantali
## 1162 Bisol
## 1163 Carmina
## 1164 Carpenè Malvolti
## 1165 Col Saliz
## 1166 Ghost Pines
## 1167 Wellington
## 1168 Zonin
## 1169 Lost River
## 1170 Toffoli
## 1171 Trapiche
## 1172 Louis Guntrum
## 1173 Pali
## 1174 Robert Stemmler
## 1175 Rutini
## 1176 Schloss Halbturn
## 1177 Spagnol
## 1178 Wines & Winemakers
## 1179 Zolo
## 1180 Bailly-Lapierre
## 1181 Balo
## 1182 Bel Colle
## 1183 Beresford
## 1184 Boasso
## 1185 Broccardo
## 1186 Casa Agricola Santos Jorge
## 1187 Cave des Vignerons de Buxy
## 1188 Chamlija
## 1189 Château de Fuissé
## 1190 Château de Santenay
## 1191 Chime
## 1192 Christophe Cordier
## 1193 Famille Laplace
## 1194 Finca Lalande
## 1195 Altos Las Hormigas
## 1196 Antucura
## 1197 Aubichon Cellars
## 1198 Battaglio
## 1199 Ben Haines
## 1200 Beresford
## 1201 Blue Fish
## 1202 Bouchard Père & Fils
## 1203 Brennan
## 1204 Cambridge & Sunset
## 1205 Casca Wines
## 1206 Cascina Chicco
## 1207 Coelho
## 1208 Poderi Colla
## 1209 Quinta da Foz
## 1210 Roederer Estate
## 1211 St. Francis
## 1212 Tamber Bey
## 1213 Tantara
## 1214 Westerly
## 1215 Aesthete
## 1216 Bacalhôa Wines of Portugal
## 1217 Barton
## 1218 Bava
## 1219 Bucci
## 1220 Central Coast Group Project
## 1221 Château Tour Grand Faurie
## 1222 Fess Parker
## 1223 Hecho por Ruben
## 1224 Iron Horse
## 1225 J. Portugal Ramos
## 1226 Judd's Hill
## 1227 Longboard
## 1228 Piro
## 1229 Point & Line
## 1230 Secret Spot Wines
## 1231 Tantara
## 1232 White Hart Wine
## 1233 Artesa
## 1234 Balletto
## 1235 Bien Nacido
## 1236 Bodega de Edgar
## 1237 Cambria
## 1238 Agricoltori del Chianti Geografico
## 1239 Barrière Frères
## 1240 Castellare di Castellina
## 1241 Château la Grande Barthe
## 1242 Chateau Ste. Michelle
## 1243 Danie de Wet
## 1244 Dr. Wehrheim
## 1245 Erba
## 1246 Mulderbosch
## 1247 Provenance Vineyards
## 1248 Rietvallei Estate Wine
## 1249 Sol Duc
## 1250 Horan Estates
## 1251 Lamole di Lamole
## 1252 Leo
## 1253 Villa Wolf
## 1254 Washington Hills
## 1255 Washington Hills
## 1256 Guardian Peak
## 1257 Bell
## 1258 Cameron Hughes
## 1259 Caparzo
## 1260 Venta Morales
## 1261 Firriato
## 1262 Fondo Antico
## 1263 Hannah Nicole Vineyards
## 1264 Hosmer
## 1265 Ancient Oak Cellars
## 1266 Barkan
## 1267 Black Star Farms
## 1268 Cosentino
## 1269 Cusumano
## 1270 Lusco
## 1271 Markham
## 1272 Michael David
## 1273 Maggiovini
## 1274 La Merika
## 1275 Masseria del Feudo Grottarossa
## 1276 Napa Family Vineyards
## 1277 Petroni
## 1278 Petroni
## 1279 Resonata
## 1280 Aveleda
## 1281 Bodegas Fontana
## 1282 Bodegas Peñafiel
## 1283 Brotherhood
## 1284 Calatrasi
## 1285 Cave de Lugny
## 1286 Dashwood
## 1287 Feudi di San Gregorio
## 1288 Ghost Waltz
## 1289 Griesbauerhof
## 1290 Gustav Adolf Schmitt
## 1291 Cantina Produttori San Michele Appiano
## 1292 Cantina Terlano
## 1293 Cembra
## 1294 Cliff Lede
## 1295 Clos Figueras
## 1296 Consilience
## 1297 Domaines Landron
## 1298 Cave du Vin Blanc de Morgex et de la Salle
## 1299 Cedar Creek
## 1300 Colterenzio
## 1301 Demetria
## 1302 Domaine de l'Ermitage
## 1303 Domaine de Rome
## 1304 Domdechant Werner
## 1305 Dr. Fischer
## 1306 Osborne
## 1307 Pinord
## 1308 Purple Hands
## 1309 Quintas de Melgaço
## 1310 Rosenblum
## 1311 Still Waters
## 1312 Summers
## 1313 Tenuta Peter Sölva & Söhne
## 1314 Terra Valentine
## 1315 Tiefenbrunner
## 1316 Tramin
## 1317 Vesevo
## 1318 Viszlay Vineyards
## 1319 Viszlay Vineyards
## 1320 Yealands
## 1321 Zahel
## 1322 Albet I Noya
## 1323 Allram
## 1324 Alta Alella
## 1325 Ampelos
## 1326 Ascencion
## 1327 Baigorri
## 1328 Carrick
## 1329 Challen
## 1330 Château Coutinel
## 1331 Château Grand Boise
## 1332 Château le Payral
## 1333 Clos Fardet
## 1334 Crux
## 1335 Damiani
## 1336 Damiani
## 1337 Davis Family
## 1338 Di Meo
## 1339 Domaine Clos Gautier
## 1340 Domaine Harmonie des Arpents
## 1341 Domaine Sainte-Marie
## 1342 Domäne Wachau
## 1343 Doren
## 1344 Écluse
## 1345 Feudo Montoni
## 1346 Grizzly Peak
## 1347 Tilia
## 1348 Villa Mottura
## 1349 14 Hands
## 1350 Barraco
## 1351 Capolino Perlingieri
## 1352 Château Bois Noir
## 1353 Château du Moulin Rouge
## 1354 Chateau le Grand Verdus
## 1355 Dark Hundred
## 1356 Flying Trout
## 1357 Horeau-Beylot
## 1358 Bodegas Artazu
## 1359 Burgo Viejo
## 1360 Toad Hollow
## 1361 Penumbra
## 1362 Stemmari
## 1363 Tablas Creek
## 1364 Torre Quarto
## 1365 Château de Ferrand
## 1366 Saint André de Figuière
## 1367 Santa Alicia
## 1368 Château d'Esclans
## 1369 Gainey
## 1370 Banear
## 1371 Bonterra
## 1372 Chaddsford
## 1373 Di Lenardo
## 1374 Lava Cap
## 1375 Lavender Ridge
## 1376 Mas de la Dame
## 1377 Montevina
## 1378 Quinta de Ventozelo
## 1379 Substance
## 1380 Mas de la Dame
## 1381 Stevenot
## 1382 Stonehouse
## 1383 TerraMater
## 1384 Fenestra
## 1385 Renato Keber
## 1386 S.A. Prüm
## 1387 Schmidt
## 1388 Tercic
## 1389 August Truth
## 1390 Terre Brûlée
## 1391 Delaire Graff
## 1392 Abbazia di Novacella
## 1393 Apriori
## 1394 Bernat
## 1395 Bodega Norton
## 1396 Bouchaine
## 1397 Brys
## 1398 Bulas
## 1399 C. von Nell-Breuning
## 1400 Caldaro
## 1401 Casa da Passarella
## 1402 Chateau Grand Traverse
## 1403 Colterenzio
## 1404 Manincor
## 1405 Mario Schiopetto
## 1406 Martin Ray
## 1407 Matchbook
## 1408 Nals Margreid
## 1409 Nals Margreid
## 1410 Paratus
## 1411 Peter Mertes
## 1412 Quinta do Vallado
## 1413 Quinta dos Murças
## 1414 Replica
## 1415 Domaine de l'Hermitage
## 1416 Domaine Weinbach
## 1417 Domaines Schlumberger
## 1418 Dry Creek Vineyard
## 1419 Dunham
## 1420 Tamarack Cellars
## 1421 Tamarack Cellars
## 1422 Trimbach
## 1423 Krutzler
## 1424 Marita's Vineyard
## 1425 Pamplin
## 1426 Prieler
## 1427 Rieflé
## 1428 Rieflé
## 1429 Rocca
## 1430 Buty
## 1431 Caldwell
## 1432 Charles Smith
## 1433 Château Paradis
## 1434 Château Salettes
## 1435 Kanonkop
## 1436 Walla Walla Vintners
## 1437 Walla Walla Vintners
## 1438 Domaine de Val d'Arenc
## 1439 Domäne Wachau
## 1440 Efeste
## 1441 Ferrari-Carano
## 1442 Fritsch
## 1443 Judith Beck
## 1444 Epoch Estate Wines
## 1445 Z. Alexander Brown
## 1446 Alain Brumont
## 1447 Alex Gambal
## 1448 Alves de Sousa
## 1449 Carlisle
## 1450 Château La Nerthe
## 1451 David Duband
## 1452 David Duband
## 1453 Le Ragnaie
## 1454 Louis Jadot
## 1455 Masi
## 1456 Epoch Estate Wines
## 1457 Freemark Abbey
## 1458 Fritz Haag
## 1459 Georges Vigouroux
## 1460 Grimm's Bluff
## 1461 Foradori
## 1462 Joseph Phelps
## 1463 Le Ragnaie
## 1464 Louis Jadot
## 1465 Mesa Del Sol
## 1466 Mouchão
## 1467 Pine Ridge
## 1468 Sandler
## 1469 Sixteen by Twenty
## 1470 Stone The Crows
## 1471 Tolosa
## 1472 Villa Poggio Salvi
## 1473 Volker Eisele Family Estate
## 1474 TerraNoble
## 1475 Terre de Trinci
## 1476 Mosolo Gleni
## 1477 Arbor Crest
## 1478 Aresti
## 1479 Wolf Blass
## 1480 Chilensis
## 1481 Domaines Barons de Rothschild (Lafite)
## 1482 Fetzer
## 1483 Finca Sophenia
## 1484 Fournier Père et Fils
## 1485 Barker's Marque
## 1486 Beringer
## 1487 Bock
## 1488 Carneros Creek
## 1489 Casale Triocco
## 1490 Castello di Monastero
## 1491 Konrad
## 1492 Lungarotti
## 1493 Mana
## 1494 Michel Torino
## 1495 Robert Hall
## 1496 Rubissow
## 1497 Santa Julia
## 1498 Santa Julia
## 1499 Ronco Blanchis
## 1500 San Pedro
## 1501 Planeta
## 1502 Sequana
## 1503 Small Vines
## 1504 Tasca d'Almerita
## 1505 Bergström
## 1506 Bründlmayer
## 1507 Château d'Aydie
## 1508 Château de Gaudou
## 1509 Château des Jacques
## 1510 Emiliana
## 1511 Happy Canyon Vineyard
## 1512 Palari
## 1513 Pascal Aufranc
## 1514 Planeta
## 1515 Carabella
## 1516 Charles Krug
## 1517 Château Blaignan
## 1518 Château d'Aydie
## 1519 Château de Gaudou
## 1520 Concha y Toro
## 1521 Domaine Bru-Baché
## 1522 Lagar de Bezana
## 1523 Morgante
## 1524 Rex Hill
## 1525 Santa Carolina
## 1526 Steven Kent
## 1527 Hauner
## 1528 Herdade do Esporão
## 1529 J. Portugal Ramos
## 1530 Jack's House
## 1531 Jean León
## 1532 Bodegas Luzón
## 1533 Volver
## 1534 Cellars 33
## 1535 Château de Chaintres
## 1536 Château de la Vieille Tour
## 1537 Château la France
## 1538 Château Lalande Méric
## 1539 Château Lauduc
## 1540 Cline
## 1541 Clos de Nit
## 1542 DFJ Vinhos
## 1543 DFJ Vinhos
## 1544 Jidvei
## 1545 Orion Wines
## 1546 Raventós de Alella
## 1547 Rubus
## 1548 Sanguinhal
## 1549 Santa Rita
## 1550 Valdivieso
## 1551 Villa Cordevigo
## 1552 Wines & Winemakers
## 1553 Adega Cooperativa de Borba
## 1554 Botromagno
## 1555 Bowman Cellars
## 1556 Quinta das Arcas
## 1557 Quilceda Creek
## 1558 Williams Selyem
## 1559 Château Margaux
## 1560 Château Palmer
## 1561 Pirouette
## 1562 Marchesi Antinori
## 1563 Château Troplong Mondot
## 1564 Tenuta San Guido
## 1565 Tenuta dell'Ornellaia
## 1566 JCB
## 1567 Château La Mission Haut-Brion
## 1568 Williams Selyem
## 1569 Château Figeac
## 1570 Château Léoville Poyferré
## 1571 Tenuta Argentiera
## 1572 Château Haut-Brion
## 1573 Château la Fleur-Pétrus
## 1574 Château Lynch-Bages
## 1575 Groth
## 1576 Château Mouton Rothschild
## 1577 Château Trotanoy
## 1578 Williams Selyem
## 1579 Château Beau-Séjour Bécot
## 1580 Williams Selyem
## 1581 Château Branaire-Ducru
## 1582 Château Canon
## 1583 Château Canon la Gaffelière
## 1584 Doyenne
## 1585 Hanzell
## 1586 Balletto
## 1587 Billsboro
## 1588 C'est Bon
## 1589 Ceuso
## 1590 Château Balac
## 1591 Château des Annereaux
## 1592 Château Frank
## 1593 Château Haut-Bergey
## 1594 Château Larrivet Haut-Brion
## 1595 Château le Sartre
## 1596 Château Mancèdre
## 1597 Château Peyredon Lagravette
## 1598 Château Potensac
## 1599 Chateau Ste. Michelle
## 1600 Clos Beauregard
## 1601 Dark Horse
## 1602 Domaine Anderson
## 1603 Dowsett Family
## 1604 Feudo Antico
## 1605 Gamache
## 1606 Mills Reef
## 1607 Paumanok
## 1608 Broken Clouds
## 1609 Browne Family Vineyards
## 1610 Caruso & Minini
## 1611 Castillo De Feliciana
## 1612 Château Amour
## 1613 Château de Cruzeau
## 1614 Château de Paillet-Quancard
## 1615 Château de Rochemorin
## 1616 Gabriel Meffre
## 1617 Gabriel Meffre
## 1618 Wines & Winemakers
## 1619 Zolo
## 1620 Adega Cooperativa de Borba
## 1621 Adega Cooperativa de Borba
## 1622 Alta Vista
## 1623 Aymara
## 1624 Paul Buisse
## 1625 Saget la Perrière
## 1626 The Williamsburg Winery
## 1627 Valentin Bianchi
## 1628 Gruet
## 1629 Jean-Max Roger
## 1630 Magnum Vinhos
## 1631 Adega Cooperativa de Borba
## 1632 Blue Valley
## 1633 Vinadeis
## 1634 Wines & Winemakers
## 1635 Zolo
## 1636 Gnarly Head
## 1637 Jacob's Creek
## 1638 Ca' Momi
## 1639 Domaine de Reuilly
## 1640 Enoport
## 1641 Fiuza
## 1642 Tie-Dye
## 1643 Il Chiosso
## 1644 Grayson
## 1645 Leaping Lizard
## 1646 Portal del Montsant
## 1647 Benvenuto de la Serna
## 1648 Decoy
## 1649 Trapiche
## 1650 Xanadu
## 1651 Adega Mãe
## 1652 Aniello
## 1653 Oak Knoll
## 1654 Parras Wines
## 1655 Parras Wines
## 1656 Quinta dos Avidagos
## 1657 Château Lanscade
## 1658 Château Troupian
## 1659 Château Vrai Caillou
## 1660 Cliff Creek
## 1661 Del Rio
## 1662 Delfino
## 1663 Gru
## 1664 J. Portugal Ramos
## 1665 First & Local
## 1666 Amalaya
## 1667 Half Mile Creek
## 1668 California Republic
## 1669 Cantina Valle Tritana
## 1670 Château Doms
## 1671 Château Pindefleurs
## 1672 Cliff Creek
## 1673 Quady North
## 1674 Qupé
## 1675 Réserve des Oliviers
## 1676 Tardieu-Laurent
## 1677 Sant Agnese dei F.lli Gigli
## 1678 Bonaccorsi
## 1679 Chanin
## 1680 Cuda Ridge Wines
## 1681 Doña Silvina
## 1682 Dürnberg
## 1683 Il Veltro
## 1684 Lange
## 1685 Markus Huber
## 1686 Massi di Mandorlaia
## 1687 Melrose
## 1688 Pieve Vecchia
## 1689 Piña
## 1690 Qupé
## 1691 Qupé
## 1692 Tardieu-Laurent
## 1693 Tessa Marie
## 1694 Türk
## 1695 Ugly Duckling
## 1696 Finca Vides
## 1697 Petra
## 1698 Recanati
## 1699 Terralsole
## 1700 Tommasi
## 1701 Caves Aliança
## 1702 Bodegas Cerrosol
## 1703 Dry Creek Vineyard
## 1704 Prejean
## 1705 Kadesh Barnea
## 1706 Antonino Tringali-Casanuova
## 1707 Tyrrell's
## 1708 Vasse River
## 1709 Vega de la Reina
## 1710 Villa Vignamaggio
## 1711 Vinum Cellars
## 1712 Analivia
## 1713 Battle of Bosworth
## 1714 La Gerla
## 1715 Quinta do Grifo
## 1716 Recanati
## 1717 St. Clement
## 1718 Quinta da Alorna
## 1719 Torres
## 1720 Renwood
## 1721 Tapeña
## 1722 Marqués de Cáceres
## 1723 Bodegas Campante
## 1724 Brick Road
## 1725 Chaddsford
## 1726 Ventosa
## 1727 Bodegas Riojanas
## 1728 Château de Malle
## 1729 Presqu'ile
## 1730 Sante Arcangeli
## 1731 Sixto
## 1732 Syncline
## 1733 Lambardi
## 1734 Le Carré
## 1735 Two Vintners
## 1736 Va Piano
## 1737 Tenuta San Giorgio
## 1738 Le P'tit Paysan
## 1739 Lisini
## 1740 Mesa Del Sol
## 1741 Ornellaia
## 1742 Analemma
## 1743 Bella
## 1744 Centolani
## 1745 Château Bouscaut
## 1746 Château Couhins
## 1747 Château d'Arche
## 1748 Château Gaudin
## 1749 Château Phélan-Ségur
## 1750 Darcie Kent Vineyards
## 1751 Univitis
## 1752 Volver
## 1753 Washington Hills
## 1754 Finca La Pica
## 1755 Château Saint-Urban
## 1756 Conde de Subirats
## 1757 Crayelle Cellars
## 1758 Domaine Beausejour
## 1759 Les Rocailles
## 1760 Niel Santofimia
## 1761 Producta Vignobles
## 1762 Silver Thread
## 1763 V. Sattui
## 1764 Ventosa
## 1765 Biutiful
## 1766 Cap Royal
## 1767 Cave B
## 1768 Château Barreyre
## 1769 Château Laronde Désormes
## 1770 Château Los Boldos
## 1771 Château Roquevieille
## 1772 Cocobon
## 1773 Domaine de la Sanglière
## 1774 Doña Isadora
## 1775 Ehret
## 1776 Château de Belcier
## 1777 Château des Tourtes
## 1778 Château Donjon de Bruignac
## 1779 Château Godard
## 1780 Château Haut Boilon
## 1781 Helix by Reininger
## 1782 Capanna
## 1783 Cellers Unió
## 1784 Château Haut Bertinerie
## 1785 Château Lalande-Borie
## 1786 Château Preuillac
## 1787 Koenig Vineyards
## 1788 Krutz
## 1789 Loring Wine Company
## 1790 Loring Wine Company
## 1791 Los Vencejos
## 1792 Manzoni
## 1793 Amavi
## 1794 Bolsignano
## 1795 Bouchaine
## 1796 Bucher
## 1797 Syncline
## 1798 Uccelliera
## 1799 Villadoria
## 1800 Château Cos d'Estournel
## 1801 Château de Roquebrune
## 1802 Quinta do Casal Branco
## 1803 Real Companhia Velha
## 1804 Jean-Marc Burgaud
## 1805 Jean-Marc Burgaud
## 1806 Jewelry Box
## 1807 Juvé y Camps
## 1808 Lanson
## 1809 Magnolia Court
## 1810 Mamarracho
## 1811 Mantel Blanco
## 1812 Red Rock
## 1813 Quinta da Lapa
## 1814 Real Companhia Velha
## 1815 Castillo de Liria
## 1816 San Felipe
## 1817 Tarantas
## 1818 Decoy
## 1819 Domaine André Colonge
## 1820 Domaine du Vissoux
## 1821 Domaine Pral
## 1822 Espaço Rural
## 1823 François Lurton
## 1824 Georges Duboeuf
## 1825 Georges Duboeuf
## 1826 Limited by Cambridge Cellars
## 1827 Loron et Fils
## 1828 Adegas Moure
## 1829 Bocopa
## 1830 Cairdean Estate
## 1831 Cardwell Hill
## 1832 Viluko
## 1833 Alias
## 1834 Bodegas Paniza
## 1835 Bota Box
## 1836 Viña Arnáiz
## 1837 Good Harbor
## 1838 Kuehn
## 1839 Long Meadow Ranch
## 1840 Mario Bazán
## 1841 Medlock Ames
## 1842 Peirano
## 1843 Marilyn Sauvignon Blonde
## 1844 Zudugarai
## 1845 Cascada Peak
## 1846 Bouza de Carril
## 1847 Eresma
## 1848 Montevicor
## 1849 Maximo
## 1850 Witching Stick
## 1851 Heritage
## 1852 Alamos
## 1853 Dopff Au Moulin
## 1854 EdenVale
## 1855 Alto Cinco
## 1856 Black Box
## 1857 Hendry
## 1858 White Oak
## 1859 Merrill Cellars
## 1860 Feudi del Pisciotto
## 1861 Château Beausejour-Duffau-Lagarrosse
## 1862 Château Clerc Milon
## 1863 Château Magdelaine
## 1864 Hundred Acre
## 1865 Monteverro
## 1866 Mazzei
## 1867 Nefarious
## 1868 Prospect 772
## 1869 Quilceda Creek
## 1870 Castellare di Castellina
## 1871 Castro Pena Alba
## 1872 Château de Pez
## 1873 Château Gruaud Larose
## 1874 Doyenne
## 1875 Gérard Bertrand
## 1876 Terre del Marchesato
## 1877 Argiano
## 1878 Campo al Noce
## 1879 Chandon
## 1880 Château du Tertre
## 1881 Château La Conseillante
## 1882 Chester Kidder
## 1883 Dunham
## 1884 Patz & Hall
## 1885 Quinta de Foz de Arouce
## 1886 Tenuta Monteti
## 1887 Henry's Drive Vignerons
## 1888 Volker Eisele Family Estate
## 1889 Angel Vine
## 1890 La Chablisienne
## 1891 Lake Breeze
## 1892 Longview
## 1893 Villa Matilde
## 1894 Williams Selyem
## 1895 Craneford
## 1896 Feudi di San Gregorio
## 1897 Ponzi
## 1898 Razor's Edge
## 1899 Torres
## 1900 Carlos Basso
## 1901 Daedalus
## 1902 La Chablisienne
## 1903 Piattelli
## 1904 Strathewen Hills
## 1905 Di Meo
## 1906 Hendry
## 1907 Ànima Negra
## 1908 Botromagno
## 1909 Nugan Family Estates
## 1910 Shingleback
## 1911 Alexander Valley Vineyards
## 1912 Summerwood
## 1913 Steininger
## 1914 AntoLin Cellars
## 1915 Calicaro
## 1916 Caliterra
## 1917 Emiliana
## 1918 Errazuriz
## 1919 Château Belrose
## 1920 Château de Lestiac
## 1921 Château les Mottes Pradier
## 1922 Cor Cellars
## 1923 Domäne Wachau
## 1924 Happy Canyon Vineyard
## 1925 Viña Bisquertt
## 1926 Virna Borgogno
## 1927 Walla Walla Vintners
## 1928 Pezat
## 1929 Pico Maccario
## 1930 Robert Mondavi
## 1931 Robert Oatley
## 1932 Shvo
## 1933 Stroppiana
## 1934 Château Grand Billard
## 1935 Mitolo
## 1936 Anakena
## 1937 Cade
## 1938 Caliterra
## 1939 Casa Rivas
## 1940 Waterbrook
## 1941 Château Macquin
## 1942 Domäne Wachau
## 1943 Hawks View
## 1944 Chime
## 1945 Clos Troteligotte
## 1946 Coghlan
## 1947 Collier Falls
## 1948 Dumas Station
## 1949 Laetitia
## 1950 Mancura
## 1951 O•S Winery
## 1952 Pezat
## 1953 Purlieu
## 1954 SuLei
## 1955 Valle Secreto
## 1956 Binyamina
## 1957 Wild Horse
## 1958 Robert Perroud
## 1959 Stephanie
## 1960 Tarara
## 1961 Tenute Soletta
## 1962 Tenute Soletta
## 1963 The Gardener
## 1964 Turnbull
## 1965 Vignerons de Bel Air
## 1966 Laroche
## 1967 Youngberg Hill Vineyards
## 1968 Torre Quarto
## 1969 Château de Bordes-Quancard
## 1970 Château de Panigon
## 1971 Château de Raousset
## 1972 Château Tour des Gendres
## 1973 Cottanera
## 1974 Cowhorn
## 1975 Erath
## 1976 Feudi di San Marzano
## 1977 Georges Vigouroux
## 1978 Leone de Castris
## 1979 Mastroberardino
## 1980 Pessagno
## 1981 Pessagno
## 1982 Planeta
## 1983 Potomac Point
## 1984 Principi di Spadafora
## 1985 Renteria
## 1986 Robert Hall
## 1987 Signé Vigneron
## 1988 Felix Solis
## 1989 Marionette
## 1990 Wildewood
## 1991 Wunsch & Mann
## 1992 Ricominciare
## 1993 Ricominciare
## 1994 Rutini
## 1995 Chatham
## 1996 McIlroy
## 1997 Wildewood
## 1998 Vino dei Fratelli
## 1999 Cave de Beblenheim
## 2000 Cave de Kientzheim-Kaysersberg
## 2001 Feudi del Pisciotto
## 2002 Mureda
## 2003 San Felipe
## 2004 Vieil Armand
## 2005 Wine by Joe
## 2006 Wine with Spirit
## 2007 Wines & Winemakers
## 2008 Wunsch & Mann
## 2009 Murphy-Goode
## 2010 Pierre Sparr
## 2011 Rieflé
## 2012 Sands Point
## 2013 Árido
## 2014 Arthur Metz
## 2015 Casa Rojo
## 2016 Cave de Cleebourg
## 2017 Jean-Marc Bernhard
## 2018 Fiuza
## 2019 Rock Wall
## 2020 Sanglier Cellars
## 2021 Santa Barbara Winery
## 2022 Schmidt
## 2023 Selva Capuzza
## 2024 Tenuta Luisa
## 2025 Willamette Valley Vineyards
## 2026 Santa Alicia
## 2027 Louis Jadot
## 2028 Mancura
## 2029 Mezzacorona
## 2030 Montonale
## 2031 Olivi
## 2032 Publix
## 2033 Quinta de Porrais
## 2034 Quinta do Casal Branco
## 2035 Rodney Strong
## 2036 Star Angel by Montes
## 2037 Cantina del Castello
## 2038 Castelfeder
## 2039 Château Magondeau
## 2040 Deltetto
## 2041 Drappier
## 2042 Drappier
## 2043 Falcone
## 2044 Fratelli Alessandria
## 2045 G D Vajra
## 2046 G D Vajra
## 2047 Gian Piero Marrone
## 2048 Grimaldi Bruna
## 2049 Kollwentz
## 2050 Zull
## 2051 Zull
## 2052 Norbert Bauer
## 2053 Sawyer
## 2054 Sullivan
## 2055 Tenuta Arnulfo
## 2056 Tenuta Rocca
## 2057 Battaglio
## 2058 Cascina Ballarin
## 2059 Cavalier Bartolomeo
## 2060 Cavallotto
## 2061 Damilano
## 2062 Giacomo Grimaldi
## 2063 Broman
## 2064 De Sousa & Fils
## 2065 Dutton-Goldfield
## 2066 Dutton-Goldfield
## 2067 Twisted Oak
## 2068 Waypoint
## 2069 Whitman Cellars
## 2070 Wild Oak by St. Francis
## 2071 Alma Rosa
## 2072 Vieux Château Gaubert
## 2073 Allegrini
## 2074 Balboa
## 2075 Benanti
## 2076 Benanti
## 2077 Château Pavillon Bel-Air
## 2078 Coeur d'Alene
## 2079 Concha y Toro
## 2080 Deutz
## 2081 J Vineyards & Winery
## 2082 James Family Cellars
## 2083 Long Meadow Ranch
## 2084 Marchiori & Barraud
## 2085 Morandé
## 2086 Newsome-Harlow
## 2087 Pali
## 2088 Peju
## 2089 Quivira
## 2090 Soutiran
## 2091 SuLei
## 2092 J. Portugal Ramos
## 2093 Tolloy
## 2094 Pighin
## 2095 Quinta de Serrade
## 2096 Racchus
## 2097 Ronco del Gelso
## 2098 Sobon Estate
## 2099 Rocca Bernarda
## 2100 Stephen's
## 2101 Kenneth Volk
## 2102 Lava Cap
## 2103 Masottina
## 2104 Comelli
## 2105 Cortes de Cima
## 2106 De Martino
## 2107 Eugenio Collavini
## 2108 Fenestra
## 2109 Folonari
## 2110 Brimstone
## 2111 Castello di Porcìa
## 2112 Château Calissanne
## 2113 Château du Galoupet
## 2114 Château Beauvillage
## 2115 Château Cap Léon Veyrin
## 2116 Gerovassiliou
## 2117 Firestone
## 2118 Gård
## 2119 Alexandria Nicole
## 2120 Andis
## 2121 Anthony Nappa
## 2122 Château au Pont de Guitres
## 2123 Château Bellegrave du Poujeau
## 2124 Château Haut-Goujon
## 2125 Château La Fleur Plaisance
## 2126 Justin
## 2127 Leese-Fitch
## 2128 Martin Ray
## 2129 Obelisco Estate
## 2130 Ponchione Maurizio
## 2131 Fournier Père et Fils
## 2132 Freeman
## 2133 Horeau-Beylot
## 2134 Bersano
## 2135 Carletto
## 2136 Codorníu
## 2137 2Plank
## 2138 Angove
## 2139 Bodegas Riojanas
## 2140 La Fiera
## 2141 Gorrebusto
## 2142 Trapiche
## 2143 Château Kalon Nodoz
## 2144 L. Tramier & Fils
## 2145 Oak Knoll
## 2146 Sonsierra
## 2147 South Stage
## 2148 Umani Ronchi
## 2149 Barba
## 2150 Quinta da Padrela
## 2151 La Catrina
## 2152 Venta Morales
## 2153 Grayson
## 2154 Bodegas Isidro Milagro
## 2155 Campos de Risca
## 2156 Casa Montes
## 2157 Kestrel
## 2158 L. Tramier & Fils
## 2159 Adega Mãe
## 2160 Valori
## 2161 Castorani
## 2162 Bota Box
## 2163 Lo Nuevo
## 2164 Wetzel Estate
## 2165 Keuka Spring
## 2166 Keuka Spring
## 2167 Kintonis
## 2168 Kokomo
## 2169 La Crema
## 2170 La Folia Winery
## 2171 Malat
## 2172 Marchesi di Barolo
## 2173 Matthews
## 2174 Monchiero
## 2175 Mt. Konocti Winery
## 2176 Muga
## 2177 Paraduxx
## 2178 Peter Paul Wines
## 2179 Pratsch
## 2180 Maria Casanovas
## 2181 E. Guigal
## 2182 Eduardo Garrido García
## 2183 Hart 2 Hart
## 2184 Kintonis
## 2185 Leonetti Cellar
## 2186 Lyrarakis
## 2187 Mirafiore
## 2188 Muddy Boot
## 2189 Osprey's Dominion
## 2190 Parducci
## 2191 Qupé
## 2192 Record Family Wines
## 2193 Sculpterra
## 2194 Syncline
## 2195 Casa Silva
## 2196 Red C
## 2197 Rock Wall
## 2198 Santa Barbara Winery
## 2199 Santi
## 2200 Sipp Mack
## 2201 Terlato
## 2202 Thomas Fogarty
## 2203 Tines
## 2204 14 Hands
## 2205 14 Hands
## 2206 Arboleda
## 2207 Lone Madrone
## 2208 Lucien Albrecht
## 2209 Merryvale
## 2210 Mesa Del Sol
## 2211 Murphy-Goode
## 2212 Myka
## 2213 Paul Blanck
## 2214 Pieropan
## 2215 Henri de Villamont
## 2216 Jason-Stephens
## 2217 Kim Crawford
## 2218 Kuentz-Bas
## 2219 Las Casas de Vacquería
## 2220 William Fèvre
## 2221 Zinke
## 2222 Hahn
## 2223 Columbia Crest
## 2224 Fulkerson
## 2225 Fornacina
## 2226 San Polino
## 2227 Tenuta di Sesta
## 2228 Louis Jadot
## 2229 Máté
## 2230 Merry Edwards
## 2231 Molino di Sant'Antimo
## 2232 Native 9
## 2233 Podere Brizio
## 2234 Poggio Antico
## 2235 Mocali
## 2236 Pessagno
## 2237 Pietranera
## 2238 Quattroventi
## 2239 Samsara
## 2240 Tenimenti Angelini
## 2241 Uccelliera
## 2242 Chronicle
## 2243 Coghlan
## 2244 Collosorbo
## 2245 Domaine Leflaive
## 2246 Domaine Leflaive
## 2247 Dutton Estate
## 2248 Verbena
## 2249 Castello Romitorio
## 2250 Il Poggiolo E. Cosimi
## 2251 Kazmer & Blaise
## 2252 Kirkland Signature
## 2253 Mantra
## 2254 Turn Four
## 2255 Viña Cobos
## 2256 X
## 2257 Ballast Stone Estate Wines
## 2258 Cantine Sant'Agata
## 2259 Château la Tour de By
## 2260 Château Larrivet Haut-Brion
## 2261 Colle dei Venti
## 2262 La Chapelle de Potensac
## 2263 Salis 1637
## 2264 La Scolca
## 2265 Château Malescasse
## 2266 Proidl
## 2267 Seventy Five Wine Co.
## 2268 St. Francis
## 2269 Stephen's
## 2270 Adobe Road
## 2271 Arrowood
## 2272 Cameron Hughes
## 2273 Vino z Czech
## 2274 Wines & Winemakers
## 2275 Banshee Wines
## 2276 Bindi Sergardi
## 2277 Corte alla Flora
## 2278 Alpamanta
## 2279 Buena Vista
## 2280 Domaine Robert Klingenfus
## 2281 Dominican Oaks
## 2282 Emerson
## 2283 Fattoria di Montecchio
## 2284 Girardet
## 2285 Lusco
## 2286 Damalisco
## 2287 Hill Wine Company
## 2288 Vignavecchia
## 2289 Vino z Czech
## 2290 Martin Ranch
## 2291 Cameron Hughes
## 2292 Casarena
## 2293 Ciringa
## 2294 La Calonica
## 2295 Lingenfelder
## 2296 Marchesi Antinori
## 2297 Mazzei
## 2298 Novy
## 2299 Edmonds Winery
## 2300 Fitz-Ritter
## 2301 Georg Mosbacher
## 2302 Highlands
## 2303 Vergelegen
## 2304 Arbor Crest
## 2305 Cameron Hughes
## 2306 Camigliano
## 2307 Château Dutruch Grand Poujeaux
## 2308 Ciacci Piccolomini d'Aragona
## 2309 Crane Brothers
## 2310 García Figuero
## 2311 Geh. Rat Dr. von Bassermann-Jordan
## 2312 Georg Mosbacher
## 2313 Picardy
## 2314 Tenimenti Angelini
## 2315 Tenuta La Fuga
## 2316 Tiezzi
## 2317 Trinchero
## 2318 Borgo Scopeto
## 2319 Canalicchio Franco Pacenti
## 2320 Château de la Roulerie
## 2321 Château la Croix de Roche
## 2322 Château Les Hauts de Palette
## 2323 Château Montlanderie
## 2324 Château Roc Montalon
## 2325 Château Saint-Pierre
## 2326 Gnarly Head
## 2327 14 Hands
## 2328 Alias
## 2329 Angel's Cup
## 2330 Arbéta
## 2331 Atwater
## 2332 Balduzzi
## 2333 Cave de Saumur
## 2334 Hawk Watch Winery
## 2335 La Purísima
## 2336 Two Vines
## 2337 Viña Casas Patronales
## 2338 Ministry of the Vinterior
## 2339 Montes
## 2340 One Leaf
## 2341 Sagelands
## 2342 Santa Luz
## 2343 Johnson Estate
## 2344 Koz
## 2345 Le Roi des Pierres
## 2346 McFadden
## 2347 McFadden
## 2348 Ardiri Winery and Vineyards
## 2349 Canoe Ridge
## 2350 Kendall-Jackson
## 2351 Villa Rinaldi
## 2352 Valentin Bianchi
## 2353 Jefferson Vineyards
## 2354 Michael Pozzan
## 2355 Ancient Oak Cellars
## 2356 Canihan
## 2357 Finca Albret
## 2358 Cline
## 2359 Collection 35
## 2360 Domaines Devillard
## 2361 Domaines Devillard
## 2362 Domaines Devillard
## 2363 Domenico Fraccaroli
## 2364 Foyt Family
## 2365 Georges Vigouroux
## 2366 Giefing
## 2367 Novelty Hill
## 2368 Scarborough
## 2369 Signé Vigneron
## 2370 Trabucchi d'Illasi
## 2371 Hogue
## 2372 Kuentz-Bas
## 2373 Lionel Osmin & Cie
## 2374 Manara
## 2375 Mario Schiopetto
## 2376 Mercer
## 2377 Montecariano
## 2378 Airfield Estates
## 2379 Antica Corte
## 2380 Fabbioli Cellars
## 2381 Biltmore Estate
## 2382 Casa de Vilacetinho
## 2383 Casa Santos Lima
## 2384 Caves Transmontanas
## 2385 Caves Velhas
## 2386 Deaver
## 2387 Dion
## 2388 Domaine Bousquet
## 2389 Domaine Campu Vecchiu
## 2390 Domaine Girard
## 2391 Domaine les Hautes Noëlles
## 2392 Quinta da Ribeirinha
## 2393 Quinta de Porrais
## 2394 Quinta do Vale Meão
## 2395 Quinta Nova de Nossa Senhora do Carmo
## 2396 Ransom
## 2397 Rui Roboredo Madeira
## 2398 Rui Roboredo Madeira
## 2399 Secret Spot Wines
## 2400 Simple Machine
## 2401 Ten Sisters
## 2402 Tenuta Rapitalà
## 2403 Uptick Vineyards
## 2404 Vinadeis
## 2405 Wild Thing
## 2406 Dashwood
## 2407 Gruet
## 2408 L. Tramier & Fils
## 2409 Souverain
## 2410 Tasca d'Almerita
## 2411 Tres Palacios
## 2412 Torrevento
## 2413 Cantine di Dolianova
## 2414 Château de Sours
## 2415 Corvo
## 2416 Derby
## 2417 Di Majo Norante
## 2418 Envolve
## 2419 Arboleda
## 2420 Arrowood
## 2421 Bonavita
## 2422 Château de Pizay
## 2423 Château Marac
## 2424 Chehalem
## 2425 Cono Sur
## 2426 Corvo
## 2427 Corvo
## 2428 Domaine du Vissoux
## 2429 Envolve
## 2430 Erath
## 2431 Erath
## 2432 Georges Duboeuf
## 2433 Georges Vigouroux
## 2434 Lomas del Valle
## 2435 Miali
## 2436 Newman's Own
## 2437 Pearmund
## 2438 Pratsch
## 2439 Di Filippo
## 2440 Domaine Carneros
## 2441 J. Lohr
## 2442 Jamieson Ranch
## 2443 Knudsen
## 2444 Buena Vista
## 2445 Cantina della Volta
## 2446 Cantina Fratelli Pardi
## 2447 Rancho Zabaco
## 2448 Romanelli
## 2449 Principe Pallavicini
## 2450 Red Newt Cellars
## 2451 Ruffino
## 2452 Sanglier Cellars
## 2453 Sextant
## 2454 Thurston Wolfe
## 2455 Two Mountain
## 2456 14 Hands
## 2457 Alder Springs
## 2458 Andis
## 2459 Borra
## 2460 Capanne Ricci
## 2461 Chalk Hill
## 2462 Château Giscours
## 2463 Château Laforge
## 2464 Château Larrivaux
## 2465 Château Picque Caillou
## 2466 Château Rollan de By
## 2467 Château Teyssier
## 2468 Château Tour de Pez
## 2469 Collosorbo
## 2470 Delgado Zuleta
## 2471 Eduardo Garrido García
## 2472 Hansen Cellars
## 2473 Heron Hill
## 2474 Line 39
## 2475 Lone Madrone
## 2476 McGrail
## 2477 Mesa Del Sol
## 2478 Clos Pegase
## 2479 Comartin
## 2480 Covenant
## 2481 Domaine Degher
## 2482 14 Hands
## 2483 Airfield Estates
## 2484 Airfield Estates
## 2485 Chateau Ste. Michelle
## 2486 Columbia Crest
## 2487 Davino
## 2488 Domaines Barons de Rothschild (Lafite)
## 2489 Finn Hill
## 2490 Hidden Jewel
## 2491 Jean-Baptiste Adam
## 2492 Jean-Marc Bernhard
## 2493 Joseph Drouhin
## 2494 Koyle
## 2495 Koyle
## 2496 Kuleto Estate
## 2497 La Cappuccina
## 2498 Lis Neris
## 2499 Lone Madrone
## 2500 McGregor
## 2501 Domaine Zinck
## 2502 Domeniile Panciu
## 2503 Waterbrook
## 2504 Altvs
## 2505 Apaltagua
## 2506 Archium
## 2507 Asuncion Ridge
## 2508 Paul Hobbs
## 2509 Artadi
## 2510 Aurelio Settimo
## 2511 Giacomo Fenocchio
## 2512 Giovanni Rosso
## 2513 Rizzi
## 2514 Trisaetum
## 2515 Le Strette
## 2516 Marimar Estate
## 2517 Roccheviberti
## 2518 Torbreck
## 2519 Cascina Ballarin
## 2520 Comm. G. B. Burlotto
## 2521 Cordero di Montezemolo
## 2522 Barale Fratelli
## 2523 Brezza
## 2524 Paolo Scavino
## 2525 Pio Cesare
## 2526 Rivetto
## 2527 Castelfeder
## 2528 Matanzas Creek
## 2529 Nastl
## 2530 Nigl
## 2531 Patland
## 2532 Proelio
## 2533 Quartz Reef
## 2534 Jekel
## 2535 Trus
## 2536 Gunter Triebaumer
## 2537 Jaffurs
## 2538 Tiefenbrunner
## 2539 Gérard Bertrand
## 2540 Gibbs
## 2541 Le Senate
## 2542 Michel & Stéphane Ogier
## 2543 Apriori
## 2544 Bernard Magrez
## 2545 Betwixt
## 2546 Billsboro
## 2547 Brancott
## 2548 The Dot
## 2549 Ramón Bilbao
## 2550 Salcis
## 2551 San Simeon
## 2552 Terrazas de Los Andes
## 2553 Avant
## 2554 Barton
## 2555 Brick & Mortar
## 2556 One
## 2557 Pace
## 2558 Jason-Stephens
## 2559 Las Positas
## 2560 In Re
## 2561 Waipara Hills
## 2562 Two Moons
## 2563 Valle dell'Acate
## 2564 Volatus
## 2565 Zocker
## 2566 Hannes Reeh
## 2567 Hightower
## 2568 Full Pull & Friends
## 2569 Gamache
## 2570 Genoa
## 2571 Pala
## 2572 14 Hands
## 2573 Amavi
## 2574 Basilisco
## 2575 Bontzu
## 2576 Burrell School Vineyards
## 2577 Stottle
## 2578 Stottle
## 2579 àMaurice
## 2580 àMaurice
## 2581 àMaurice
## 2582 Amavi
## 2583 Brian Carter Cellars
## 2584 Charthia
## 2585 Château de Chantegrive
## 2586 Château Mayne Vieil
## 2587 F X Pichler
## 2588 Frankland Estate
## 2589 Graf Hardegg
## 2590 A. Christmann
## 2591 àMaurice
## 2592 Barale Fratelli
## 2593 Barale Fratelli
## 2594 Gamache
## 2595 Hope Estate
## 2596 Hirsch
## 2597 Pelter
## 2598 Peter Nicolay
## 2599 Plantagenet
## 2600 Rheingraf
## 2601 Robert Oatley
## 2602 Iron Horse
## 2603 La Clarine Farm
## 2604 La Playa
## 2605 Maldonado
## 2606 Medlock Ames
## 2607 Morandé
## 2608 Ochagavia
## 2609 Barnard Griffin
## 2610 Barrister
## 2611 Bougetz
## 2612 West Cape Howe
## 2613 William Church
## 2614 Karl Kaspar
## 2615 Chateau Ste. Michelle
## 2616 Michel Torino
## 2617 Pillitteri
## 2618 Black Swan
## 2619 Funky Llama
## 2620 Borgo di Colloredo
## 2621 Alba
## 2622 Congress Springs
## 2623 Congress Springs
## 2624 Jenica Peak
## 2625 Norman
## 2626 Pride Mountain
## 2627 Mazzocco
## 2628 Congress Springs
## 2629 Emerson
## 2630 Four Vines
## 2631 Four Vines
## 2632 Hesketh
## 2633 Avignonesi
## 2634 Borges
## 2635 Caccia al Piano 1868
## 2636 Château Haut-Peyrous
## 2637 Château Lafleur-Gazin
## 2638 Château Lieujean
## 2639 Château Liversan
## 2640 J. Rickards
## 2641 Jansz
## 2642 Antiyal
## 2643 Jacob's Creek
## 2644 Le Buche
## 2645 Leonesse Cellars
## 2646 Liberty School
## 2647 Marchesi Antinori
## 2648 Millbrook
## 2649 Nefarious
## 2650 O•S Winery
## 2651 Owen Roe
## 2652 Quinta de Foz de Arouce
## 2653 Quinta do Cavalinho
## 2654 Rozes
## 2655 Casa di Terra
## 2656 Château d'Angludet
## 2657 Château Laforge
## 2658 Château Soutard
## 2659 Château Tour de Lagarde
## 2660 Conte Ferdinando Guicciardini
## 2661 Donna Olimpia 1898
## 2662 Zymè
## 2663 Howell Mountain Vineyards
## 2664 J. Bookwalter
## 2665 Januik
## 2666 Umathum
## 2667 Venturini Massimino
## 2668 Chandon
## 2669 Frazier
## 2670 Domaine Cabirau
## 2671 Frias
## 2672 Georges Duboeuf
## 2673 Orentano
## 2674 Riglos
## 2675 Les Villages de Terroir Catalan
## 2676 J. Bookwalter
## 2677 Keller Estate
## 2678 L'Ecole No. 41
## 2679 L'Ecole No. 41
## 2680 Lionel Osmin & Cie
## 2681 Melville
## 2682 Bravium
## 2683 Antonin Rodet
## 2684 Bodegas Muriel
## 2685 Zenato
## 2686 Heidi Schröck
## 2687 Chateau Ste. Michelle
## 2688 Damien et Romain Bouchard
## 2689 Eponymous
## 2690 Gloria Ferrer
## 2691 Hall
## 2692 Geretto
## 2693 L.A. Cetto
## 2694 La Playa
## 2695 Undurraga
## 2696 Lane Tanner
## 2697 Lolonis
## 2698 River Road
## 2699 Santa Ines
## 2700 Sebastiani
## 2701 Signorello
## 2702 Silver
## 2703 Bortoluzzi
## 2704 Château La Joya
## 2705 Two Brothers
## 2706 Viña Santa Monica
## 2707 Wolff
## 2708 Errazuriz
## 2709 Girolamo Dorigo
## 2710 Iron Horse
## 2711 Opolo
## 2712 Savannah-Chanelle
## 2713 Merk
## 2714 Morandé
## 2715 J Vineyards & Winery
## 2716 Pradio
## 2717 Masi
## 2718 Masottina
## 2719 Montes
## 2720 Concha y Toro
## 2721 Dopff & Irion
## 2722 Union de Vignerons de l'Île de Beauté
## 2723 Van Ruiten
## 2724 Vignobles Bonhur
## 2725 Viña Otano
## 2726 MandraRossa
## 2727 Mastroberardino
## 2728 Joseph Filippi
## 2729 Le Petit Cochonnet
## 2730 Leon Beyer
## 2731 Terredora
## 2732 Tortoise Creek
## 2733 Undurraga
## 2734 Vermeil
## 2735 Viña Maipo
## 2736 Woodbridge by Robert Mondavi
## 2737 Viñedos y Bodegas Pablo
## 2738 Concha y Toro
## 2739 Echeverria
## 2740 Famille Hauller
## 2741 Black Stallion
## 2742 Bodega Volcanes de Chile
## 2743 Bota Box
## 2744 Campellares
## 2745 Château Côte Montpezat
## 2746 Château Léon
## 2747 Agricola Bellaria
## 2748 Cramele Recas
## 2749 Cramele Recas
## 2750 Cramele Recas
## 2751 Nica
## 2752 Producta Vignobles
## 2753 Rio Madre
## 2754 Rios de Chile
## 2755 Le Petit Cochonnet
## 2756 Le Petit Cochonnet
## 2757 Loma Larga
## 2758 Los Portales
## 2759 Maison Nicolas
## 2760 Montebuena
## 2761 Montes
## 2762 Rayun
## 2763 Rios de Chile
## 2764 River Road
## 2765 Greenwood Ridge
## 2766 Housley's Century Oak
## 2767 Twisted
## 2768 Valtravieso
## 2769 Château Lamothe-Vincent
## 2770 Château Laubès
## 2771 Four Sisters Ranch
## 2772 Frei Brothers
## 2773 G7
## 2774 Albamar
## 2775 Indomita
## 2776 Loft
## 2777 Loft
## 2778 Santa Alicia
## 2779 Jekel
## 2780 Kunza
## 2781 Herdade dos Machados
## 2782 Pazzo
## 2783 Quinta de Gomariz
## 2784 Sean Minor
## 2785 Kirkland Signature
## 2786 Lost Angel
## 2787 Matchbook
## 2788 Monte Seis Reis
## 2789 Aveleda
## 2790 Barton & Guestier
## 2791 Black Box
## 2792 Black Box
## 2793 Caves Aliança
## 2794 Twisted Sisters
## 2795 Twisted Sisters
## 2796 Valentin Bianchi
## 2797 Vignobles Garrigae
## 2798 Walt
## 2799 Plungerhead
## 2800 Quinta do Portal
## 2801 Rare
## 2802 Stephen Ross
## 2803 L. Tramier & Fils
## 2804 LoveThisLife
## 2805 Agricola Pugliano
## 2806 Atwater
## 2807 Bodegas Ribón
## 2808 Boudreaux Cellars
## 2809 Kirkland Signature
## 2810 Le Casalte
## 2811 Maryhill
## 2812 :Nota Bene
## 2813 Oakville Winery
## 2814 Kennedy Shah
## 2815 Kennedy Shah
## 2816 Le Fonti a San Giorgio
## 2817 Andis
## 2818 Astorre Noti
## 2819 Attis
## 2820 Barlow
## 2821 Bindi Sergardi
## 2822 Bodegas Riolanc
## 2823 Bonacchi
## 2824 Castello di Querceto
## 2825 Cave du Marmandais
## 2826 Charles & Charles
## 2827 Château Anniche
## 2828 Château Bel Air
## 2829 Château de l'Aubrade
## 2830 Château de Parenchère
## 2831 Château Guichot
## 2832 Château Lary
## 2833 Château Maison Noble
## 2834 Coli
## 2835 Bench
## 2836 Campo di Sasso
## 2837 Château de la Terrière
## 2838 Cottesbrook
## 2839 Disruption
## 2840 Fattoria La Striscia
## 2841 Fattoria Sardi
## 2842 Georges Duboeuf
## 2843 Georges Duboeuf
## 2844 Georges Duboeuf
## 2845 Georges Duboeuf
## 2846 Great American Wine Company
## 2847 Guicciardini Strozzi
## 2848 Happy Camper
## 2849 Hawkins Cellars
## 2850 Il Palagio
## 2851 Marietta Cellars
## 2852 McGregor
## 2853 Pessagno
## 2854 Val delle Rose
## 2855 Valle Hermoso
## 2856 Baccinetti
## 2857 Rideau
## 2858 Ryan Patrick
## 2859 San Pedro
## 2860 Sangervasio
## 2861 Scaranto
## 2862 Ste. Chapelle
## 2863 Tolaini
## 2864 Vanderbilt
## 2865 Protos
## 2866 Purple Hands
## 2867 Quinta do Casal Branco
## 2868 RN Estate
## 2869 RN Estate
## 2870 Écluse
## 2871 Elena Walch
## 2872 Fournier Père et Fils
## 2873 Gini
## 2874 W.H. Smith
## 2875 Bjornstad
## 2876 Chase
## 2877 Château la Varière
## 2878 Contadi Castaldi
## 2879 Ken Wright
## 2880 Market Vineyards
## 2881 MCV
## 2882 Terre Rouge
## 2883 V. Sattui
## 2884 Westerly
## 2885 Whitcraft
## 2886 Nicora
## 2887 Nicora
## 2888 Black Kite
## 2889 Bunnell
## 2890 Château la Varière
## 2891 Château Lagrézette
## 2892 Château Saint-Didier-Parnac
## 2893 Contadi Castaldi
## 2894 Domaine de Cause
## 2895 Losada
## 2896 Manuel Olivier
## 2897 Windy Bay
## 2898 Vignerons de Buxy
## 2899 Villa Girardi
## 2900 Wines & Winemakers
## 2901 Clos La Chance
## 2902 Pagos del Rey
## 2903 Quinta de Covela
## 2904 Ricci Curbastro
## 2905 Ruhlmann
## 2906 Dopff & Irion
## 2907 Foris
## 2908 Vega Sindoa
## 2909 Il Mosnel
## 2910 Jaffelin
## 2911 Jean-Luc and Paul Aegerter
## 2912 Lealtanza
## 2913 Maximin Grünhäuser
## 2914 Aldonia
## 2915 Altemasi
## 2916 Ancient Oak Cellars
## 2917 Cellers Baronia del Montsant
## 2918 Benziger
## 2919 Herdade do Rocim
## 2920 Le Bertarole
## 2921 Poças
## 2922 Quintas de Melgaço
## 2923 Augusta Winery
## 2924 Bella
## 2925 Carmen
## 2926 Pulenta Estate
## 2927 Simonnet-Febvre
## 2928 Williamson Wines
## 2929 Mendocino Farms
## 2930 Messina Hof
## 2931 Morandé
## 2932 La Chiripada
## 2933 Howling Moon
## 2934 La Storia
## 2935 Luigi Bosca
## 2936 O. Fournier
## 2937 Pahrump Valley Winery
## 2938 Sobon Estate
## 2939 Terre Rouge
## 2940 Three Fox
## 2941 Castello di Borghese
## 2942 Chateau Ste. Michelle
## 2943 Doña Paula
## 2944 Easton
## 2945 Gilbert Cellars
## 2946 Glenora
## 2947 Glenora
## 2948 Finca Sophenia
## 2949 Gilbert Cellars
## 2950 Woolundry Rd
## 2951 Anam Cara
## 2952 Archery Summit
## 2953 Cartlidge & Browne
## 2954 Ceravolo
## 2955 Doña Paula
## 2956 Kenwood
## 2957 Leeuwin Estate
## 2958 Parkers Estate
## 2959 Pearson Vineyards
## 2960 Simonnet-Febvre
## 2961 Campos Góticos
## 2962 Frostwatch
## 2963 Vinos Sanz
## 2964 Abbazia Santa Anastasia
## 2965 Pascual Toso
## 2966 Red Mud
## 2967 Abbazia Santa Anastasia
## 2968 Archery Summit
## 2969 Castoro Cellars
## 2970 French Hill
## 2971 Vitis Terrarum
## 2972 Vasse River
## 2973 Kaleidos
## 2974 Lovingston
## 2975 Sonoma Crest
## 2976 Château Haut Cabut
## 2977 Château le Pey
## 2978 Château Montlandrie
## 2979 Clos Puy Arnaud
## 2980 Closerie du Bailli
## 2981 Domaine François Schmitt
## 2982 Penley Estate
## 2983 Penley Estate
## 2984 Miro
## 2985 Murrieta's Well
## 2986 Obsidian Ridge
## 2987 Opolo
## 2988 Paltrinieri
## 2989 Reichsgraf von Kesselstatt
## 2990 Rex Hill
## 2991 Robert Biale
## 2992 Spell
## 2993 Gruber Röschitz
## 2994 Henry's Drive Vignerons
## 2995 Jayson
## 2996 Joseph Carr
## 2997 La Prevostura
## 2998 Lallier
## 2999 Le Marchesine
## 3000 Domaine Zinck
## 3001 Dr. Heidemanns-Bergweiler
## 3002 Dubl
## 3003 Ferrer Bobet
## 3004 Granbazán
## 3005 Vallana
## 3006 Krupp Brothers
## 3007 Pamplin
## 3008 Pepper Bridge
## 3009 Forgeron
## 3010 Sterling
## 3011 Domaine Cazes
## 3012 Capannelle
## 3013 Pictor
## 3014 Amavi
## 3015 André Blanck et ses Fils
## 3016 Castello di Querceto
## 3017 Charles Ellner
## 3018 Scheiblhofer
## 3019 Spring Valley Vineyard
## 3020 Jean-Marc Bernhard
## 3021 MacPhail
## 3022 Matarromera
## 3023 Nefarious
## 3024 DeLille
## 3025 Doyenne
## 3026 Dürnberg
## 3027 Forgeron
## 3028 Alidis
## 3029 Turley
## 3030 Turley
## 3031 Whitehall Lane
## 3032 Coteaux da Murta
## 3033 Fillaboa
## 3034 Franciscan
## 3035 Jasci & Marchesani
## 3036 Kestrel
## 3037 Kestrel
## 3038 La Valentina
## 3039 Lavradores de Feitoria
## 3040 Manzwine
## 3041 Mas Pere
## 3042 Milbrandt
## 3043 Monte Volpe
## 3044 Nine Hats
## 3045 Pascal Aufranc
## 3046 Ricominciare
## 3047 Robert Perroud
## 3048 Rôtie Cellars
## 3049 San Simeon
## 3050 Sanguinhal
## 3051 Nino Negri
## 3052 Pflüger
## 3053 Picket Fence
## 3054 South Stage
## 3055 Taken Wine Co.
## 3056 Terra d'Oro
## 3057 Trapiche
## 3058 Viña Cobos
## 3059 Yohan Lardy
## 3060 Analemma
## 3061 Argyle
## 3062 Flora Springs
## 3063 Hirsch
## 3064 Joseph Drouhin
## 3065 DeLille
## 3066 Benanti
## 3067 Maison Bleue
## 3068 Pax
## 3069 Chanson Père et Fils
## 3070 Chanson Père et Fils
## 3071 Domaine de la Terre Rouge
## 3072 Domaine Leflaive
## 3073 Joseph Drouhin
## 3074 Tyler
## 3075 Trefethen
## 3076 Trefethen
## 3077 Alexandria Nicole
## 3078 Lineage
## 3079 Buty
## 3080 McCrea
## 3081 Torbreck
## 3082 Beringer
## 3083 Corte Sant' Alda
## 3084 Corteforte
## 3085 Fabiano
## 3086 Gamba
## 3087 Hogue
## 3088 Bell
## 3089 Brigaldara
## 3090 Cadence
## 3091 Latium di Morini
## 3092 Luigi Righetti
## 3093 Marquee
## 3094 Miguel Torres
## 3095 Mittnacht Frères
## 3096 Monte del Frá
## 3097 Montresor
## 3098 Musella
## 3099 Paso a Paso
## 3100 Penfolds
## 3101 Qupé
## 3102 Ridge
## 3103 Santa Ema
## 3104 Cono Sur
## 3105 Cono Sur
## 3106 Corte San Benedetto
## 3107 Domìni Veneti
## 3108 Dopff & Irion
## 3109 Falezza
## 3110 Rieflé
## 3111 Casa Silva
## 3112 Château Lamothe-Vincent
## 3113 Château Pey la Tour
## 3114 Clayhouse
## 3115 Dilecta
## 3116 Grayson
## 3117 Vinemark
## 3118 Wetzel Estate
## 3119 Magnolia Court
## 3120 Picket Fence
## 3121 Recuerdo
## 3122 Adanti
## 3123 Château Haut Nadeau
## 3124 un4seen
## 3125 Vinemark
## 3126 Wetzel Estate
## 3127 Del Rio
## 3128 Grayson
## 3129 Guenoc
## 3130 Vinemark
## 3131 Woodbridge by Robert Mondavi
## 3132 Barton & Guestier
## 3133 Bodegas Tobía
## 3134 Univitis
## 3135 Château Gréteau Médeville
## 3136 Wildberry Estate
## 3137 Salentein
## 3138 Sattlerhof
## 3139 Steininger
## 3140 Summerer
## 3141 Robert Stemmler
## 3142 Tamarack Cellars
## 3143 Murrieta's Well
## 3144 Coeur d'Alene
## 3145 Bouchard Aîné & Fils
## 3146 Whitman Cellars
## 3147 Zull
## 3148 Helix by Reininger
## 3149 Tomero
## 3150 Trivento
## 3151 Breggo
## 3152 Bründlmayer
## 3153 Schug
## 3154 Tagaris
## 3155 Torres
## 3156 Beaulieu Vineyard
## 3157 Stoneburn
## 3158 Trivento
## 3159 Verum
## 3160 Viña Alicia
## 3161 Bott Frères
## 3162 Ca' dei Zago
## 3163 Carpenè Malvolti
## 3164 Dopff & Irion
## 3165 Galaxy
## 3166 Gardel
## 3167 Giavi
## 3168 Anna Spinato
## 3169 Bellenda
## 3170 Bianca Vigna
## 3171 Canella
## 3172 Caposaldo
## 3173 Carpenè Malvolti
## 3174 Coelho
## 3175 Coho
## 3176 Cupcake
## 3177 Domaine Ostertag
## 3178 Domaine Rieflé
## 3179 Donati
## 3180 Andeluna
## 3181 Georges Duboeuf
## 3182 Georges Duboeuf
## 3183 Georges Duboeuf
## 3184 Georges Duboeuf
## 3185 Hess Collection
## 3186 Il Borro
## 3187 Iron Horse
## 3188 Lackner Tinnacher
## 3189 Lauren Ashton Cellars
## 3190 Now Presenting...
## 3191 On Point
## 3192 Pardon et Fils
## 3193 Paumanok
## 3194 Jean-Luc Colombo
## 3195 Acacia
## 3196 Alain Jaume et Fils
## 3197 San Carlo
## 3198 Sean Minor
## 3199 Steininger
## 3200 Stift Klosterneuburg
## 3201 Terroirs et Talents
## 3202 Tua Rita
## 3203 Unger
## 3204 Vino La Monarcha
## 3205 Vino La Monarcha
## 3206 Whiplash
## 3207 Bell
## 3208 Cerbaia
## 3209 Gibbs
## 3210 Gloria Ferrer
## 3211 Bodegas Valdemar
## 3212 Bula
## 3213 Bunchgrass
## 3214 Can Blau
## 3215 Cantina Produttori San Michele Appiano
## 3216 Carol Shelton
## 3217 Casa Rojo
## 3218 Castello di Montegiove
## 3219 Château de la Croix
## 3220 Château d'Esclans
## 3221 Château Dupeyrat Plouget
## 3222 Chelsea Goldschmidt
## 3223 Peju
## 3224 Pope Valley Winery
## 3225 Real Sitio de Ventosilla
## 3226 Stryker Sonoma
## 3227 Talamonti
## 3228 The Eyrie Vineyards
## 3229 The Farm Winery
## 3230 Tre Monti
## 3231 Trueheart
## 3232 Val do Sosego
## 3233 J. Christopher
## 3234 J. Lohr
## 3235 Johanneshof Reinisch
## 3236 Lynmar
## 3237 Matetic
## 3238 Oliver Conti
## 3239 Parcel 41
## 3240 Drei Donà Tenuta La Palazza
## 3241 401K
## 3242 Barnard Griffin
## 3243 Cana's Feast
## 3244 Cantine Leonardo Da Vinci
## 3245 Hill Family Estate
## 3246 James Wyatt
## 3247 Liebart-Régnier
## 3248 Vinum
## 3249 Viticoltori Senesi Aretini
## 3250 Wise Villa
## 3251 MacPhail
## 3252 Maison Bouey
## 3253 Maison Bouey
## 3254 Mannucci Droandi
## 3255 Rosenblum
## 3256 Travignoli
## 3257 Hanaiali'i
## 3258 Lagana
## 3259 Lagana
## 3260 Loft
## 3261 Matsu
## 3262 Nadler
## 3263 :Nota Bene
## 3264 Oyster Bay
## 3265 Piot-Sévillano
## 3266 Quai de la Lune
## 3267 Bodegas Berceo
## 3268 Cennatoio
## 3269 Château Buisson-Redon
## 3270 St. Supéry
## 3271 Clos de Gamot
## 3272 Companhia das Quintas
## 3273 Cusumano
## 3274 DFJ Vinhos
## 3275 Tasca d'Almerita
## 3276 Tenuta delle Terre Nere
## 3277 Tolosa
## 3278 Turkey Flat
## 3279 J. Portugal Ramos
## 3280 J Vineyards & Winery
## 3281 J. Wilkes
## 3282 La Posta
## 3283 Leone de Castris
## 3284 Mastroberardino
## 3285 Melipal
## 3286 Morrison Lane
## 3287 Morrison Lane
## 3288 Fazio
## 3289 Gemtree
## 3290 Adamant Cellars
## 3291 Alberto Longo
## 3292 X
## 3293 Godwin
## 3294 Hagafen
## 3295 Herdade da Malhadinha Nova
## 3296 Bucklin
## 3297 Corley
## 3298 DFJ Vinhos
## 3299 DFJ Vinhos
## 3300 El Nido
## 3301 Backsberg
## 3302 Bonny Doon
## 3303 Codorníu
## 3304 Conte Collalto
## 3305 Schug
## 3306 St. Clement
## 3307 Arbios
## 3308 Adami
## 3309 Alentex
## 3310 Bortolomiol
## 3311 Bortolotti
## 3312 Castle
## 3313 Codorníu
## 3314 Ortman Family
## 3315 Recanati
## 3316 Tenuta di Vignole
## 3317 Two Vintners
## 3318 X
## 3319 Albet I Noya
## 3320 Avignonesi
## 3321 Binyamina
## 3322 Valserrano
## 3323 Mt. Beautiful
## 3324 Poggio Nardone
## 3325 Château Ramafort
## 3326 Mana
## 3327 Drew
## 3328 Giuliano Tiberi
## 3329 Greater Purpose
## 3330 Reina de Castilla
## 3331 Rocca delle Macìe
## 3332 Joseph Drouhin
## 3333 Vino Vargas
## 3334 Demessey
## 3335 Four Degrees of Riesling
## 3336 Joseph Drouhin
## 3337 Knapp
## 3338 Armosa
## 3339 Fulkerson
## 3340 Stomping Ground
## 3341 L. Tramier & Fils
## 3342 Lo Nuevo
## 3343 Pierre André
## 3344 Suvla
## 3345 Swedish Hill
## 3346 Chanson Père et Fils
## 3347 Coto de Hayas
## 3348 Demessey
## 3349 Jean-Marie Challand
## 3350 Domaine Sophie Cinier
## 3351 Fazeli Cellars
## 3352 Four Degrees of Riesling
## 3353 Pierre André
## 3354 Jean-Marie Challand
## 3355 Joseph Burrier
## 3356 King's Garden Vineyards
## 3357 Laird
## 3358 McGregor
## 3359 Bodegas Valdemar
## 3360 Protos
## 3361 Schloss Vollrads
## 3362 Sojourn
## 3363 Stag's Leap Wine Cellars
## 3364 Thorn Clarke
## 3365 Aratás
## 3366 Santos & Seixo
## 3367 Spicy Vines
## 3368 Terra d'Oro
## 3369 The Eyrie Vineyards
## 3370 Tongue Dancer
## 3371 Uvaggio
## 3372 WillaKenzie Estate
## 3373 WillaKenzie Estate
## 3374 William Harrison
## 3375 Yohan Lardy
## 3376 Avennia
## 3377 Bella
## 3378 Brian Carter Cellars
## 3379 Bulas
## 3380 Cadaretta
## 3381 Raptor Ridge
## 3382 Dr. Heidemanns-Bergweiler
## 3383 Dr. Loosen
## 3384 Meyer Family Cellars
## 3385 Ovum
## 3386 Perelada
## 3387 Proper
## 3388 Quinta da Zaralhôa
## 3389 Ramos-Pinto
## 3390 Wyncroft
## 3391 Vicente Gandia
## 3392 Casa Montes
## 3393 Albet I Noya
## 3394 Gustafson Family
## 3395 JAQK Cellars
## 3396 Gracianna
## 3397 Angulo Innocenti
## 3398 Cable Car
## 3399 Michael-Scott
## 3400 Luis Segundo Correas
## 3401 Parras Vinhos
## 3402 Quinta do Casal Branco
## 3403 Quinta do Casal Monteiro
## 3404 Schmidt
## 3405 Three Fires
## 3406 Verterra
## 3407 Wine with Spirit
## 3408 Wine with Spirit
## 3409 Finca Salazar
## 3410 Buena Vista
## 3411 Pazo de Barrantes
## 3412 Cooperativa Reguengos de Monsaraz
## 3413 Armanino Family Cellars
## 3414 Parras Vinhos
## 3415 Lechthaler
## 3416 Coast
## 3417 Pagos del Rey
## 3418 Pat Paulsen Vineyards
## 3419 Mossback
## 3420 Peachy Canyon
## 3421 Quinta de Porrais
## 3422 Quintas de Melgaço
## 3423 Tricky Rabbit
## 3424 Bradford Mountain
## 3425 Consilience
## 3426 Domaine de la Pepière
## 3427 Falua
## 3428 Quinta da Rede
## 3429 Reustle
## 3430 Silverado
## 3431 Stag's Leap Wine Cellars
## 3432 Yohan Lardy
## 3433 Analemma
## 3434 Argyle
## 3435 Chopo
## 3436 Meyer Family Cellars
## 3437 Milbrandt
## 3438 MooBuzz
## 3439 Opolo
## 3440 Palma Real
## 3441 Parras Wines
## 3442 Proulx
## 3443 Quinta do Vale Meão
## 3444 Quinta Dona Matilde
## 3445 Quinta dos Poços
## 3446 Robert Mondavi
## 3447 Roco
## 3448 Tenuta Duecorti
## 3449 Podere ai Valloni
## 3450 Jamieson Ranch
## 3451 Leaping Lizard
## 3452 Wirra Wirra
## 3453 Zolo
## 3454 Greystone Cellars
## 3455 Hill-Smith Estate
## 3456 Balletto
## 3457 Cadus
## 3458 Cadus
## 3459 Casto Oaks
## 3460 Riposte
## 3461 Spann Vineyards
## 3462 Siduri
## 3463 Thema
## 3464 Moletto
## 3465 Domaine de Gournier
## 3466 Fratelli Berlucchi
## 3467 Hahn Estates
## 3468 Herdade da Malhadinha Nova
## 3469 Hunt Cellars
## 3470 Kings Mountain
## 3471 Vinchio-Vaglio Serra
## 3472 Marqués de Vargas
## 3473 Marrenon
## 3474 Real Companhia Velha
## 3475 Recanati
## 3476 Bishop Creek Cellars
## 3477 Château Couhins-Lurton
## 3478 Château Fonréaud
## 3479 Château Lieujean
## 3480 Château Lynch-Moussas
## 3481 Château Vray Croix de Gay
## 3482 Churchill's
## 3483 Jean Albrecht
## 3484 La Cave des Vignerons de Pfaffenheim
## 3485 Lakewood
## 3486 Left Coast Cellars
## 3487 Lucien Albrecht
## 3488 Ravines
## 3489 Monte del Frá
## 3490 Naggiar
## 3491 Novaia
## 3492 Parkers Estate
## 3493 Santa Ema
## 3494 Sparkling Pointe
## 3495 Vaona
## 3496 Dr. Loosen
## 3497 Echeverria
## 3498 Emile Beyer
## 3499 Giuseppe Lonardi
## 3500 Heron Hill
## 3501 Korbel
## 3502 Lété-Vautrain
## 3503 Lone Birch
## 3504 Montevina
## 3505 Nicora
## 3506 Ocelli
## 3507 One Iron
## 3508 Owl Ridge
## 3509 Eola Hills
## 3510 Fattoria La Vialla
## 3511 Ferrocinto
## 3512 Gersing
## 3513 Guicciardini Strozzi
## 3514 Hunnicutt
## 3515 Acacia
## 3516 Angel Vine
## 3517 Baron-Fuenté
## 3518 Beaulieu Vineyard
## 3519 Bodegas Carballal
## 3520 Brimoncourt
## 3521 Casa Nuestra
## 3522 Cass
## 3523 Cass
## 3524 Celli
## 3525 Collet
## 3526 Collet
## 3527 D'Aione
## 3528 D'Angelo
## 3529 Dark Horse
## 3530 Schlink Haus
## 3531 Poderi Luigi Einaudi
## 3532 Schloss Gobelsburg
## 3533 Vasse Felix
## 3534 Woodinville Wine Cellars
## 3535 D'Arenberg
## 3536 Freeman
## 3537 Glatzer
## 3538 Château Lamothe-Cissac
## 3539 Domäne Wachau
## 3540 Giuseppe Rinaldi
## 3541 Nada Giuseppe
## 3542 Negro Angelo e Figli
## 3543 Januik
## 3544 L'Ecole No. 41
## 3545 Brezza
## 3546 Bella
## 3547 Benovia
## 3548 Frankland Estate
## 3549 Guido Porro
## 3550 Joseph Swan Vineyards
## 3551 Manfred Tement
## 3552 Convergence Zone
## 3553 Dr. Heidemanns-Bergweiler
## 3554 Freeman
## 3555 Thorn Clarke
## 3556 Schloss Gobelsburg
## 3557 Walla Walla Vintners
## 3558 Kollwentz
## 3559 L'Ecole No. 41
## 3560 Château de Sancerre
## 3561 Chateau Dereszla
## 3562 Chehalem
## 3563 Clos La Chance
## 3564 Colosi
## 3565 Curto
## 3566 Delaforce
## 3567 Domaine de l'Hermitage
## 3568 Domaine de Rome
## 3569 Santos & Seixo
## 3570 St. Christopher
## 3571 Tasca d'Almerita
## 3572 Viña Cobos
## 3573 Walnut City WineWorks
## 3574 Lamadrid
## 3575 Magnum Vinhos
## 3576 Domaine Philippe Gilbert
## 3577 Domaines Vinsmoselle
## 3578 Falkner
## 3579 Fullerton
## 3580 Humberto Canale
## 3581 Amalie Robert
## 3582 Au Jus
## 3583 Authentique
## 3584 Bastgen
## 3585 Blue Valley
## 3586 Caves Transmontanas
## 3587 Ceuso
## 3588 Château de Parnay
## 3589 Dalton
## 3590 Vignavecchia
## 3591 Vignobles Jeanjean
## 3592 Château le Pape
## 3593 Château Tour Rozier
## 3594 Coquerel Family Wine Estates
## 3595 De Bortoli
## 3596 De Bortoli
## 3597 Domaine Ste. Michelle
## 3598 Domaines Barons de Rothschild (Lafite)
## 3599 Henry's Drive Vignerons
## 3600 James Family Cellars
## 3601 Jamesport
## 3602 Kokomo
## 3603 La Croix de Renaud
## 3604 Le Mas de Bertrand
## 3605 Mercer
## 3606 Mulini di Segalari
## 3607 Real Companhia Velha
## 3608 Riverbench
## 3609 Rock Hollow
## 3610 Thurston Wolfe
## 3611 Viu Manent
## 3612 Zina Hyde Cunningham
## 3613 Quinta do Cavalinho
## 3614 San Pedro
## 3615 Sembro
## 3616 Sieur d'Arques
## 3617 Terra d'Alter
## 3618 Treleaven
## 3619 Clayhouse
## 3620 Viña Chocalan
## 3621 François Lurton
## 3622 Casca Wines
## 3623 Anatomy
## 3624 Waterstone
## 3625 Bianchi
## 3626 Willowbrook
## 3627 Hesperian
## 3628 Montes
## 3629 Stickybeak
## 3630 3Fools
## 3631 Amayna
## 3632 Arauco
## 3633 Castoro Cellars
## 3634 Chessman
## 3635 YN
## 3636 Cousiño-Macul
## 3637 Cerro Prieto
## 3638 Oveja Negra
## 3639 Melrose
## 3640 Arauco
## 3641 Viniverde
## 3642 Cuevas del Sur
## 3643 Château Pontet-Canet
## 3644 Château Lafite Rothschild
## 3645 Château Pape Clément
## 3646 Lamborghini
## 3647 Emmerich Knoll
## 3648 Rudi Pichler
## 3649 Ojai
## 3650 Walla Walla Vintners
## 3651 Chalk Hill
## 3652 Ojai
## 3653 F X Pichler
## 3654 Forefathers
## 3655 Andrew Will
## 3656 Bridlewood
## 3657 F X Pichler
## 3658 Felipe Rutini
## 3659 Prix
## 3660 Soos Creek
## 3661 Parry Cellars
## 3662 Pepper Bridge
## 3663 Smith-Madrone
## 3664 Rancho Sisquoc
## 3665 Righteous
## 3666 Crossbarn by Paul Hobbs
## 3667 Espiritu de Chile
## 3668 Frenzy
## 3669 Happy Canyon Vineyard
## 3670 181
## 3671 Phantom Rivers
## 3672 Provence Rosé
## 3673 Redtree
## 3674 Santa Ema
## 3675 Shiloh Road
## 3676 Vinchio-Vaglio Serra
## 3677 Yvon Mau
## 3678 Longevity
## 3679 Lucky Star
## 3680 Jacob's Creek
## 3681 La Vierge
## 3682 Luis Felipe Edwards
## 3683 MAN Vintners
## 3684 Nederburg
## 3685 Robertson Winery
## 3686 Seresin
## 3687 Chasseur
## 3688 Ruinart
## 3689 Small Vines
## 3690 Kopke
## 3691 La Chablisienne
## 3692 Albert Morot
## 3693 Alto Moncayo
## 3694 Bailly-Lapierre
## 3695 Ca' dei Zago
## 3696 Ca' del Bosco
## 3697 Morgan
## 3698 Pittacum
## 3699 Tendil & Lombardi
## 3700 Veuve Doussot
## 3701 Villa Erbice
## 3702 Clos de Chacras
## 3703 Dr. H. Thanisch (Erben Thanisch)
## 3704 El Enemigo
## 3705 Fog Crest
## 3706 Fratelli Berlucchi
## 3707 Fritz Haag
## 3708 Evening Land
## 3709 Evening Land
## 3710 Gancedo
## 3711 Ramos-Pinto
## 3712 Septima
## 3713 Curtis
## 3714 Feudi di San Gregorio
## 3715 Feudi di San Gregorio
## 3716 Grafen Neipperg
## 3717 Huber
## 3718 Cantine di Marzo
## 3719 François Lurton
## 3720 Zaca Mesa
## 3721 Pazo Serantellos
## 3722 Pondera
## 3723 Royal Oporto
## 3724 Novelty Hill
## 3725 Château Barde Haut
## 3726 Château Belgrave
## 3727 Château Haut Bessac
## 3728 Castelgiocondo
## 3729 Castillo Rocio
## 3730 Château Gaillard
## 3731 Château Laurou
## 3732 Cuna del Sol
## 3733 HandCraft
## 3734 Jadix
## 3735 Joseph Cattin
## 3736 Domaine de Ménard
## 3737 Domaine Sarragousse
## 3738 Dominio de la Vega
## 3739 Estate Biblia Chora
## 3740 Falua
## 3741 Fattoria dei Barbi
## 3742 Georges Duboeuf
## 3743 Villa al Cortile
## 3744 Viña Requingua
## 3745 Poggio di Sotto
## 3746 Pomar Junction
## 3747 Purple Heart Wines
## 3748 Santa Luz
## 3749 Domino
## 3750 Château Nozières
## 3751 Clayhouse
## 3752 Domaine de Leyre-Loup
## 3753 Domaine Delsol
## 3754 Domaine Fritz Schmitt
## 3755 El Coto
## 3756 Elqui Wines
## 3757 Fattoria La Lecciaia
## 3758 Kunde
## 3759 Domaine Sainte-Marie
## 3760 Don Miguel Gascón
## 3761 Durigutti
## 3762 Feudi del Pisciotto
## 3763 Four Degrees of Riesling
## 3764 Grove Mill
## 3765 Jones of Washington
## 3766 Leonard Oakes
## 3767 Long Meadow Ranch
## 3768 Marqués de Cáceres
## 3769 Mustilli
## 3770 Nativ
## 3771 Nickel & Nickel
## 3772 Pierre Sparr
## 3773 Pollak
## 3774 Roadhouse Winery
## 3775 Rutherford Hill
## 3776 Sojourn
## 3777 Taverna
## 3778 Three Fox
## 3779 Molliver Vineyards
## 3780 Roanoke Vineyards
## 3781 Bellwether
## 3782 Wairau River
## 3783 Wild Meadows
## 3784 Henri Schoenheitz
## 3785 Trump
## 3786 Cantina del Barone
## 3787 Cantine Gulino
## 3788 Sheldon
## 3789 Sol Rouge
## 3790 Szigeti
## 3791 Tre Nova
## 3792 V. Sattui
## 3793 Poggio Antico
## 3794 14 Hands
## 3795 Benmarl
## 3796 Hightower
## 3797 Il Grillesino
## 3798 La Braccesca
## 3799 La Poderina
## 3800 Lambardi
## 3801 Macari
## 3802 Máscara de Feugo
## 3803 Mercer
## 3804 Mercer Canyons
## 3805 Molino di Sant'Antimo
## 3806 Mont-Ferrant
## 3807 Noble Vines
## 3808 Avalon
## 3809 Baigorri
## 3810 Balduzzi
## 3811 Bucher
## 3812 Cave du Marmandais
## 3813 Cedar View Winery
## 3814 Château de Corcelles
## 3815 Château de Gaudou
## 3816 Château d'Or et de Gueules
## 3817 Château Tour des Gendres
## 3818 Montemercurio
## 3819 Quinta das Bandeiras
## 3820 Quinta do Pinto
## 3821 Qupé
## 3822 Pujanza
## 3823 Roar
## 3824 Domaine des Baumard
## 3825 Jean-Luc Colombo
## 3826 Paul Jaboulet Aîné
## 3827 Villa S. Anna
## 3828 Testarossa
## 3829 Testarossa
## 3830 Louis Sipp
## 3831 San Giusto a Rentennano
## 3832 Black Coyote
## 3833 Domaine des Baumard
## 3834 Domaine Ehrhart
## 3835 Domaine de Fondrèche
## 3836 Antico Colle
## 3837 Wine & Soul
## 3838 Istine
## 3839 Joseph Fritsch
## 3840 Retro
## 3841 Sojourn
## 3842 Fiuza
## 3843 Bibbiano
## 3844 Wines & Winemakers
## 3845 Castellinuzza e Piuca
## 3846 Domaine Schoffit
## 3847 Gary Farrell
## 3848 Ocone
## 3849 Palari
## 3850 Round Pond
## 3851 S.A. Prüm
## 3852 Archery Summit
## 3853 Bernard Baudry
## 3854 Charles Joguet
## 3855 Château d'Epire
## 3856 Dark Matter
## 3857 Domus Aurea
## 3858 Rusack
## 3859 Thomas Fogarty
## 3860 Tudal
## 3861 Viader
## 3862 Zotovich Cellars
## 3863 Ca' del Bosco
## 3864 Domaine Huët
## 3865 Donelan
## 3866 Beckmen
## 3867 Viento
## 3868 Villa Matilde
## 3869 Wine Spots
## 3870 Clos Pegase
## 3871 Domaine des Baumard
## 3872 Dr. H. Thanisch (Erben Thanisch)
## 3873 Elyse
## 3874 Francis Tannahill
## 3875 Lachini
## 3876 Masciarelli
## 3877 Castle Rock
## 3878 Château Moncontour
## 3879 Derbes
## 3880 Frog's Leap
## 3881 Hellbent
## 3882 Washington Hills
## 3883 Ramos-Pinto
## 3884 Sesti
## 3885 Tagaris
## 3886 Las Colinas Del Ebro
## 3887 Marquee
## 3888 Anciano
## 3889 Avery Lane
## 3890 Beltane Ranch
## 3891 Bodegas Docampo
## 3892 Cortes de Cima
## 3893 Crane Brothers
## 3894 De Loach
## 3895 Domaine Henry Pellé
## 3896 El Burro
## 3897 Enkidu
## 3898 Valle de Salinas
## 3899 Villa San Juliette
## 3900 Plaisance Ranch
## 3901 Poggiobello
## 3902 Previous
## 3903 Primosic
## 3904 Quinta da Romeira
## 3905 Roche
## 3906 Ronco dei Tassi
## 3907 Sauvion
## 3908 St. Pauls
## 3909 La Rajade
## 3910 La Tunella
## 3911 La Vis
## 3912 La Vis
## 3913 Le Cadeau
## 3914 Louis de Grenelle
## 3915 Manincor
## 3916 Meadowcroft
## 3917 Mignanelli
## 3918 Monteviejo
## 3919 Nals Margreid
## 3920 Nisia
## 3921 Passaggio
## 3922 Plaisance Ranch
## 3923 Quinta do Cavalinho
## 3924 Rodney Strong
## 3925 Ronco Blanchis
## 3926 Sarah's Vineyard
## 3927 St. Pauls
## 3928 Tenuta di Angoris
## 3929 Buena Vista
## 3930 Don Cristobal 1492
## 3931 Finca El Origen
## 3932 Glen Ellen
## 3933 Manzanita Creek
## 3934 Montepio
## 3935 Notro
## 3936 Ochoa
## 3937 Robert Mondavi
## 3938 Starmont
## 3939 Aveleda
## 3940 Brophy Clark
## 3941 Caligiore
## 3942 Caligiore
## 3943 Cedar Mountain
## 3944 Concannon
## 3945 Solar de Urbezo
## 3946 Wines & Winemakers
## 3947 Cosentino
## 3948 De Bortoli
## 3949 DFJ Vinhos
## 3950 Yellow Tail
## 3951 Adega Cooperativa Ponte de Barca
## 3952 Pasaje Alto
## 3953 De Bortoli
## 3954 Figaro
## 3955 Fattoria di Casalbosco
## 3956 Georges Duboeuf
## 3957 Georges Duboeuf
## 3958 Jarvis
## 3959 Kingston Family
## 3960 Lapostolle
## 3961 Syncline
## 3962 Trapiche
## 3963 Loimer
## 3964 Louis Latour
## 3965 Louis Latour
## 3966 M by Michael Mondavi
## 3967 Margerum
## 3968 Pedroncelli
## 3969 Pietro Beconcini
## 3970 Boekenhoutskloof
## 3971 Bortolotti
## 3972 Chanson Père et Fils
## 3973 Château Cambon la Pelouse
## 3974 Château Lilian Ladouys
## 3975 Corison
## 3976 Longboard
## 3977 Margerum
## 3978 Nicolis
## 3979 Giacomo Ascheri
## 3980 Saint Clair
## 3981 Covey Run
## 3982 Bearboat
## 3983 Spy Valley
## 3984 Jurtschitsch
## 3985 Valdinera
## 3986 X
## 3987 Renato Ratti
## 3988 Michele Chiarlo
## 3989 Pertinace
## 3990 Pertinace
## 3991 Poderi Luigi Einaudi
## 3992 Seia
## 3993 Kindred
## 3994 Maddalena
## 3995 Beringer
## 3996 Familia Schroeder
## 3997 Il Falchetto
## 3998 Red Newt Cellars
## 3999 Señorío de Caleruega
## 4000 Silver Thread
## 4001 Telmo Rodríguez
## 4002 Breaux
## 4003 Chakras
## 4004 Chalk Hill
## 4005 Château Henri Bonnaud
## 4006 Château la Gordonne
## 4007 Contrada Michele
## 4008 Coronica
## 4009 Covington
## 4010 Dr. Konstantin Frank
## 4011 Fattoria La Rivolta
## 4012 Argento
## 4013 Beau Joubert
## 4014 Jones of Washington
## 4015 Ken Wright
## 4016 Kim Crawford
## 4017 Llopart
## 4018 Maimai
## 4019 Masseria Felicia
## 4020 Miloš
## 4021 Nickel & Nickel
## 4022 Niner
## 4023 Novelty Hill
## 4024 Pedro Escudero
## 4025 Raats Family
## 4026 Radford Dale
## 4027 Sanpaolo
## 4028 Airfield Estates
## 4029 Ammunition
## 4030 Andis
## 4031 Archium
## 4032 Buttonwood
## 4033 Cave de Bissey
## 4034 Chateau Ste. Michelle
## 4035 Damsel
## 4036 Domaine des Cognettes
## 4037 Domaine Julie Belland
## 4038 Domaine Julie Belland
## 4039 Domaine les Pins
## 4040 Fattori
## 4041 Inama
## 4042 Karma Vineyards
## 4043 Kiona
## 4044 Tranche
## 4045 Trust
## 4046 Valentin Bianchi
## 4047 Viña Requingua
## 4048 Whitecliff Vineyard
## 4049 Wine Man
## 4050 Yealands
## 4051 Zuccardi
## 4052 Bouza
## 4053 Brian Carter Cellars
## 4054 Cecilia Beretta
## 4055 Chakana
## 4056 Chateau Ste. Michelle
## 4057 Chronic Cellars
## 4058 Kale
## 4059 Kirkland Signature
## 4060 Kirkland Signature
## 4061 Les Rocailles
## 4062 Twomey
## 4063 Ty Caton
## 4064 W.T. Vintners
## 4065 Waters Crest
## 4066 William Church
## 4067 Matanzas Creek
## 4068 Mazzei
## 4069 Michele Chiarlo
## 4070 Miraflores
## 4071 Monchiero
## 4072 Mosquito Fleet
## 4073 Pech Merle
## 4074 Ridgeview Estate
## 4075 Robert Renzoni
## 4076 Roth
## 4077 Savage Grace
## 4078 Seghesio
## 4079 Silver
## 4080 Stags' Leap Winery
## 4081 The Conqueror
## 4082 Henri Bourgeois
## 4083 Holly's Hill
## 4084 Kathryn Kennedy
## 4085 Keating
## 4086 Antiyal
## 4087 Locus
## 4088 B.R. Cohn
## 4089 Bodegas San Valero
## 4090 Cantina di Bertiolo
## 4091 Casa de Vila Nova
## 4092 Casca Wines
## 4093 Caves Velhas
## 4094 Quinta da Rede
## 4095 Reustle
## 4096 Silverado
## 4097 Stag's Leap Wine Cellars
## 4098 J. Portugal Ramos
## 4099 Viu Manent
## 4100 Yalumba
## 4101 Terlato
## 4102 Treasure
## 4103 Truett Hurst
## 4104 Markham
## 4105 Artesana
## 4106 Beaucanon
## 4107 Bryx
## 4108 Campolargo
## 4109 Duorum
## 4110 Estampa
## 4111 La Pitchoune
## 4112 Landmark
## 4113 Lasseter
## 4114 Lava Cap
## 4115 Leonard Kreusch
## 4116 Leonard Kreusch
## 4117 Liberated
## 4118 Donkey & Goat
## 4119 Donkey & Goat
## 4120 Donnafugata
## 4121 Dr. Heidemanns-Bergweiler
## 4122 Drappier
## 4123 Drappier
## 4124 Eagle Ridge
## 4125 En Garde
## 4126 Fontanafredda
## 4127 Fratelli Berlucchi
## 4128 Billecart-Salmon
## 4129 Boizel
## 4130 Boizel
## 4131 Vermeil
## 4132 Vignobles Carreau Selection
## 4133 Westerly
## 4134 Willamette Valley Vineyards
## 4135 Casal da Coelheira
## 4136 Le Brun de Neuville
## 4137 Quinta das Carvalhas
## 4138 D'Arenberg
## 4139 Billecart-Salmon
## 4140 Delaforce
## 4141 Shea
## 4142 Simonnet-Febvre
## 4143 Simonnet-Febvre
## 4144 Skinner
## 4145 Terredora
## 4146 Casa Santos Lima
## 4147 Chamisal Vineyards
## 4148 Domaine Divio
## 4149 Dragonette
## 4150 Dragonette
## 4151 Gramercy
## 4152 Huré Frères
## 4153 J. Christopher
## 4154 Michel-Schlumberger
## 4155 Pietradolce
## 4156 José Dhondt
## 4157 Martin Ranch
## 4158 Neyers
## 4159 Nicholson Ranch
## 4160 Niner
## 4161 Prospect 772
## 4162 Prospect 772
## 4163 Quinta do Sagrado
## 4164 Cantine del Notaio
## 4165 Casa da Passarella
## 4166 Chamisal Vineyards
## 4167 Contrade di Taurasi - Lonardo
## 4168 Cristom
## 4169 DeLille
## 4170 Domdechant Werner
## 4171 Twisted Twig
## 4172 Brennan
## 4173 Claar
## 4174 Kunde
## 4175 Mumm Napa
## 4176 Parker Station
## 4177 Sequoia Grove
## 4178 Skyfall
## 4179 Snoqualmie
## 4180 Snoqualmie
## 4181 Haak
## 4182 Inspire Moore
## 4183 La Playa
## 4184 Les Vignobles Gueissard
## 4185 Louis Max
## 4186 Mezzacorona
## 4187 Orogeny
## 4188 Paris Valley Road Cellars
## 4189 Lamoreaux Landing
## 4190 Millbrook
## 4191 San Cassiano
## 4192 Tin Barn
## 4193 Casas del Bosque
## 4194 Sanford
## 4195 Tolosa
## 4196 Airfield Estates
## 4197 Arboleda
## 4198 Commanderie de la Bargemone
## 4199 Concha y Toro
## 4200 Concha y Toro
## 4201 Kunde
## 4202 Las Positas
## 4203 Le Albare
## 4204 LXV
## 4205 Nuiton-Beaunoy
## 4206 Obelisco Estate
## 4207 Olsen Private Vineyards
## 4208 Payana
## 4209 Pierre Gruber
## 4210 Pisoni
## 4211 Pradorey
## 4212 Quinta de Chocapalha
## 4213 Quinta de Chocapalha
## 4214 Quinta do Casal Monteiro
## 4215 Rancho Sisquoc
## 4216 Schlink Haus
## 4217 Thomas George
## 4218 Verbena
## 4219 Vicente Faria Vinhos
## 4220 Blanchard & Lurton
## 4221 Broadway Vineyards
## 4222 Corte Adami
## 4223 De Stefani
## 4224 Enrique Foster
## 4225 Firestone
## 4226 Fiuza
## 4227 Flor De Campo
## 4228 Georges Vigouroux
## 4229 Ghost Pines
## 4230 Hobo
## 4231 Ridolfi
## 4232 Santa Julia
## 4233 Suhru
## 4234 Swiftwater Cellars
## 4235 Swiftwater Cellars
## 4236 Te Mata
## 4237 Peloton
## 4238 Portalupi
## 4239 Quivira
## 4240 Roche de Bellene
## 4241 St. Supéry
## 4242 Viña Casablanca
## 4243 Judge Palmer
## 4244 Kakhetia Traditional Winemaking
## 4245 Maryhill
## 4246 Mirror
## 4247 Monte Volpe
## 4248 Montes
## 4249 Peltier
## 4250 Replica
## 4251 Robert Karl
## 4252 Ryan Patrick
## 4253 Senda Verde
## 4254 Shannon Ridge
## 4255 Swiftwater Cellars
## 4256 TAO
## 4257 The Federalist
## 4258 Chaman
## 4259 Le Vigne di Ca' Nova
## 4260 Lomas del Valle
## 4261 Lone Birch
## 4262 Maryhill
## 4263 Domaine Terre de Mistral
## 4264 Barlow
## 4265 Caracol Serrano
## 4266 Château de la Bouyère
## 4267 Château la Croix Saint-Pierre
## 4268 Simi
## 4269 SuLei
## 4270 Topanga
## 4271 Belle Ambiance
## 4272 Louis Bernard
## 4273 Lucas Vineyards
## 4274 Marchesi di Barolo
## 4275 Mirassou
## 4276 Hogue
## 4277 Hogue
## 4278 Les Maîtres Vignerons de la Presqu'île de Saint-Tropez
## 4279 Les Rocailles
## 4280 Les Rocailles
## 4281 Vin Roc
## 4282 Woodenhead
## 4283 Château Siffle Merle
## 4284 Cosa Obra
## 4285 Domaine de Beauregard
## 4286 Freixenet
## 4287 Santa Quiteria
## 4288 La Purísima
## 4289 G. H. Mumm
## 4290 Guenoc
## 4291 Valley of the Moon
## 4292 Pey-Marin
## 4293 Saintsbury
## 4294 Simone
## 4295 Pieropan
## 4296 Domaine Costa Lazaridi
## 4297 Dunham
## 4298 Graci
## 4299 Gundlach Bundschu
## 4300 Alexandria Nicole
## 4301 Benanti
## 4302 Bergevin Lane
## 4303 Boizel
## 4304 Château Barreyres
## 4305 Tommasi
## 4306 Vigneti Villabella
## 4307 Wairau River
## 4308 Le Ragose
## 4309 Martin Ranch
## 4310 Newsome-Harlow
## 4311 Guerrieri Rizzardi
## 4312 Porta
## 4313 Ledgewood Creek
## 4314 Château Nairac
## 4315 Cosme Palacio y Hermanos
## 4316 Domaine Seguin
## 4317 Dr. Konstantin Frank
## 4318 Gilberts
## 4319 Poças
## 4320 Stoller
## 4321 Tarapaca
## 4322 Lustau
## 4323 Umani Ronchi
## 4324 W.H. Smith
## 4325 Watershed
## 4326 Château Rabaud-Promis
## 4327 Chehalem
## 4328 Daedalus Cellars
## 4329 Fournier Père et Fils
## 4330 Bodegas Dios Baco S.L.
## 4331 Cantine Barbera
## 4332 Caruso & Minini
## 4333 Yangarra Estate Vineyard
## 4334 Yering Station
## 4335 Alvear
## 4336 Ampelos
## 4337 Avancia
## 4338 Castello di Amorosa
## 4339 Screen Door Cellars
## 4340 Seconda Stella a Destra
## 4341 Sokol Blosser
## 4342 Sokol Blosser
## 4343 Soléna
## 4344 Sonoma-Cutrer
## 4345 Talisman
## 4346 The Four Graces
## 4347 Tinto Rey
## 4348 Wellington
## 4349 Wild Hogge
## 4350 Zenith
## 4351 Belden Barns
## 4352 Belden Barns
## 4353 Bindella
## 4354 Cannonball
## 4355 Bosque De Matasnos
## 4356 Cantina del Giusto
## 4357 Château du Retout
## 4358 Château Ducluzeau
## 4359 Château La Clare
## 4360 Château la Vieille Cure
## 4361 Château Lestruelle
## 4362 Château Monbousquet
## 4363 Château Potensac
## 4364 Sogevinus
## 4365 Roger Lassarat
## 4366 Russiz Superiore
## 4367 Bell
## 4368 Bodega Chacra
## 4369 Bret Brothers
## 4370 Ca' de Calle
## 4371 Cantina Terlano
## 4372 Chanson Père et Fils
## 4373 Collovray et Terrier
## 4374 Domaine Michel Bouzereau
## 4375 Girard
## 4376 Mark Ryan
## 4377 Bernardus
## 4378 Daniel Barraud
## 4379 Dinastía Vivanco
## 4380 Domaine des Comtes Lafon
## 4381 Gordon Brothers
## 4382 Grand Rêve
## 4383 Louis Latour
## 4384 Louis Latour
## 4385 Domaine Bertrand
## 4386 Domaine Carrette
## 4387 Domaine Jessiaume
## 4388 Domaine Michel Goubard
## 4389 Domaine Pascal et Mireille Renaud
## 4390 Drink Washington State
## 4391 Drink Washington State
## 4392 Drink Washington State
## 4393 Fetzer
## 4394 Finn Hill
## 4395 Finn Hill
## 4396 Finn Hill
## 4397 Francis Ford Coppola
## 4398 Georges Duboeuf
## 4399 Georges Duboeuf
## 4400 Gloria Ferrer
## 4401 Inspire Moore
## 4402 Jean-Luc and Paul Aegerter
## 4403 L. Tramier & Fils
## 4404 La Spinona
## 4405 Louis Latour
## 4406 Macari
## 4407 Mas Pere
## 4408 McGregor
## 4409 McKahn
## 4410 Meurgey-Croses
## 4411 Milbrandt
## 4412 :Nota Bene
## 4413 Pacific Rim
## 4414 Rijckaert
## 4415 Stephen Ross
## 4416 Telmo Rodríguez
## 4417 Vite Colte
## 4418 Woodward Canyon
## 4419 Woodward Canyon
## 4420 Januik
## 4421 Jorge Ordóñez & Co.
## 4422 Kitá
## 4423 Le Casque
## 4424 Luis Cañas
## 4425 Maryhill
## 4426 Adriano Marco & Vittorio
## 4427 Bernardus
## 4428 Black Ridge
## 4429 Cantina del Pino
## 4430 Château de Chénas
## 4431 Château d'Ollières
## 4432 Cline
## 4433 Dante Rivetti
## 4434 Domaine Faiveley
## 4435 Domaine Jessiaume
## 4436 Domaine Pierre Guillemot
## 4437 Domaine Sophie Cinier
## 4438 Dr. Konstantin Frank
## 4439 Firestone
## 4440 Florent Descombe
## 4441 Gillmore
## 4442 Giovanna Madonia
## 4443 Cairdeas
## 4444 Cantina del Pino
## 4445 RoxyAnn
## 4446 Straccali
## 4447 Les Vins de Vienne
## 4448 Señorio de Uñuela
## 4449 Straccali
## 4450 Adega de Monção
## 4451 Amalie Robert
## 4452 Cable Car
## 4453 Cave du Marmandais
## 4454 Château Routas
## 4455 Clos du Lac
## 4456 Decoy
## 4457 Decoy
## 4458 Decoy
## 4459 Eleanor
## 4460 Ferré I Catasús
## 4461 Vicente Gandia
## 4462 Vigilance
## 4463 Pine Ridge
## 4464 Principe Pallavicini
## 4465 Provenance Vineyards
## 4466 Riboli
## 4467 Rigg Estate Vineyards
## 4468 Robledo
## 4469 Chateau Ste. Michelle
## 4470 Ciacci Piccolomini d'Aragona
## 4471 Corliss Estates
## 4472 Etude
## 4473 Basel Cellars
## 4474 Bink
## 4475 Bodegas Tobía
## 4476 Cambria
## 4477 Cayuse
## 4478 Ashan
## 4479 Aluvé
## 4480 Bailly-Lapierre
## 4481 Buglioni
## 4482 Château de Crézancy
## 4483 Chateau Ste. Michelle
## 4484 Domaine Girard
## 4485 Domaine Henri Delagrange
## 4486 Robert Renzoni
## 4487 Sarah's Vineyard
## 4488 Sleeping Giant
## 4489 Solminer
## 4490 Solminer
## 4491 Squawking Magpie
## 4492 Trinity Hill
## 4493 Trione
## 4494 WesMar
## 4495 Jean-Max Roger
## 4496 JM Cellars
## 4497 Lynmar
## 4498 Maison Stéphane Brocard
## 4499 Gottfried Mocke Wine Projects
## 4500 Nicky Versfeld
## 4501 Vriesenhof
## 4502 Nitida
## 4503 Wayfarer
## 4504 Passopisciaro
## 4505 Limerick Lane
## 4506 Wayfarer
## 4507 Calera
## 4508 Wayfarer
## 4509 Donum
## 4510 Wayfarer
## 4511 Williams Selyem
## 4512 Williams Selyem
## 4513 Calera
## 4514 Giuseppe Rinaldi
## 4515 Donum
## 4516 Massolino
## 4517 Patz & Hall
## 4518 Byron
## 4519 Carlisle
## 4520 Château Pierre-Bise
## 4521 Wayfarer
## 4522 Three Sticks
## 4523 Giacomo Conterno
## 4524 Biondi
## 4525 Biondi
## 4526 Chanin
## 4527 Château de Fesles
## 4528 COS
## 4529 Aguirre
## 4530 Wood Family Vineyards
## 4531 Kaleidos
## 4532 Kenneth Volk
## 4533 Finca Albret
## 4534 Truett Hurst
## 4535 Cara Mia
## 4536 Materra Cunat Family Vineyards
## 4537 Gary Farrell
## 4538 Hess Select
## 4539 Pedroncelli
## 4540 Quarticello
## 4541 Six Degrees
## 4542 Austerity
## 4543 Château de Piote
## 4544 Costa Archi
## 4545 Amador Cellars
## 4546 Green Truck
## 4547 Brochelle Vineyards
## 4548 Château Larroque
## 4549 Cornellana
## 4550 Harlow Ridge
## 4551 Harlow Ridge
## 4552 Green Truck
## 4553 Dominio de Eguren
## 4554 Vinum
## 4555 William Cole
## 4556 Bodegas 1898
## 4557 Fattoria Giuseppe Savini
## 4558 Paul Cheneau
## 4559 Eguren
## 4560 Quinta do Castelinho
## 4561 Rock Point
## 4562 Jose Maria Vieira
## 4563 Kopke
## 4564 Les Vignerons Réunis de Monségur
## 4565 Martin Ranch
## 4566 Weisinger
## 4567 Loft
## 4568 Il Feuduccio Di S. Maria D'Orni
## 4569 Illuminati Dino
## 4570 Viñalba
## 4571 Covila
## 4572 Adega Mãe
## 4573 Adega Mãe
## 4574 Barba
## 4575 Beacon Hill
## 4576 Casa Ferreirinha
## 4577 Casa Santos Lima
## 4578 Château de Birot
## 4579 Chic Barcelona
## 4580 DFJ Vinhos
## 4581 Prats & Symington LDA
## 4582 Quinta do Filoco
## 4583 Quinta dos Poços
## 4584 Sanguinhal
## 4585 South Stage
## 4586 Villa Giada
## 4587 Manzwine
## 4588 Messias
## 4589 Palacio de Fefiñanes
## 4590 Perception
## 4591 Qupé
## 4592 Ridge
## 4593 Sanguis
## 4594 Santa Sofia
## 4595 Sartori
## 4596 Scott Family
## 4597 St. Francis
## 4598 Allegrini
## 4599 Arger-Martucci
## 4600 Arrowood
## 4601 Atwater
## 4602 Atwater
## 4603 Autonom
## 4604 Beringer
## 4605 Bodegas Tarima
## 4606 Château Grande Cassagne
## 4607 Cono Sur
## 4608 Corteforte
## 4609 Degani
## 4610 Dierberg
## 4611 Domaine Nicolas Boiron
## 4612 Dominio de Tares
## 4613 Finca Allende
## 4614 Genium Celler
## 4615 Highland Cellars
## 4616 Keuka Lake Vineyards
## 4617 Korta
## 4618 Luigi Righetti
## 4619 Francesco Rinaldi
## 4620 No Girls
## 4621 Orfila
## 4622 Saintsbury
## 4623 Sheldon
## 4624 Te Mata
## 4625 Trapiche
## 4626 Boffa
## 4627 Brezza
## 4628 Curto Marco
## 4629 Domaine Drouhin
## 4630 Saintsbury
## 4631 Mauro Veglio
## 4632 Mirafiore
## 4633 Domaine Laporte
## 4634 El Esteco
## 4635 Elyse
## 4636 Henri Bourgeois
## 4637 Bergström
## 4638 Bethel Heights
## 4639 Bodega Catena Zapata
## 4640 Carlisle
## 4641 Carlisle
## 4642 Carlisle
## 4643 Casa Anadia
## 4644 Casca Wines
## 4645 Daniel Chotard
## 4646 Domaine Bernard Fleuriet et Fils
## 4647 Quinta dos Murças
## 4648 Château Dassault
## 4649 Château Rahoul
## 4650 Alter Ego de Palmer
## 4651 Château Fontenil
## 4652 Château Kirwan
## 4653 Château Latour-Martillac
## 4654 Vietti
## 4655 Château Bourgneuf-Vayron
## 4656 Château Haut-Bergey
## 4657 Château Lafleur-Gazin
## 4658 Backsberg
## 4659 Pulenta Estate
## 4660 Stark-Condé
## 4661 Château Bouscaut
## 4662 Château de France
## 4663 Château Olivier
## 4664 Château Smith Haut Lafitte
## 4665 Château Bastor-Lamontagne
## 4666 Château Croizet-Bages
## 4667 Château Ferrière
## 4668 Klinker Brick
## 4669 Tildio
## 4670 42°S
## 4671 Pine & Brown
## 4672 Point & Line
## 4673 Schloss Johannisberger
## 4674 Sequoia Grove
## 4675 Skinner
## 4676 Sokol Blosser
## 4677 Gros Ventre
## 4678 Hawk and Horse Vineyards
## 4679 Joh. Jos. Prüm
## 4680 Johannishof
## 4681 King Estate
## 4682 Kokomo
## 4683 Palacios Remondo
## 4684 Lang & Reed
## 4685 Lucienne
## 4686 MacPhail
## 4687 Michael David
## 4688 Navarro
## 4689 Occasio
## 4690 Pali
## 4691 Pear Valley
## 4692 Renwood
## 4693 San Pedro
## 4694 Soquel Vineyards
## 4695 Starmont
## 4696 Stephen Ross
## 4697 Stoller
## 4698 Stonehedge
## 4699 Bodegas Landaluce
## 4700 Bodegas Palacio
## 4701 Benoît Daridan
## 4702 Benoît Daridan
## 4703 Campolargo
## 4704 Coeur de Terre
## 4705 Cummins Road
## 4706 Il Falchetto
## 4707 La Fusina
## 4708 Leonard Kreusch
## 4709 Luigi Bosca
## 4710 Monchiero Carbone
## 4711 Montalbera
## 4712 Raiza
## 4713 Mount Veeder
## 4714 Paolo Manzone
## 4715 Peter Nicolay
## 4716 Peter Nicolay
## 4717 Podere Ruggeri Corsini
## 4718 Quinta Nova de Nossa Senhora do Carmo
## 4719 Rodney Strong
## 4720 Silvan Ridge
## 4721 Terras de Alter
## 4722 Terras de Alter
## 4723 Schmitt Söhne
## 4724 Shoofly
## 4725 Tabor
## 4726 Tiza
## 4727 Larkspur
## 4728 Ledger David
## 4729 Liberated
## 4730 Fiuza
## 4731 Seven Hills
## 4732 Canoe Ridge
## 4733 Kunde
## 4734 Signorello
## 4735 Chateau Ste. Michelle
## 4736 Canoe Ridge
## 4737 Château Souverain
## 4738 Columbia Winery
## 4739 Kunde
## 4740 Gainey
## 4741 Andrew Will
## 4742 Mirassou
## 4743 Seven Hills
## 4744 Woodward Canyon
## 4745 Kiona
## 4746 Bridlewood
## 4747 Louis M. Martini
## 4748 Robert Mondavi
## 4749 Merryvale
## 4750 Stag's Leap Wine Cellars
## 4751 Stag's Leap Wine Cellars
## 4752 Columbia Winery
## 4753 Merryvale
## 4754 Seven Hills
## 4755 Seven Hills
## 4756 Schug
## 4757 Bridlewood
## 4758 Eagle & Rose Estate
## 4759 Hoodsport
## 4760 Columbia Winery
## 4761 Bodegas Valdemar
## 4762 Cameron Hughes
## 4763 Il Poggione
## 4764 Juris
## 4765 Kale
## 4766 Zull
## 4767 Château La Garricq
## 4768 Château l'Évangile
## 4769 Château Saint-Estèphe
## 4770 Coeur d'Alene
## 4771 Conti Costanti
## 4772 Corte dei Venti
## 4773 DaMa
## 4774 DiamAndes
## 4775 Emilio Moro
## 4776 Fattoria dei Barbi
## 4777 Finca Lalande
## 4778 Fritsch
## 4779 Godspeed
## 4780 Gross
## 4781 Rodney Strong
## 4782 San Lorenzo
## 4783 Schloss Gobelsburg
## 4784 Schloss Gobelsburg
## 4785 TeHo
## 4786 Tenuta di Sesta
## 4787 Terre Nere
## 4788 Gigante
## 4789 Greek Wine Cellars
## 4790 Bella Ragazza
## 4791 Vinum
## 4792 Castelfeder
## 4793 Castelluccio
## 4794 Conte Ferdinando Guicciardini
## 4795 Estate Constantin Gofas
## 4796 Fongoli
## 4797 Kaiken
## 4798 Lafazanis
## 4799 Moretti Omero
## 4800 Peter Franus
## 4801 TerrAmore
## 4802 Bogle
## 4803 Boutari
## 4804 Carmel Road
## 4805 Carpineto
## 4806 Concannon
## 4807 DiamAndes
## 4808 J. Lohr
## 4809 Laurenz V.
## 4810 LaVelle
## 4811 Merryvale
## 4812 Montresor
## 4813 Mullineux
## 4814 Nals Margreid
## 4815 Chaltén
## 4816 Drappier
## 4817 Fernwood
## 4818 Hendry
## 4819 Vino Sapien
## 4820 La Fenêtre
## 4821 Mercer
## 4822 Mercer
## 4823 Merryvale
## 4824 Pietra Santa
## 4825 Prospero
## 4826 Robert Mondavi
## 4827 Ortman Family
## 4828 Mansard
## 4829 Mosby
## 4830 Covey Run
## 4831 Foxen
## 4832 Ursa
## 4833 Wolff
## 4834 Zaca Mesa
## 4835 Handley
## 4836 Brander
## 4837 Messias
## 4838 Pear Valley
## 4839 Piccini
## 4840 Quinta do Crasto
## 4841 Quinta dos Avidagos
## 4842 Quintay
## 4843 Rickshaw
## 4844 Robert Mondavi
## 4845 Santa Ema
## 4846 Amity
## 4847 Carpineto
## 4848 Casa Emma
## 4849 Casa Santos Lima
## 4850 Castell
## 4851 Castello d'Albola
## 4852 Castello di Verrazzano
## 4853 Collin-Bourisset
## 4854 Dei
## 4855 Domaine de Cause
## 4856 Domaine d'Escausses
## 4857 Sierra Cantabria
## 4858 Vignamaggio
## 4859 Villa Mangiacane
## 4860 Villa Wolf
## 4861 Tenute del Cerro
## 4862 Terras de Alter
## 4863 Hearst Ranch
## 4864 Herdade Grande
## 4865 Kings Ridge
## 4866 Kunde
## 4867 Evel
## 4868 Gershon Bachus
## 4869 Greenwood Ridge
## 4870 La Vida al Camp
## 4871 Melrose
## 4872 Murgo
## 4873 Oak Knoll
## 4874 OT
## 4875 Palivou
## 4876 Paul Anheuser
## 4877 Pieve Santo Stefano
## 4878 Prime
## 4879 Quercia al Poggio
## 4880 Quinta dos Aciprestes
## 4881 Rainoldi
## 4882 Santa Alicia
## 4883 Sierra Batuco
## 4884 Thomas Halby
## 4885 Claudia Papayianni
## 4886 Covila
## 4887 Vigna di Pettineo
## 4888 Willamette Valley Vineyards
## 4889 William Hill Estate
## 4890 Verse & Chorus
## 4891 Viña Casas Patronales
## 4892 Viña San Vicente
## 4893 Volpaia
## 4894 William Hill Estate
## 4895 Naggiar
## 4896 Philo Ridge
## 4897 Ixsir
## 4898 Jean-Marc Brocard
## 4899 Kokomo
## 4900 Lovingston
## 4901 Lynch Wines
## 4902 MacLaren
## 4903 Magnum Vinhos
## 4904 Monte da Ravasqueira
## 4905 Dona Maria-Júlio Bastos
## 4906 Fitapreta Vinhos
## 4907 Fontanabianca
## 4908 Friedrich Becker
## 4909 Andeluna
## 4910 Anselmo Mendes
## 4911 Azamor
## 4912 Bernhard Huber
## 4913 Bodega Tacuil
## 4914 Boeger
## 4915 Ca' Nova
## 4916 Cantina Santadi
## 4917 Casca Wines
## 4918 Provam
## 4919 Quady North
## 4920 Rudius
## 4921 Saxon Brown
## 4922 Sella & Mosca
## 4923 Terroirs et Talents
## 4924 Treos
## 4925 Pala
## 4926 Poeira
## 4927 François Lurton
## 4928 Graceland
## 4929 Josef Chromy
## 4930 Ken Forrester
## 4931 MAN Vintners
## 4932 Matsu
## 4933 Michel Torino
## 4934 Milbrandt
## 4935 Morro Bay
## 4936 Naggiar
## 4937 Niner
## 4938 Ott & Murphy
## 4939 Quinta das Maias
## 4940 Quinta de Sant'Ana
## 4941 Red Truck
## 4942 Rock Wall
## 4943 Bulletin Place
## 4944 Tercos
## 4945 Tortoise Creek
## 4946 Trust
## 4947 Vecchia Cantina di Montepulciano
## 4948 Alente
## 4949 Bacalhôa Wines of Portugal
## 4950 Barefoot Bubbly
## 4951 Chateau de Launay
## 4952 Cobblestone
## 4953 Dancing Derby
## 4954 De Loach
## 4955 Dominio de Eguren
## 4956 El Escocés Volante
## 4957 Domaine Roblin
## 4958 Écluse
## 4959 Finca Constancia
## 4960 Bump
## 4961 Cantina Cortaccia
## 4962 Cantina Produttori Bolzano S. Maddalena/Gries
## 4963 Château de la Roulerie
## 4964 Château la Varière
## 4965 ZD
## 4966 Joseph Phelps
## 4967 Lafou
## 4968 Monteviejo
## 4969 Patient Cottat
## 4970 Domaine l'Ancienne Cure
## 4971 Domaine Seguin
## 4972 Domenico Cavazza
## 4973 San Pedro
## 4974 Sean Thackrey
## 4975 Tolosa
## 4976 Transcendence
## 4977 Alysian
## 4978 Grafen Neipperg
## 4979 Bonair
## 4980 Calatrasi
## 4981 Cantele
## 4982 Château de Fonbel
## 4983 Château Fonréaud
## 4984 Château Maris
## 4985 Colli di Lapio
## 4986 Domaine Lignères
## 4987 Drylands
## 4988 Elki
## 4989 Prager
## 4990 Rietvallei Estate Wine
## 4991 Salvatore Molettieri
## 4992 Santa Maria
## 4993 Shaw and Smith
## 4994 Talley
## 4995 Tedeschi
## 4996 Mud House
## 4997 Fattoria Alois
## 4998 Florio
## 4999 Vice Versa
## 5000 Viña Mar de Casablanca
## 5001 Willi Haag
## 5002 Barrister
## 5003 Brampton
## 5004 Cadaretta
## 5005 Château Cos Labory
## 5006 Château Teyssier
## 5007 Chatter Creek
## 5008 Maurodos
## 5009 K Vintners
## 5010 Pirouette
## 5011 Prime
## 5012 Dunham
## 5013 Betz Family
## 5014 Constant
## 5015 Signorello
## 5016 Stag's Leap Wine Cellars
## 5017 Stag's Leap Wine Cellars
## 5018 K Vintners
## 5019 K Vintners
## 5020 Lamborn Family Vineyards
## 5021 Corliss Estates
## 5022 Creō
## 5023 Goldschmidt
## 5024 Gramercy
## 5025 Marimar Estate
## 5026 Shafer
## 5027 K Vintners
## 5028 Krupp Brothers
## 5029 Constant
## 5030 Hewitt
## 5031 Sineann
## 5032 Château de Ferrand
## 5033 Château Haut-Logat
## 5034 Château Suduiraut
## 5035 Cortes de Cima
## 5036 Domaine Ostertag
## 5037 Domaine Schoffit
## 5038 Domaines Schlumberger
## 5039 Elyse
## 5040 FEL
## 5041 Franciscan
## 5042 Gibbs
## 5043 Greyscale
## 5044 Lapostolle
## 5045 Piña
## 5046 Produttori del Barbaresco
## 5047 Renteria
## 5048 Santa Barbara Winery
## 5049 Still Waters
## 5050 Taken Wine Co.
## 5051 Boeckel
## 5052 Wildhurst
## 5053 Ixsir
## 5054 Mount Eden Vineyards
## 5055 Quinta do Portal
## 5056 Quinta do Sagrado
## 5057 Robert Biale
## 5058 Savage Grace
## 5059 Savage Grace
## 5060 Arbor Crest
## 5061 Genius Wines
## 5062 Happy Canyon Vineyard
## 5063 J. Portugal Ramos
## 5064 José Maria da Fonseca
## 5065 Abbona Marziano
## 5066 Bava
## 5067 Berryessa Gap
## 5068 Bodega Norton
## 5069 Borges
## 5070 Castle Rock
## 5071 Taliano
## 5072 The Infinite Monkey Theorem
## 5073 The Infinite Monkey Theorem
## 5074 Trivento
## 5075 Trump
## 5076 Viña Albali
## 5077 Château de la Vieille Tour
## 5078 Château du Coudray Montpensier
## 5079 Château Lafont Menaut
## 5080 Château Simard
## 5081 Coeur de Terre
## 5082 Decoy
## 5083 Enanzo
## 5084 Etienne de Tauriac
## 5085 Fabbioli Cellars
## 5086 Milijan Jelić
## 5087 Parusso
## 5088 Pezat
## 5089 Plantagenet
## 5090 Purlieu
## 5091 Robert Mondavi
## 5092 SuLei
## 5093 Valle Secreto
## 5094 Laetitia
## 5095 Mancura
## 5096 Maray
## 5097 O•S Winery
## 5098 Jean-Michel Cazes
## 5099 Waterbrook
## 5100 Wild Horse
## 5101 Errazuriz
## 5102 Fischer
## 5103 Baehner Fournier
## 5104 Canoe Ridge
## 5105 Casas del Bosque
## 5106 Castillo De Feliciana
## 5107 Communication Block
## 5108 Emiliana
## 5109 Fess Parker
## 5110 Markus Huber
## 5111 Markus Huber
## 5112 Martin & Weyrich
## 5113 Pico Maccario
## 5114 Pico Maccario
## 5115 Robert Mondavi
## 5116 Brilliant Mistake
## 5117 Johanneshof Reinisch
## 5118 Les Belles Collines
## 5119 Loring Wine Company
## 5120 Lucienne
## 5121 Lucienne
## 5122 Lynch Wines
## 5123 Armida
## 5124 Bernhard Ott
## 5125 Trenel Fils
## 5126 Wolff
## 5127 Gunter Triebaumer
## 5128 Haraszthy
## 5129 Hiedler
## 5130 Burrowing Owl
## 5131 Château des Jacques
## 5132 Concha y Toro
## 5133 Domaine des Chers
## 5134 Forstreiter
## 5135 Freakshow
## 5136 Gård
## 5137 Blue Rock
## 5138 Brancaia
## 5139 Osprey's Dominion
## 5140 Gundlach Bundschu
## 5141 Koyle
## 5142 Anton Bauer
## 5143 Baker & Brain
## 5144 Ballentine
## 5145 Bründlmayer
## 5146 Esser Cellars
## 5147 Cana's Feast
## 5148 Château Pontet-Canet
## 5149 Clos Fourtet
## 5150 Jacob's Creek
## 5151 Abacela
## 5152 Babcock
## 5153 Borsao
## 5154 Brophy Clark
## 5155 Carmel Road
## 5156 Castello Montaúto
## 5157 Clarendon Hills
## 5158 D'Arenberg
## 5159 Domaine Specht
## 5160 Evergreen Vineyards
## 5161 Fess Parker
## 5162 J. Scott Cellars
## 5163 Juvé y Camps
## 5164 Luminous Hills
## 5165 Marqués de Cáceres
## 5166 Uccelliera
## 5167 Valley of the Moon
## 5168 Villa Andretti
## 5169 Wagner
## 5170 Abacela
## 5171 Bodegas San Prudencio
## 5172 Brandlin
## 5173 Canneta
## 5174 Cathedral Ridge
## 5175 Domaine Saint Andrieu
## 5176 Domäne Wachau
## 5177 Kumeu River
## 5178 Renteria
## 5179 Renteria
## 5180 Rex Hill
## 5181 Riecine
## 5182 Rutherford Hill
## 5183 Stewart
## 5184 Tenuta di Riseccoli
## 5185 Terenzi
## 5186 Durigutti
## 5187 Château Moncontour
## 5188 Domaine Buronfosse
## 5189 Domaine Pignier
## 5190 En Garde
## 5191 Fattoria di Montemaggio
## 5192 Finca la Celia
## 5193 François Millet
## 5194 Dr. Loosen
## 5195 MacRostie
## 5196 Margerum
## 5197 Poggio Argentiera
## 5198 Poggio Scalette
## 5199 Querciavalle
## 5200 Quinta de Arcossó
## 5201 Raptor Ridge
## 5202 Raymond
## 5203 Recanati
## 5204 Rijckaert
## 5205 Stewart
## 5206 Thörle
## 5207 Dopff Au Moulin
## 5208 Gary Farrell
## 5209 Fattorie Romeo del Castello
## 5210 Fog Crest
## 5211 Gary Farrell
## 5212 Philipp Kuhn
## 5213 Valderiz
## 5214 Alloro
## 5215 C. von Nell-Breuning
## 5216 Hall
## 5217 Hunt McKay
## 5218 Hyland
## 5219 Hyland
## 5220 Lancaster
## 5221 Le Casematte
## 5222 Lemelson
## 5223 Lenné Estate
## 5224 Vercingetorix VX
## 5225 Willamette Valley Vineyards
## 5226 Villa Maria
## 5227 Madmon
## 5228 Merryvale
## 5229 Michael Gill Cellars
## 5230 Muxagat
## 5231 Domaine Maillard
## 5232 Eric Kent
## 5233 Eric Kent
## 5234 Fidelity
## 5235 Au Pied du Mont Chauve
## 5236 Bailiwick
## 5237 Caparzo
## 5238 Castelli Martinozzi
## 5239 Chalk Hill
## 5240 González Byass
## 5241 Maison Nicolas Perrin
## 5242 Clement et Florian Berthier
## 5243 Cordella
## 5244 Darcie Kent Vineyards
## 5245 DeLille
## 5246 Domaine Matthias et Emile Roblin
## 5247 Domaine Pellé
## 5248 Domaine Vrignaud
## 5249 Quercia al Poggio
## 5250 Querciabella
## 5251 Raventós I Blanc
## 5252 Salcheto
## 5253 Bailiwick
## 5254 Burrowing Owl
## 5255 Castrucci
## 5256 Château de Santenay
## 5257 Grgich Hills
## 5258 Isabelle et Pierre Clément
## 5259 K Vintners
## 5260 Kanzler
## 5261 Shining Hill
## 5262 Trimbach
## 5263 Truchard
## 5264 Tsantali
## 5265 Umani Ronchi
## 5266 Velenosi
## 5267 Wellington
## 5268 Colonnara
## 5269 David Girard
## 5270 Domaine Ostertag
## 5271 Domaine Pfister
## 5272 Domaine Sorin
## 5273 Efeste
## 5274 El Roy
## 5275 Fattoria Le Terrazze
## 5276 Fox Run
## 5277 Frédéric Mallo
## 5278 Garces Silva
## 5279 Hannes Reeh
## 5280 Damiani
## 5281 Damiani
## 5282 Fairview
## 5283 Keuka Spring
## 5284 Lakewood
## 5285 Morgenhof
## 5286 Vicari
## 5287 Vie Winery
## 5288 Vin du Lac
## 5289 W.T. Vintners
## 5290 Weingut Mayer am Pfarrplatz
## 5291 Hope Estate
## 5292 Innocent Bystander
## 5293 J. Wilkes
## 5294 Katnook Estate
## 5295 Katnook Estate
## 5296 McCay Cellars
## 5297 Nice
## 5298 Peachy Canyon
## 5299 Pieve Vecchia
## 5300 Podere Paganico
## 5301 Recuerdo
## 5302 Rolling
## 5303 Southern Right
## 5304 Steppe Cellars
## 5305 Sur de los Andes
## 5306 Taltarni
## 5307 Tenuta Carlina
## 5308 Tormentoso
## 5309 Altocedro
## 5310 Brunelli Martoccia
## 5311 Cà ed Balos
## 5312 Carlos Serres
## 5313 Castello d'Albola
## 5314 McCrea Cellars
## 5315 Mi Terruño
## 5316 Nuna
## 5317 Ochoa
## 5318 Perrin & Fils
## 5319 Jenner
## 5320 Laurenz V.
## 5321 Liquid Farm
## 5322 Lucia
## 5323 Marqués de Cáceres
## 5324 Aquinas
## 5325 Campo Viejo
## 5326 Les Maîtres Vignerons de la Presqu'île de Saint-Tropez
## 5327 Markus Huber
## 5328 Maryhill
## 5329 Miraflores
## 5330 Morgan
## 5331 Ormilles
## 5332 Ravoire et Fils
## 5333 Tertulia
## 5334 Il Roncal
## 5335 Lyeth
## 5336 Stylo
## 5337 Argiolas
## 5338 Atalon
## 5339 Cantina Santadi
## 5340 Champ de Rêves
## 5341 Château Gassier
## 5342 Chateau La Calisse
## 5343 Château Réal Martin
## 5344 Chessman
## 5345 Conte d'Attimis-Maniago
## 5346 Conte d'Attimis-Maniago
## 5347 Foxen 7200
## 5348 Kurt Angerer
## 5349 Malat
## 5350 Michele Satta
## 5351 Nottingham Cellars
## 5352 Reaper
## 5353 Refugio Ranch
## 5354 Salomon-Undhof
## 5355 Seifried
## 5356 Sherwood Estate
## 5357 Sonoma-Cutrer
## 5358 Umathum
## 5359 Waterstone
## 5360 Allram
## 5361 Ashan
## 5362 Barba
## 5363 Flying Dreams
## 5364 Greenhough
## 5365 Hazlitt 1852 Vineyards
## 5366 Hollen Family Vineyards
## 5367 Giesen
## 5368 Groot Constantia
## 5369 Gualdo del Re
## 5370 Cambridge Road
## 5371 Cappella Sant'Andrea
## 5372 Castello della Sala
## 5373 Castello di Gabbiano
## 5374 Castillo De Feliciana
## 5375 Colle Spinello
## 5376 Commanderie de Peyrassol
## 5377 Seven Deadly Zins
## 5378 Truett Hurst
## 5379 Henri Bourgeois
## 5380 Hooker
## 5381 Lemos & Van Zeller
## 5382 Leonard Kreusch
## 5383 Alexander Valley Vineyards
## 5384 Alexander Valley Vineyards
## 5385 Alexander Valley Vineyards
## 5386 Alma Andina
## 5387 Bello Family Vineyards
## 5388 Brutocao
## 5389 Chavet Fils
## 5390 Arizona Stronghold
## 5391 Domaine Laurier
## 5392 Hartley-Ostini
## 5393 CrossKeys
## 5394 Poema
## 5395 Quinta das Carvalhas
## 5396 Quinta de Sant'Ana
## 5397 Rovisco Garcia
## 5398 San Simeon
## 5399 Tarara
## 5400 V. Sattui
## 5401 Valiano
## 5402 Villagrán
## 5403 Herdade da Gâmbia
## 5404 Ideology Cellars
## 5405 Kokomo
## 5406 Luis Cañas
## 5407 Aveleda
## 5408 Basilicus
## 5409 Björnson
## 5410 Bodega Chacra
## 5411 Bret Brothers
## 5412 Casa do Valle
## 5413 Casa Montes
## 5414 Casca Wines
## 5415 Claudio Alario
## 5416 Clos Venturi
## 5417 Danieli
## 5418 Diego Conterno
## 5419 Domaine Carrette
## 5420 Domaine Edmond Cornu
## 5421 Evans & Tate
## 5422 Fenestra
## 5423 Fullerton
## 5424 Gehricke
## 5425 Gian Piero Marrone
## 5426 TintoNegro
## 5427 Tortoise Creek
## 5428 Trenel Fils
## 5429 Troon
## 5430 Viña Alicia
## 5431 Willful
## 5432 Wines & Winemakers
## 5433 Z. Alexander Brown
## 5434 Zaca Mesa
## 5435 SignoSeis
## 5436 50 Harvests
## 5437 Trapiche
## 5438 Ventisquero
## 5439 Black Kite
## 5440 Bodega Noemía de Patagonia
## 5441 Labouré-Roi
## 5442 Le Colture
## 5443 Macari
## 5444 McFadden
## 5445 Morgan
## 5446 Ravoire et Fils
## 5447 Ricci Curbastro
## 5448 Rock Wall
## 5449 Speri
## 5450 Eugenio Collavini
## 5451 Fonseca
## 5452 Gary Farrell
## 5453 Virage
## 5454 Vista Alegre
## 5455 W. & J. Graham's
## 5456 Zardetto
## 5457 Bersi Serlini
## 5458 Fratelli Muratori
## 5459 Lantieri de Paratico
## 5460 Annefield Vineyards
## 5461 Besserat de Bellefon
## 5462 Natale Verga
## 5463 Justin
## 5464 Les Vignobles Gueissard
## 5465 Longoria
## 5466 Ludwig
## 5467 Marqués de Elciego
## 5468 Matetic
## 5469 Merriam
## 5470 Passion Vineyards
## 5471 Peters Family
## 5472 Pure Cru
## 5473 Rios de Chile
## 5474 Round Pond
## 5475 Saladini Pilastri
## 5476 San Lorenzo
## 5477 Silver Buckle
## 5478 Umani Ronchi
## 5479 Vistamar
## 5480 Willamette Valley Vineyards
## 5481 Wy'East Vineyards
## 5482 Wy'East Vineyards
## 5483 Zero One Vintners
## 5484 Broadway Vineyards
## 5485 Caliterra
## 5486 Captûre
## 5487 Château Léoube
## 5488 Domaine de la Sanglière
## 5489 Domaine Sainte-Marie
## 5490 Ecco Domani
## 5491 Grands Terroirs de France
## 5492 Tenute Silvio Nardi
## 5493 Unger
## 5494 Neumeister
## 5495 Pepper Bridge
## 5496 Sequum
## 5497 Sequum
## 5498 Tinhof
## 5499 Astrales
## 5500 Château Lilian Ladouys
## 5501 Duckhorn
## 5502 Fess Parker
## 5503 Giovanni Chiappini
## 5504 Arndorfer
## 5505 Jurtschitsch
## 5506 Clos du Marquis
## 5507 Duckhorn
## 5508 Eichinger
## 5509 Gamache
## 5510 Gruber Röschitz
## 5511 Hager Matthias
## 5512 Salvioni
## 5513 SignoSeis
## 5514 Stadlmann
## 5515 Ingrid Groiss
## 5516 Casas del Bosque
## 5517 Peltier
## 5518 Quinta do Cavalinho
## 5519 Santa Alicia
## 5520 Santa Luz
## 5521 Quinta do Cavalinho
## 5522 Tres Palacios
## 5523 Creación
## 5524 Don Bernardino
## 5525 Grati
## 5526 Pata Negra
## 5527 Cristiari
## 5528 Ripken
## 5529 Camelot
## 5530 Dominio del Viento
## 5531 Lomas del Valle
## 5532 François Lurton
## 5533 Alto Los Romeros
## 5534 Montes
## 5535 Zerran
## 5536 Estampa
## 5537 Gresser
## 5538 Insomnia
## 5539 Santa Alba
## 5540 Scratchpad
## 5541 Terrai
## 5542 Bodegas Riojanas
## 5543 Santa Ema
## 5544 Trencalòs
## 5545 Viñedos y Bodegas Pablo
## 5546 Loosen Bros.
## 5547 Mer Soleil
## 5548 Novy
## 5549 Novy
## 5550 Spice Route
## 5551 Tiefenbrunner
## 5552 Château Eugénie
## 5553 Château Jolys
## 5554 Château Ponzac
## 5555 Feudi di San Gregorio
## 5556 Gouguenheim Winery
## 5557 Henri Milan
## 5558 Illahe
## 5559 Jardin
## 5560 Jean-Luc Baldès
## 5561 Laurenz V.
## 5562 Lis Neris
## 5563 Lungarotti
## 5564 Martino
## 5565 McCay Cellars
## 5566 Nals Margreid
## 5567 Novy
## 5568 Peter Nicolay
## 5569 Agricola Querciabella
## 5570 Benvenuto de la Serna
## 5571 Cantina Cortaccia
## 5572 Longboard
## 5573 Jean-Luc Baldès
## 5574 Morgenhof
## 5575 Nals Margreid
## 5576 Kumeu River
## 5577 Michel Torino
## 5578 Fazi Battaglia
## 5579 Miner
## 5580 Monte del Frá
## 5581 Pillitteri
## 5582 Rosenblum
## 5583 Wagner
## 5584 Luigi Bosca
## 5585 Masottina
## 5586 Andretti
## 5587 Kaiken
## 5588 Kestrel
## 5589 Martin Ranch
## 5590 Aldegheri
## 5591 Andrew Will
## 5592 Cantina Terlano
## 5593 Girlan
## 5594 Carl Ehrhard
## 5595 Madrigal
## 5596 Matetic
## 5597 Montezovo
## 5598 Odfjell
## 5599 Pellegrini Vineyards
## 5600 Prinz Salm
## 5601 Rex Hill
## 5602 Rooster Hill
## 5603 Root:1
## 5604 Salvatore Principe
## 5605 Sartori
## 5606 Sheldrake Point
## 5607 Sparkling Pointe
## 5608 Stephen Ross
## 5609 Corte Lenguin
## 5610 Corte Sant' Alda
## 5611 Educated Guess
## 5612 Hermann J. Wiemer
## 5613 Hermann J. Wiemer
## 5614 Holman Ranch
## 5615 Viña Casablanca
## 5616 Wittmann
## 5617 Zanoni
## 5618 Arduini
## 5619 Chapel Hill
## 5620 Château de Fuissé
## 5621 Hidalgo
## 5622 Karly
## 5623 Zull
## 5624 Henschke
## 5625 Bouchard Père & Fils
## 5626 Cantina Giardino
## 5627 Schloss Gobelsburg
## 5628 Hidalgo
## 5629 Mastroberardino
## 5630 Nickel & Nickel
## 5631 Obsidian Ridge
## 5632 Gary Farrell
## 5633 Giuseppe Apicella
## 5634 Karly
## 5635 Librandi
## 5636 Longoria
## 5637 Louis Latour
## 5638 Apolloni
## 5639 Bonny Doon
## 5640 Chelsea Goldschmidt
## 5641 CVNE
## 5642 Feudi di San Gregorio
## 5643 Foppiano
## 5644 GMG Vinicola
## 5645 Hans Moser
## 5646 Oriol Rossell
## 5647 Retour
## 5648 Roux Père et Fils
## 5649 Steininger
## 5650 Tua Rita
## 5651 Tua Rita
## 5652 Türk
## 5653 Türk
## 5654 Wood Family Vineyards
## 5655 Airfield Estates
## 5656 Ancient Oak Cellars
## 5657 Broken Earth
## 5658 Township 7
## 5659 Balletto
## 5660 Château de Chatelard
## 5661 Cougar
## 5662 Donna Olimpia 1898
## 5663 Dusted Valley
## 5664 Ehlers Estate
## 5665 Foley
## 5666 Georges Duboeuf
## 5667 Gernot and Heike Heinrich
## 5668 Chateau de Manissy
## 5669 Murphy-Goode
## 5670 Naggiar
## 5671 Poggio al Tesoro
## 5672 Rainer Wess
## 5673 Robert Mondavi
## 5674 Ryan Cochrane
## 5675 Stift Klosterneuburg
## 5676 Telaya
## 5677 Thirty-Seven Wines
## 5678 Jax
## 5679 Milbrandt
## 5680 Milbrandt
## 5681 Milbrandt
## 5682 Neumeister
## 5683 Norbert Bauer
## 5684 Testarossa
## 5685 Angelo Negro & Figli
## 5686 Damilano
## 5687 Firefly Night
## 5688 Kunde
## 5689 Louis Barthélémy
## 5690 Mailly Grand Cru
## 5691 Nada Giuseppe
## 5692 Pioiero
## 5693 Riverbench
## 5694 Château de Roquebrune
## 5695 Château Potensac
## 5696 Citille di Sopra
## 5697 DaMa
## 5698 DaMa
## 5699 Gamache
## 5700 Amavi
## 5701 Bolsignano
## 5702 Bouchaine
## 5703 Bucher
## 5704 Johanneshof Reinisch
## 5705 Villadoria
## 5706 Reininger
## 5707 Reininger
## 5708 Syncline
## 5709 Tegernseerhof
## 5710 TeHo
## 5711 Jäger
## 5712 Kerloo
## 5713 Kirkland Signature
## 5714 La Poderina
## 5715 Le Macchiole
## 5716 Château Beaumont
## 5717 Château Clément-Pichon
## 5718 Château Fonréaud
## 5719 Château Lafite Rothschild
## 5720 Château Larose Perganson
## 5721 Château Montrose
## 5722 Abbazia di Novacella
## 5723 Bacigalupi
## 5724 Boatique
## 5725 Brooklyn West
## 5726 Bründlmayer
## 5727 Vietti
## 5728 Hearst Ranch
## 5729 Herzog
## 5730 Iron Horse
## 5731 J. Bookwalter
## 5732 Château de Brigue
## 5733 Collier Falls
## 5734 Davis Family
## 5735 Domaine de la Bégude
## 5736 Domaine de la Vallongue
## 5737 Domaines Ott
## 5738 Elvio Cogno
## 5739 Fallbrook
## 5740 Four Lanterns
## 5741 Frank Family
## 5742 Elena Walch
## 5743 Griesbauerhof
## 5744 Oak Farm
## 5745 Paraiso Vineyards
## 5746 The Dot
## 5747 Ravoire et Fils
## 5748 Replica
## 5749 Rôtie Cellars
## 5750 Salomon & Andrew
## 5751 L'Ecole No. 41
## 5752 Trefethen
## 5753 Lincourt
## 5754 Louis Latour
## 5755 Patz & Hall
## 5756 Avennia
## 5757 Boeger
## 5758 Rotta
## 5759 Balletto
## 5760 Bien Nacido
## 5761 Cebada
## 5762 Cramele Recas
## 5763 Davies
## 5764 Davies
## 5765 Domaine Barmès-Buecher
## 5766 Domaine Zind-Humbrecht
## 5767 Domaine Zind-Humbrecht
## 5768 Domaines Ott
## 5769 Errazuriz
## 5770 Fiddlehead
## 5771 Landmark
## 5772 Last Light
## 5773 Le Vigne
## 5774 Loring Wine Company
## 5775 Monte del Frà
## 5776 Monte Faustino
## 5777 Pieropan
## 5778 Quinta Cruz
## 5779 Masi
## 5780 Testarossa
## 5781 Raymond
## 5782 Le Petit Cochonnet
## 5783 L'original French Kiss
## 5784 Café du Midi
## 5785 Château Saint Baillon
## 5786 Voiturette
## 5787 Fat Gaucho
## 5788 Bodega Cuarto Dominio
## 5789 Maison de la Villette
## 5790 Belle Made For You
## 5791 Balo
## 5792 Bodegas Valdemar
## 5793 Castle Rock
## 5794 La Vieille Ferme
## 5795 Le Pépin
## 5796 Romantic
## 5797 Vermeil
## 5798 Café du Midi
## 5799 Arzuaga
## 5800 Figaro
## 5801 Region 1
## 5802 Belle Made For You
## 5803 Château de Saint Martin
## 5804 Housley's Century Oak
## 5805 L. Tramier & Fils
## 5806 Naggiar
## 5807 Patriarche Père et Fils
## 5808 Patriarche Père et Fils
## 5809 Tedeschi Family
## 5810 Bacalhôa Wines of Portugal
## 5811 Borges
## 5812 Nuiton-Beaunoy
## 5813 Quevedo
## 5814 Real Compañia de Vinos
## 5815 Quinta do Portal
## 5816 Domaine Chatelain
## 5817 Dominio de Eguren
## 5818 Bodega Catena Zapata
## 5819 Caves Transmontanas
## 5820 Epilogo
## 5821 Finca Flichman
## 5822 Santa Ana
## 5823 Aveleda
## 5824 Pittacum
## 5825 Tilia
## 5826 Manuel Olivier
## 5827 Caves Aliança
## 5828 Cave de Kientzheim-Kaysersberg
## 5829 Quinta Vale do Armo
## 5830 Bodega Atamisque
## 5831 Juan Gil
## 5832 Mr. Riggs
## 5833 Poças
## 5834 Quinta de Porrais
## 5835 Quinta do Pôpa
## 5836 Renwood
## 5837 Revello Fratelli
## 5838 Reyes
## 5839 Rodney Strong
## 5840 Russian Ridge
## 5841 San Simeon
## 5842 Tercero
## 5843 Valentina Cubi
## 5844 William Hill Estate
## 5845 Windy Canyon
## 5846 Andrew Rich
## 5847 Andrew Rich
## 5848 Beringer
## 5849 Black's Station
## 5850 Boas Quintas
## 5851 Borges
## 5852 Casa Santos Lima
## 5853 Cave Geisse
## 5854 Château Bourdieu
## 5855 Château de Cranne
## 5856 Château de Cranne
## 5857 Château de Lagarde
## 5858 Château du Cèdre
## 5859 Château Godard Bellevue
## 5860 Château Haut-Rian
## 5861 Château Landereau
## 5862 Tenuta Cavalier Pepe
## 5863 Teruzzi & Puthod
## 5864 Thomas George
## 5865 Tin Barn
## 5866 Triennes
## 5867 Vignerons des Terres Secrètes
## 5868 Wakefield
## 5869 Winter's Hill
## 5870 Highway 12
## 5871 Judd's Hill
## 5872 Keating
## 5873 Kenwood
## 5874 Kirkland Signature
## 5875 Labouré-Roi
## 5876 Maquis
## 5877 Marimar Estate
## 5878 Murphy-Goode
## 5879 Nicora
## 5880 Peter Mertes
## 5881 Paraduxx
## 5882 Dumas Station
## 5883 Ernest & Julio Gallo
## 5884 Florent Descombe
## 5885 Ghost Pines
## 5886 Giornata
## 5887 Gotas de Mar
## 5888 Goyette
## 5889 Hunt Cellars
## 5890 J Vineyards & Winery
## 5891 Dr. Volkmar
## 5892 VinEcol
## 5893 Origin
## 5894 Belle Vallée
## 5895 Foursight
## 5896 Trapiche
## 5897 Ambiente
## 5898 Azur
## 5899 Cline
## 5900 Airlie
## 5901 Bodega Vistandes
## 5902 Alpamanta
## 5903 2 Copas
## 5904 Espuela del Gaucho
## 5905 Além
## 5906 Bodega Carmine Granata
## 5907 Cruz Alta
## 5908 Ricardo Santos
## 5909 Gardel
## 5910 Alma del Sur
## 5911 Domaine Leflaive
## 5912 Domaine Leflaive
## 5913 Copain Wines
## 5914 Copain Wines
## 5915 Barker's Marque
## 5916 Hogue
## 5917 Jigar
## 5918 Judeka
## 5919 Lamoreaux Landing
## 5920 Maddalena
## 5921 Madrigal
## 5922 OS Winery
## 5923 Pondera
## 5924 Re Manfredi
## 5925 Rodney Strong
## 5926 Ross Andrew
## 5927 àMaurice
## 5928 Barnard Griffin
## 5929 Breathless
## 5930 Burnt Bridge
## 5931 Chateau d'Angludet
## 5932 Château de Cruzeau
## 5933 Château de la Cour
## 5934 Château Fourcas-Borie
## 5935 Château Frank
## 5936 Château Frank
## 5937 Château Haut Breton Larigaudière
## 5938 Château Haut-Gelineau
## 5939 Château Lanbersac
## 5940 Château Lapinesse
## 5941 Château Larrivet Haut-Brion
## 5942 Château le Calvaire
## 5943 Château Marquis de Terme
## 5944 Château Saint-Corbian
## 5945 Terra Valentine
## 5946 3Fools
## 5947 Barton & Guestier
## 5948 Byron
## 5949 Domaine de Pellehaut
## 5950 Las Lomas
## 5951 La Playa
## 5952 Tamaya
## 5953 Ocone
## 5954 Taj
## 5955 Little Stone Vineyard
## 5956 Barton & Guestier
## 5957 Barton & Guestier
## 5958 Château Bellevue
## 5959 Château Denisiane
## 5960 Elios
## 5961 flipflop
## 5962 Grotta del Sole
## 5963 Oberon
## 5964 Priest Ranch
## 5965 Somerston
## 5966 Terredora
## 5967 Bigi
## 5968 Domaines Schlumberger
## 5969 Faiveley
## 5970 Feudo di Gulfa
## 5971 Feudo Maccari
## 5972 Feudo Principi di Butera
## 5973 Firriato
## 5974 Noble Vines
## 5975 Passopisciaro
## 5976 Peltier
## 5977 Pope Valley Winery
## 5978 Kuentz-Bas
## 5979 Lismore Range
## 5980 Lomas del Valle
## 5981 MacPhail
## 5982 Marchesi De Gregorio
## 5983 Viña Casablanca
## 5984 Hubert Meyer
## 5985 Bogle
## 5986 Cantine Rallo
## 5987 Castellucci Miano
## 5988 River Road
## 5989 Tenute Girolamo
## 5990 a-non-ah-mus
## 5991 Avia
## 5992 Barone Sergio
## 5993 Cantine Valenti
## 5994 Celler Bàrbara Forés
## 5995 Chanson Père et Fils
## 5996 Château de Mirande
## 5997 Château Vartely
## 5998 Iron Horse
## 5999 La Folia Winery
## 6000 Le Fraghe
## 6001 MacMurray Estate Vineyards
## 6002 Marietta Cellars
## 6003 Masi
## 6004 Michael David
## 6005 Mira
## 6006 Narbona
## 6007 Newton
## 6008 Offley
## 6009 Ouled Thaleb
## 6010 Podere Forte
## 6011 Point & Line
## 6012 Quivira
## 6013 Russian Ridge
## 6014 Sandeman
## 6015 Sokol Blosser
## 6016 Speri
## 6017 Spicy Vines
## 6018 Stolpman
## 6019 Tamber Bey
## 6020 Tantara
## 6021 Tenute Lunelli
## 6022 Tres Palacios
## 6023 Truchard
## 6024 Arrowood
## 6025 Aveleda
## 6026 Bel Vino
## 6027 Bitner
## 6028 Bollinger
## 6029 Torii Mor
## 6030 Vranken
## 6031 Erath
## 6032 Evesham Wood
## 6033 De Saint Gall
## 6034 Iron Horse
## 6035 Bear Creek
## 6036 Heritage Road
## 6037 Kenwood
## 6038 Robert Hunter
## 6039 Roederer Estate
## 6040 G. H. Mumm
## 6041 Stonecroft
## 6042 Andrew Rich
## 6043 Argyle
## 6044 Handley
## 6045 Calvet
## 6046 Tualatin Estate
## 6047 Cristom
## 6048 Girardet
## 6049 Handley
## 6050 Heritage Road
## 6051 Gloria Ferrer
## 6052 Cooper Mountain
## 6053 Fetzer
## 6054 Elk Cove
## 6055 Adelsheim
## 6056 Moët & Chandon
## 6057 Valley of the Moon
## 6058 Principe Corsini
## 6059 Producta Vignobles
## 6060 Raphael
## 6061 Recanati
## 6062 Abeja
## 6063 Ancestry
## 6064 Bedell
## 6065 Bindi Sergardi
## 6066 Bodega San Pedro Regalado
## 6067 Borgo Scopeto
## 6068 Cantalici L'Antica Fornace di Ridolfo
## 6069 Castellare di Castellina
## 6070 Castello di Gabbiano
## 6071 Cedarville Vineyard
## 6072 Charles Ellner
## 6073 Slingshot
## 6074 Tablas Creek
## 6075 Tamarack Cellars
## 6076 Tenuta di Arceno
## 6077 Terras Gauda
## 6078 Toscolo
## 6079 Clayhouse
## 6080 Direder
## 6081 El Coto
## 6082 Fattoria Il Lago
## 6083 Fattoria Valacchi
## 6084 Forgeron
## 6085 Foundry Vineyards
## 6086 Golan Heights Winery
## 6087 Golan Heights Winery
## 6088 Ruby Hill Winery
## 6089 Rule of Three
## 6090 Sonoma River
## 6091 Terra Valentine
## 6092 Tilia
## 6093 Tilia
## 6094 Watermill
## 6095 V. Sattui
## 6096 Vigin
## 6097 Viña Cobos
## 6098 Antucura
## 6099 Arbéta
## 6100 Aveleda
## 6101 Bouchard Père & Fils
## 6102 Cantina Santadi
## 6103 Casca Wines
## 6104 Casca Wines
## 6105 Casca Wines
## 6106 Château de Fuissé
## 6107 Cooperativa Agricola de Santo Isidro de Pegoes
## 6108 Domaine Laroche
## 6109 Domaines Devillard
## 6110 Falua
## 6111 Falua
## 6112 Frank Family
## 6113 Giuseppe Gabbas
## 6114 V. Sattui
## 6115 Vino z Czech
## 6116 Vins des Personnets
## 6117 Nicholson Ranch
## 6118 Wedell Cellars
## 6119 Winderlea
## 6120 12 Linajes
## 6121 Anier
## 6122 Ceretto
## 6123 Psagot
## 6124 18401 Cellars
## 6125 Angela Estate
## 6126 Archery Summit
## 6127 Archery Summit
## 6128 Arista
## 6129 Ascension Cellars
## 6130 Aubry
## 6131 Baron-Fuenté
## 6132 Bethel Heights
## 6133 Brave & Maiden
## 6134 Cartuxa
## 6135 Paolo Manzone
## 6136 William Hill Estate
## 6137 Domaine Chenevières
## 6138 Domaine des Baumard
## 6139 Francesco Rinaldi
## 6140 Gary Farrell
## 6141 Giovanni Rosso
## 6142 Oso Libre
## 6143 Pali
## 6144 Panther Creek
## 6145 Paolo Scavino
## 6146 Proulx
## 6147 Raymond
## 6148 Artezin
## 6149 Château d'Esclans
## 6150 Château Lynch-Bages
## 6151 Dashwood
## 6152 Erath
## 6153 Pascal Doquet
## 6154 Saint Clair
## 6155 Taltarni
## 6156 Antiyal
## 6157 Mas des Bressades
## 6158 Frank Family
## 6159 Hobo
## 6160 Le Colture
## 6161 Brassfield
## 6162 Château du Seuil
## 6163 Château Tour de Mirambeau
## 6164 Cinnabar
## 6165 Boedecker Cellars
## 6166 Château de Cruzeau
## 6167 Daedalus Cellars
## 6168 Rimauresq
## 6169 Jacquart
## 6170 Louis Barthélémy
## 6171 Spicy Vines
## 6172 The Conqueror
## 6173 T'Jara
## 6174 Urbina
## 6175 Villa di Corlo
## 6176 Villa di Corlo
## 6177 Viña Mayor
## 6178 Wölffer
## 6179 Woodbridge by Robert Mondavi
## 6180 L. Tramier & Fils
## 6181 Le Grand Noir
## 6182 Les Domaines Auriol
## 6183 Lorenzi Estate
## 6184 Mar de Envero
## 6185 Marqués de la Concordia
## 6186 Martin Ranch
## 6187 Martinsancho
## 6188 Medici Ermete
## 6189 Midnight
## 6190 Millbrook
## 6191 Muddy Boot
## 6192 Nada Fiorenzo
## 6193 :Nota Bene
## 6194 Pascal Rollet
## 6195 Pascal Rollet
## 6196 Pico Maccario
## 6197 Domaine Sangouard-Guyot
## 6198 Finn Hill
## 6199 Fulkerson
## 6200 Glenora
## 6201 DiamAndes
## 6202 Grande River
## 6203 Herdade de São Miguel
## 6204 La Chablisienne
## 6205 Lyeth
## 6206 Mendel
## 6207 François Lurton
## 6208 Aveleda
## 6209 Canyon Wind
## 6210 Casa de Vila Verde
## 6211 Sno Road
## 6212 Summit Lake
## 6213 Tarara
## 6214 McFadden
## 6215 J. Moreau & Fils
## 6216 La Chablisienne
## 6217 V. Sattui
## 6218 Vignerons des Terres Secrètes
## 6219 Weisinger
## 6220 Wines & Winemakers
## 6221 Grande River
## 6222 Coeur de Terre
## 6223 Compilation
## 6224 Cortes de Cima
## 6225 Custard
## 6226 Dão Sul
## 6227 DFJ Vinhos
## 6228 DFJ Vinhos
## 6229 DFJ Vinhos
## 6230 Domaine Michel
## 6231 Baron Widmann
## 6232 Cantina del Castello
## 6233 Cantina Produttori Cortaccia
## 6234 Casa da Passarella
## 6235 Clos du Val
## 6236 Colene Clemens
## 6237 Consilience
## 6238 Daou
## 6239 Domaine de la Pepière
## 6240 Domaine de l'Idylle
## 6241 Domaine du Haut Bourg
## 6242 Domdechant Werner
## 6243 Donkey & Goat
## 6244 Elena Walch
## 6245 Flaherty
## 6246 Fritz Haag
## 6247 Ventisquero
## 6248 VML
## 6249 WildAire
## 6250 Wines & Winemakers
## 6251 Ottella
## 6252 Perescuma
## 6253 Pratello
## 6254 Quinta da Alorna
## 6255 Quinta do Monte d'Oiro
## 6256 Quinta do Portal
## 6257 Ravenswood
## 6258 Renteria
## 6259 Seghesio
## 6260 St. Pauls
## 6261 Doubleback
## 6262 Nickel & Nickel
## 6263 Leonetti Cellar
## 6264 Lynmar
## 6265 Von Strasser
## 6266 Von Strasser
## 6267 Sirius
## 6268 Stottle
## 6269 Dr. Loosen & J. Christopher
## 6270 Gary Farrell
## 6271 Silverado
## 6272 Captûre
## 6273 Markus Molitor
## 6274 Leonetti Cellar
## 6275 King Estate
## 6276 Lynmar
## 6277 Sequum
## 6278 Calera
## 6279 The Eyrie Vineyards
## 6280 Von Strasser
## 6281 Lynmar
## 6282 McCrea Cellars
## 6283 Failla
## 6284 Gary Farrell
## 6285 Captûre
## 6286 Williams Selyem
## 6287 Chateau Chevalier
## 6288 Acordeón
## 6289 Alexander Valley Vineyards
## 6290 Château d'Arlay
## 6291 DFJ Vinhos
## 6292 Drouet Frères
## 6293 Miracle Valley
## 6294 Prince Michel
## 6295 Raymond
## 6296 Sottano
## 6297 Thacher
## 6298 Tiago Teles
## 6299 Tower 15
## 6300 Truett Hurst
## 6301 Montpellier
## 6302 Natale Verga
## 6303 Marquis de la Tour
## 6304 Quinta da Maritávora
## 6305 Remy-Pannier
## 6306 Road i Red
## 6307 Sobon Estate
## 6308 Anemoi
## 6309 Colle Bereto
## 6310 Vignaioli del Morellino di Scansano
## 6311 Zolo
## 6312 Cupcake
## 6313 Fenestra
## 6314 Milliaire
## 6315 Natale Verga
## 6316 Andreola
## 6317 Bouvet-Ladubay
## 6318 Les Frères Couillaud
## 6319 Siduri
## 6320 Ashan
## 6321 Les Frères Couillaud
## 6322 Nino Franco
## 6323 Walla Walla Vintners
## 6324 Carrick
## 6325 Cave de Cleebourg
## 6326 Cave du Roi Dagobert
## 6327 Clay Pigeon
## 6328 DanCin
## 6329 De Toren
## 6330 De Toren
## 6331 Decroux
## 6332 Domaine Fernand Engel
## 6333 Forrest
## 6334 Framingham
## 6335 Henriet-Bazin
## 6336 Jean de la Fontaine
## 6337 Joseph Cattin
## 6338 La Tordera
## 6339 Lombard et Cie
## 6340 Noble Vines
## 6341 Paix Sur Terre
## 6342 Paskett
## 6343 Raymond
## 6344 Rioja Vega
## 6345 Roark Wine Co.
## 6346 Easton
## 6347 Felten Cellars
## 6348 Philipp Kuhn
## 6349 Quevedo
## 6350 Rasa
## 6351 Sojourn
## 6352 Tenuta Montanello
## 6353 Trisaetum
## 6354 William Fèvre
## 6355 Valdez
## 6356 Vigne Surrau
## 6357 Luigi Oddero & Figli
## 6358 William Fèvre
## 6359 Orfila
## 6360 Penfolds
## 6361 Pio Cesare
## 6362 Sequum
## 6363 Albert Bichot
## 6364 Albert Bichot
## 6365 Albino Rocca
## 6366 Baxter
## 6367 Beauregard
## 6368 Bodega Renacer
## 6369 Castello di Neive
## 6370 Cavalier Bartolomeo
## 6371 Delmas
## 6372 Domaine Laroche
## 6373 Jean-Marc Brocard
## 6374 John Duval Wines
## 6375 Duorum
## 6376 Famiglia Cielo
## 6377 Fleur Du Cap
## 6378 Georges Vigouroux
## 6379 Hawk Watch Winery
## 6380 Tikal
## 6381 Tussock Jumper
## 6382 Kitchen Sink
## 6383 Kitchen Sink
## 6384 Kuleto Estate
## 6385 Ramos-Pinto
## 6386 Castle Rock
## 6387 Companhia das Quintas
## 6388 De Stefani
## 6389 Domaine de Grange Neuve
## 6390 Dona Maria-Júlio Bastos
## 6391 Falua
## 6392 Georges Vigouroux
## 6393 Ironstone
## 6394 Jamesport
## 6395 Mauricio Lorca
## 6396 Ngumu
## 6397 Bodega Las Cañitas
## 6398 Valdo
## 6399 Zorzal
## 6400 Adega Cooperativa de Borba
## 6401 Adega de Cantanhede
## 6402 Angeline
## 6403 Greenwood Ridge
## 6404 Indaba
## 6405 Caparzo
## 6406 Château de Pennautier
## 6407 Corte Cariano
## 6408 Gernot and Heike Heinrich
## 6409 Hafner
## 6410 Olivini
## 6411 Olson Ogden
## 6412 Sausal
## 6413 Stone Paddock
## 6414 Blue Cove
## 6415 Cairnbrae
## 6416 Coniglio
## 6417 Corvo
## 6418 Domaines Barons de Rothschild (Lafite)
## 6419 Fairvalley
## 6420 Fleur Du Cap
## 6421 Fortant
## 6422 Quivira
## 6423 Silver Lake
## 6424 Château Trotanoy
## 6425 Mocali
## 6426 Château Montrose
## 6427 Bollinger
## 6428 Château Ducru Beaucaillou
## 6429 Domaine de Chevalier
## 6430 Le Dôme
## 6431 Château Smith Haut Lafitte
## 6432 B Cellars
## 6433 B Cellars
## 6434 Château Pape Clément
## 6435 Château Cos d'Estournel
## 6436 Clos du Marquis
## 6437 Il Poggione
## 6438 Numanthia
## 6439 Larmandier-Bernier
## 6440 Castello Banfi
## 6441 Château Bélair-Monange
## 6442 Château Haut-Bailly
## 6443 Château la Fleur-Pétrus
## 6444 Domaine de Chevalier
## 6445 Vieux Château Mazerat
## 6446 Castello Banfi
## 6447 Château Canon
## 6448 Les Astéries
## 6449 Stone The Crows
## 6450 Tarlant
## 6451 Uccelliera
## 6452 Brian Carter Cellars
## 6453 Villa Spinosa
## 6454 Pascal Bouchard
## 6455 Punch
## 6456 Sleight of Hand
## 6457 Sleight of Hand
## 6458 Sleight of Hand
## 6459 Del Dotto
## 6460 Domaine Heresztyn
## 6461 Domaine Vincent Girardin
## 6462 Efeste
## 6463 Efeste
## 6464 Fabiano
## 6465 D.G. Viticultors
## 6466 Inniskillin
## 6467 Le Salette
## 6468 Mark Ryan
## 6469 Joseph Drouhin
## 6470 Latium di Morini
## 6471 Louis Latour
## 6472 Rosenblum
## 6473 Rubinelli Vajol
## 6474 Sleight of Hand
## 6475 Soos Creek
## 6476 Alpha Omega
## 6477 Avennia
## 6478 Bailly-Lapierre
## 6479 Brunelli
## 6480 Del Bondio
## 6481 Parras Wines
## 6482 Lavradores de Feitoria
## 6483 Altocedro
## 6484 Wetzel Estate
## 6485 Montefrasco
## 6486 Château Bianca
## 6487 Quinta do Romeu
## 6488 Sonoma Collection
## 6489 Zerran
## 6490 Wetzel Estate
## 6491 Meeker
## 6492 Altos de Cristimil
## 6493 Marques Escriba
## 6494 Casa Montes
## 6495 Del Rio
## 6496 Oak Knoll
## 6497 Bodegas Lozano
## 6498 Il Chiosso
## 6499 Marqués de Vargas
## 6500 Pigro
## 6501 Quara
## 6502 Roncão
## 6503 Del Rio
## 6504 Quinta do Romeu
## 6505 Haarth
## 6506 Hacienda del Carche
## 6507 Trencalòs
## 6508 Josep Grau Viticultor
## 6509 Via Revolucionaria
## 6510 Altos de Torona
## 6511 Domaine Patrick Javillier
## 6512 Finca Vieja
## 6513 Jeunesse
## 6514 Lupé-Cholet
## 6515 2 Lads
## 6516 Brys
## 6517 Silver Thread
## 6518 Mount Pleasant Winery
## 6519 Domaine L. Chatelain
## 6520 L. Tramier & Fils
## 6521 Louis Jadot
## 6522 André Guichot
## 6523 Vivác Winery
## 6524 Gladium
## 6525 Mount Pleasant Winery
## 6526 Mount Pleasant Winery
## 6527 Three Fox
## 6528 Truro
## 6529 Santa Quiteria
## 6530 Bodegas Navarro López
## 6531 Vivác Winery
## 6532 Wine Spots
## 6533 Jaume Serra
## 6534 Lost Angel
## 6535 Peltier
## 6536 Peltier
## 6537 Pierre André
## 6538 Domaine Verret et Fils
## 6539 Georges Duboeuf
## 6540 Debonné
## 6541 Middle Sister
## 6542 Quintay
## 6543 14 Hands
## 6544 Santa Alba
## 6545 Sarah's Vineyard
## 6546 St. Francis
## 6547 Thirsty Owl Wine Company
## 6548 Flying Leap
## 6549 Viña Casablanca
## 6550 Ascension Cellars
## 6551 Barnstormer
## 6552 Clos du Lac
## 6553 Falernia
## 6554 Viña La Fortuna
## 6555 Vistamar
## 6556 Vistamar
## 6557 Morandé
## 6558 Ripken
## 6559 Sierra Batuco
## 6560 Adirondack Winery
## 6561 Bedell
## 6562 Bowers Harbor
## 6563 Concha y Toro
## 6564 Haak
## 6565 Indomita
## 6566 Intipalka
## 6567 Lobster Reef
## 6568 Messina Hof
## 6569 Millaman
## 6570 La Chablisienne
## 6571 Lookout Ridge
## 6572 Olivier Leflaive
## 6573 Xavier Monnot
## 6574 Domaine Leflaive
## 6575 Fielding Hills
## 6576 Royal Tokaji
## 6577 Domaine Laroche
## 6578 Domaine Leflaive
## 6579 Sheridan Vineyard
## 6580 Whitehall Lane
## 6581 Woodward Canyon
## 6582 Dutton-Goldfield
## 6583 Chanson Père et Fils
## 6584 Joseph Swan Vineyards
## 6585 Lost Canyon
## 6586 Mark Ryan
## 6587 Olivier Leflaive
## 6588 Roberts & Rogers
## 6589 Quivet Cellars
## 6590 The Foundry
## 6591 Villa Cerna
## 6592 Williams Selyem
## 6593 Gagliole
## 6594 Guilbaud Frères
## 6595 Cameron Hughes
## 6596 Casa alle Vacche
## 6597 Castello Vicchiomaggio
## 6598 D'Argenzio
## 6599 Domaine du Clos du Fief
## 6600 Domaine Philippe Delesvaux
## 6601 Georges Duboeuf
## 6602 Vagnoni
## 6603 Valle Frio
## 6604 Villa Poggio Salvi
## 6605 Williams Selyem
## 6606 La Playa
## 6607 Le Solive
## 6608 Mount Nelson
## 6609 Remy-Pannier
## 6610 Remy-Pannier
## 6611 Robertson Winery
## 6612 Sbragia
## 6613 Serdonis
## 6614 Seven Terraces
## 6615 Shark Trust
## 6616 Kellerei Kaltern Caldaro
## 6617 Janzen
## 6618 Jean-Luc and Paul Aegerter
## 6619 Kendall-Jackson
## 6620 Koenig Vineyards
## 6621 La Tordera
## 6622 Le P'tit Paysan
## 6623 Luis Duarte
## 6624 Monte delle Vigne
## 6625 Pfendler
## 6626 Podere Guado al Melo
## 6627 Querciavalle
## 6628 Season
## 6629 Stonestreet
## 6630 Stonestreet
## 6631 Storyteller
## 6632 Suavia
## 6633 Sutcliffe
## 6634 Sutcliffe
## 6635 TintoNegro
## 6636 Altavins
## 6637 Tenuta Olim Bauda
## 6638 Husch
## 6639 Bortolotti
## 6640 Cava Aragon
## 6641 Chiarello Family Vineyards
## 6642 Coppo
## 6643 Dutton Estate
## 6644 Firestone
## 6645 B.R. Cohn
## 6646 Baglio del Cristo di Campobello
## 6647 Castello Banfi
## 6648 Gunter Triebaumer
## 6649 Nugan Family Estates
## 6650 Pegasus Bay
## 6651 Ruffino
## 6652 Schug
## 6653 Simonnet-Febvre
## 6654 Tasca d'Almerita
## 6655 Tenuta Rapitalà
## 6656 Hopper Creek
## 6657 Viu Manent
## 6658 David Arthur
## 6659 Domaine de la Mordorée
## 6660 Domaine Faiveley
## 6661 Graffigna
## 6662 Kaiken
## 6663 Sticks
## 6664 Te Awa
## 6665 Maison Jessiaume
## 6666 Padilla Erickson
## 6667 Santa Barbara Winery
## 6668 Bouchard Père & Fils
## 6669 Force Majeure
## 6670 Sanguis
## 6671 Sanguis
## 6672 Sanguis
## 6673 Sparkman
## 6674 Sula
## 6675 Barons
## 6676 Côtes de Ciel
## 6677 Double Canyon
## 6678 Poças
## 6679 Domaine Ehrhart
## 6680 Gaja
## 6681 Quintessa
## 6682 San Simeon
## 6683 Still Waters
## 6684 Viberti
## 6685 Foxen
## 6686 Domaine Zind-Humbrecht
## 6687 Dutton-Goldfield
## 6688 Côtes de Ciel
## 6689 Diamond Creek
## 6690 Poderi Colla
## 6691 Red Car
## 6692 René Muré
## 6693 Rizzi
## 6694 Robert Biale
## 6695 Sottimano
## 6696 Trimbach
## 6697 La Braccesca
## 6698 La Crema
## 6699 La Purísima
## 6700 WesMar
## 6701 Wiston Estate Winery
## 6702 Mt. Brave
## 6703 Northstar
## 6704 Onesta
## 6705 Palmina
## 6706 Artadi
## 6707 Barrister
## 6708 Brovia
## 6709 Bucher
## 6710 Casa Donoso
## 6711 Château d'Or et de Gueules
## 6712 Château Phélan-Ségur
## 6713 Covington
## 6714 Deltetto
## 6715 Domaine de la Petite Cassagne
## 6716 Domaine du Haut Bourg
## 6717 Duemani
## 6718 Dunham
## 6719 Hermann J. Wiemer
## 6720 Judd's Hill
## 6721 Lawrelin
## 6722 Madrigal
## 6723 Marimar Estate
## 6724 Milbrandt
## 6725 Morgan
## 6726 Nacido del Quórum
## 6727 Tre Monti
## 6728 Domaine Chandon de Briailles
## 6729 Gorman
## 6730 Iron Horse
## 6731 Joseph Drouhin
## 6732 Joseph Drouhin
## 6733 Coquelicot
## 6734 Domaine des Comtes Lafon
## 6735 Domaine Henri Gouges
## 6736 Domaine Parent
## 6737 Emmerich Knoll
## 6738 Abeja
## 6739 Atlas Peak
## 6740 Blue Rock
## 6741 Roar
## 6742 La Poderina
## 6743 Robert Craig
## 6744 Domaine de Courcel
## 6745 Henri de Villamont
## 6746 Château Saint-Pierre
## 6747 DaMa
## 6748 De Loach
## 6749 Dry Creek Vineyard
## 6750 Dutton Estate
## 6751 Fattoria La Lecciaia
## 6752 Forstreiter
## 6753 François Lurton
## 6754 Giovanni Chiappini
## 6755 HandCraft
## 6756 Kessler-Haak
## 6757 Kurt Angerer
## 6758 La Collina dei Lecci
## 6759 Pacific Rim
## 6760 Poggio Antico
## 6761 Sattlerhof
## 6762 Schwarzböck
## 6763 Stadlmann
## 6764 Tinhof
## 6765 Bernhard Ott
## 6766 Wölffer
## 6767 ZaHa
## 6768 Hubert Weber
## 6769 Val do Sosego
## 6770 Canalicchio Franco Pacenti
## 6771 Caparzo
## 6772 Château Andron Blanquet
## 6773 Château Charmail
## 6774 Château Grand Bertin de Saint Clair
## 6775 Château la Patache
## 6776 Château Lestage Simon
## 6777 Louis Métaireau
## 6778 Ponzi
## 6779 Spier
## 6780 Ninquén
## 6781 Dancing Coyote
## 6782 Georges Vigouroux
## 6783 Chamonix
## 6784 Hamilton Russell
## 6785 Bastianich
## 6786 Clos Triguedina
## 6787 Oak Grove
## 6788 Pago de los Capellanes
## 6789 Phelps Creek
## 6790 Producteurs Plaimont
## 6791 Le Riche
## 6792 Winzer Krems
## 6793 Guardian Peak
## 6794 Black Rock
## 6795 Bodegas Vidal Soblechero
## 6796 Lisini
## 6797 Marqués de la Concordia
## 6798 Nottingham Cellars
## 6799 Pieve Santa Restituta
## 6800 Château Teyssier
## 6801 Cuda Ridge Wines
## 6802 Fattoria La Lecciaia
## 6803 Franciscan
## 6804 Hawley
## 6805 Robertson Winery
## 6806 San Filippo di Giannelli
## 6807 Smashberry
## 6808 Tarlant
## 6809 Terre Nere di Campigli - Vallone
## 6810 Trapiche
## 6811 3 Horse Ranch Vineyards
## 6812 Baron De Ley
## 6813 Bodega Otto Bestué
## 6814 Château Baracan
## 6815 Château Carignan
## 6816 Château Côte Montpezat
## 6817 Château la Croix Saint-Pierre
## 6818 Château Suau
## 6819 PasoPort
## 6820 Peter Cellars
## 6821 Ridolfi
## 6822 Sawtooth
## 6823 Seagrape
## 6824 Le Chiuse
## 6825 Londer
## 6826 Montevannos
## 6827 Pannier
## 6828 Andeluna
## 6829 Avanthia
## 6830 Casanuova delle Cerbaie
## 6831 Casato1
## 6832 Castiglion del Bosco
## 6833 Cava d'Onice
## 6834 Viñas del Cenit
## 6835 Yann Alexandre
## 6836 Reyneke
## 6837 Château Bouscaut
## 6838 Château Lalande-Borie
## 6839 Château Potensac
## 6840 Château Suau
## 6841 Domaine Chandon
## 6842 Fossacolle
## 6843 Gianni Brunelli
## 6844 Abbadia Ardenga
## 6845 Altesino
## 6846 Anthony Road
## 6847 Bodega Norton
## 6848 Bonacchi
## 6849 Castello Banfi
## 6850 Château Bouscaut
## 6851 Château Manon la Lagune
## 6852 Il Marroneto
## 6853 Keller Estate
## 6854 Baron Albert
## 6855 Bellenda
## 6856 Bortolomiol
## 6857 Bressia
## 6858 Buttonwood
## 6859 Viñas del Cenit
## 6860 Terre di San Venanzio Fortunato
## 6861 Canard-Duchêne
## 6862 Cave de Turckheim
## 6863 Cave du Roi Dagobert
## 6864 Cave Spring
## 6865 Cinnabar
## 6866 Colomé
## 6867 Dr. Leimbrock
## 6868 Emile Leclère
## 6869 Finca Flichman
## 6870 Fuchs und Hase
## 6871 Goose Bay
## 6872 Guerrieri Rizzardi
## 6873 Henriet-Bazin
## 6874 Inurrieta
## 6875 Le Colture
## 6876 Legras & Haas
## 6877 Leonard Kreusch
## 6878 Misty Cove
## 6879 St. Innocent
## 6880 Stephen Ross
## 6881 Studert-Prüm
## 6882 Tercero
## 6883 Adami
## 6884 Cantina Cortaccia
## 6885 Ca'Ronesca
## 6886 Ca'Ronesca
## 6887 Castello di Buttrio
## 6888 Castello di Buttrio
## 6889 Mogollon
## 6890 Von Der Leyen
## 6891 Griffin Creek
## 6892 Griffin Creek
## 6893 Dorigo
## 6894 Erste Neue
## 6895 Fiegl
## 6896 Fruscalzo
## 6897 Fullerton
## 6898 Gigante
## 6899 Gooseneck
## 6900 Domaine Le Billoud
## 6901 Meran
## 6902 Mezzacorona
## 6903 Mezzacorona
## 6904 Michael David
## 6905 Monteviejo
## 6906 Nathaniel Rose
## 6907 Petrucco
## 6908 Pflücken
## 6909 Rui Roboredo Madeira
## 6910 Salentein
## 6911 Kris
## 6912 Viu Manent
## 6913 Wines & Winemakers
## 6914 Dion
## 6915 Domaine de l'Ecu
## 6916 Flowers
## 6917 Genium Celler
## 6918 Gini
## 6919 Amalie Robert
## 6920 Au Bon Climat
## 6921 Aveleda
## 6922 Bonnet-Huteau
## 6923 Brewer-Clifton
## 6924 Center of Effort
## 6925 Les Belles Collines
## 6926 Wrath
## 6927 Merry Edwards
## 6928 Paul Hobbs
## 6929 Quinta de Foz de Arouce
## 6930 Herdade do Esporão
## 6931 J. Christopher
## 6932 Maximin Grünhäuser
## 6933 Quinta da Rede
## 6934 Quinta Nova de Nossa Senhora do Carmo
## 6935 Ad Vivum
## 6936 Chanin
## 6937 Russiz Superiore
## 6938 Senses
## 6939 Wine & Soul
## 6940 Wrath
## 6941 Herdade das Servas
## 6942 Henschke
## 6943 Brampton
## 6944 Château de Bel-Air
## 6945 Mitchelton
## 6946 Müller-Catoir
## 6947 Pfeffingen
## 6948 Pfeffingen
## 6949 Rietvallei Estate Wine
## 6950 Robert Karl
## 6951 Sesti
## 6952 Podere Paganico
## 6953 J.L. Wolf
## 6954 Lustau
## 6955 :Nota Bene
## 6956 Ökonomierat Rebholz
## 6957 Fitz-Ritter
## 6958 Geh. Rat Dr. von Bassermann-Jordan
## 6959 Château Franc-Cardinal
## 6960 Château Haut Beyzac
## 6961 Vèscine
## 6962 Quinta de Paços
## 6963 Reyes
## 6964 Santi
## 6965 Scotto Family Cellars
## 6966 Séamus Wines
## 6967 Tenuta Casaletti
## 6968 Uphill Vineyards
## 6969 Veramar
## 6970 Viñedo de los Vientos
## 6971 Vini
## 6972 Woodbridge by Robert Mondavi
## 6973 Adega Vila Real
## 6974 Agustinos
## 6975 Arbor Bench Vineyards
## 6976 Aveleda
## 6977 Belle Ambiance
## 6978 Bogle
## 6979 Château Gardut Haut Cluzeau
## 6980 Château La Fleur Ribeyrolles
## 6981 Château Larrivaux
## 6982 Chilensis
## 6983 Clairault
## 6984 Delibori
## 6985 DFJ Vinhos
## 6986 Feist
## 6987 Hardys
## 6988 Jidvei
## 6989 Karah Estate
## 6990 Les Rocailles
## 6991 Les Rocailles
## 6992 Brander
## 6993 Haka by Labyrinth
## 6994 Krutz
## 6995 Monchiero Carbone
## 6996 Montes
## 6997 Naggiar
## 6998 Batič
## 6999 Batič
## 7000 Borgognot
## 7001 Ca' del Baio
## 7002 Charles Sparr
## 7003 Château Henri Bonnaud
## 7004 Château la Coste
## 7005 Château Lagrave
## 7006 Château le Moulin d'Ulysse
## 7007 Domaine Gérard Neumeyer
## 7008 Elvio Cogno
## 7009 Wise Villa
## 7010 Broken Earth
## 7011 Château Terrasson
## 7012 Cleto Chiarli
## 7013 Concha y Toro
## 7014 Caves Aliança
## 7015 Château de Palayson
## 7016 Château des Matards
## 7017 Columbia Winery
## 7018 Comartin
## 7019 Cooper-Garrod
## 7020 Dunham
## 7021 Hugel
## 7022 Domaine Zind-Humbrecht
## 7023 Hobo
## 7024 La Montina
## 7025 La Valle
## 7026 Valli
## 7027 William Harrison
## 7028 Brion
## 7029 Craggy Range
## 7030 Peju
## 7031 William Harrison
## 7032 Barnett
## 7033 Bellavista
## 7034 Brittan Vineyards
## 7035 Château Coutet
## 7036 Teso La Monja
## 7037 Trinity Hill
## 7038 Kendall-Jackson
## 7039 Merry Edwards
## 7040 Miraflores
## 7041 Hobo
## 7042 Ken Wright
## 7043 Markus Molitor
## 7044 Bernier
## 7045 Campelo
## 7046 Cartuxa
## 7047 Ricordi
## 7048 Septima
## 7049 Mossback
## 7050 Quintas de Melgaço
## 7051 Bodegas San Valero
## 7052 Halleck
## 7053 Henry Estate
## 7054 Luis Segundo Correas
## 7055 Ramspur
## 7056 Aljibes
## 7057 Baron De Ley
## 7058 Buena Vista
## 7059 Clément Bosquet
## 7060 Domaine d'Arton
## 7061 Adega Cooperativa de Borba
## 7062 Castro Martin
## 7063 Vieira de Plata
## 7064 Wines & Winemakers
## 7065 Twisted
## 7066 Paso a Paso
## 7067 Herdade do Rocim
## 7068 Château Laulerie
## 7069 Egeo
## 7070 Costa di Bussia
## 7071 Oak Knoll
## 7072 Wines & Winemakers
## 7073 Fowles Wine
## 7074 Wente
## 7075 Folie à Deux
## 7076 Gimenez Riili
## 7077 Achaval-Ferrer
## 7078 Baywood
## 7079 Wente
## 7080 Louis d'Armont
## 7081 Midnight
## 7082 De Bortoli
## 7083 Giant Steps
## 7084 Brutocao
## 7085 Maryhill
## 7086 Verve
## 7087 Deerfield Ranch
## 7088 Tamaya
## 7089 Arns
## 7090 Jacuzzi
## 7091 Trapiche
## 7092 Tamaya
## 7093 Undurraga
## 7094 Bodega Don Bosco
## 7095 Finca El Origen
## 7096 Pascual Toso
## 7097 Domaines Barons de Rothschild (Lafite)
## 7098 Signorello
## 7099 Cockburn's
## 7100 Cyatho
## 7101 De Faveri
## 7102 Domaine Fernand Engel
## 7103 Domaine François Schmitt
## 7104 Dorigo
## 7105 Chehalem
## 7106 Collet
## 7107 Fiuza
## 7108 G. H. Mumm
## 7109 Poças
## 7110 Pride Mountain
## 7111 Primarius
## 7112 Sanguis
## 7113 Santa Barbara Winery
## 7114 Siduri
## 7115 Simonsig
## 7116 Sonoma-Cutrer
## 7117 Il Follo
## 7118 Jacquart
## 7119 La Gioiosa
## 7120 Villa Sandi
## 7121 Vivanco
## 7122 Yohan Lardy
## 7123 Zardetto
## 7124 Beckmen
## 7125 Bodegas Landaluce
## 7126 Burrowing Owl
## 7127 François Lurton
## 7128 Joullian
## 7129 Torii Mor
## 7130 V. Sattui
## 7131 Hedgeline
## 7132 Herdade do Esporão
## 7133 Chilcas
## 7134 Ciavolich Giuseppe
## 7135 Clos des Augustins
## 7136 Ventisquero
## 7137 Vigne & Vini
## 7138 Indigené
## 7139 King Estate
## 7140 Niepoort
## 7141 Panther Creek
## 7142 Quails' Gate
## 7143 Palladino
## 7144 Altamura
## 7145 William Hill Estate
## 7146 Guy Saget
## 7147 Cono Sur
## 7148 Pinanfarina
## 7149 Longoria
## 7150 Château Musar
## 7151 Geyser Peak
## 7152 Silverado
## 7153 Anakena
## 7154 Tosti
## 7155 Red Guitar
## 7156 Peter Weber
## 7157 Gruppo Casaleone
## 7158 Michele Chiarlo
## 7159 Tenimenti Ca' Bianca
## 7160 Tosti
## 7161 Ca'Romè
## 7162 Il Falchetto
## 7163 Fujishin
## 7164 Domaine Terre de Mistral
## 7165 Durigutti
## 7166 Fattoria La Rivolta
## 7167 Feudi di San Gregorio
## 7168 Fire Road
## 7169 Galil Mountain
## 7170 Golan Heights Winery
## 7171 Montespina
## 7172 Novy
## 7173 One Woman
## 7174 Planeta
## 7175 Raymond
## 7176 Sheldrake Point
## 7177 Simonsig
## 7178 Simonsig
## 7179 Vilafonté
## 7180 Vinyes del Terrer
## 7181 Château Maupague
## 7182 Château Réal Martin
## 7183 Corley Reserve
## 7184 Cult X
## 7185 Domaine Albert Mann
## 7186 Doyenne
## 7187 Doyenne
## 7188 Dr. Konstantin Frank
## 7189 Emblem
## 7190 Ferré I Catasús
## 7191 Gloria Ferrer
## 7192 Greywacke
## 7193 Novelty Hill
## 7194 Chehalem
## 7195 Cloudy Bay
## 7196 Cockburn's
## 7197 Daniel Chotard
## 7198 DFJ Vinhos
## 7199 Domaine Girard
## 7200 Domaine Joël Delaunay
## 7201 Domaine Matthias et Emile Roblin
## 7202 Duck Pond
## 7203 Fairsing
## 7204 Finca Agostino
## 7205 Fiuza
## 7206 Fritz Haag
## 7207 Fullerton
## 7208 Fullerton
## 7209 Gadais Père et Fils
## 7210 Gérard Bertrand
## 7211 Graziano
## 7212 Monte da Ravasqueira
## 7213 Morgante
## 7214 Olek Bondonio
## 7215 Pertinace
## 7216 Quinta do Crasto
## 7217 Robert Renzoni
## 7218 Roco
## 7219 Salvano
## 7220 Sidecar
## 7221 Union de Vignerons de l'Île de Beauté
## 7222 King Estate
## 7223 Kokomo
## 7224 Monte del Frá
## 7225 Montresor
## 7226 Nice
## 7227 Niner
## 7228 Olabisi
## 7229 Patz & Hall
## 7230 Romain Bouchard
## 7231 Roza Ridge
## 7232 Senda 66
## 7233 Shaya
## 7234 Terre di Leone
## 7235 Thelema
## 7236 Volteo
## 7237 Keuka Spring
## 7238 L. Tramier & Fils
## 7239 Lamoreaux Landing
## 7240 Buitenverwachting
## 7241 Ca' Rugate
## 7242 Graham Beck
## 7243 Denis Dutron
## 7244 Domaine Bernard Millot
## 7245 Domaine Jean-Paul et Benoît Droin
## 7246 Folie à Deux
## 7247 Henri de Villamont
## 7248 Maculan
## 7249 Peza do Rei
## 7250 Pictor
## 7251 Nuiton-Beaunoy
## 7252 Rooster Hill
## 7253 Saddleback Cellars
## 7254 Epiphany
## 7255 Flora Springs
## 7256 Garcia Schwaderer
## 7257 Gérard Bertrand
## 7258 Lone Birch
## 7259 Market Vineyards
## 7260 Poiema
## 7261 Sauska
## 7262 Sauska
## 7263 Arboleda
## 7264 Chateau Ste. Michelle
## 7265 College Cellars
## 7266 Columbia Crest
## 7267 Davino
## 7268 Naggiar
## 7269 Poseidon
## 7270 Ruhlmann
## 7271 Santa Alba
## 7272 Seven Angels
## 7273 Stapleton & Springer
## 7274 Waters Crest
## 7275 Volatus
## 7276 Montevina
## 7277 Philo Ridge
## 7278 Sauska
## 7279 Sipp Mack
## 7280 Standing Sun
## 7281 Tenuta San Leonardo
## 7282 Tenute Lunelli
## 7283 Anthony Nappa
## 7284 Seven Hills
## 7285 Shannon
## 7286 Sleeping Giant
## 7287 Spoto
## 7288 Starmont
## 7289 Terra d'Oro
## 7290 Uptick Vineyards
## 7291 Vigne Guadagno
## 7292 Villa Wolf
## 7293 Wittmann
## 7294 Kuentz-Bas
## 7295 Lone Madrone
## 7296 Mark Ryan
## 7297 Materra Cunat Family Vineyards
## 7298 Angove
## 7299 A.P. Vin
## 7300 Baily
## 7301 Beckmen
## 7302 Castelvecchio
## 7303 Cave de Ribeauvillé
## 7304 Château de Chaintres
## 7305 Chateau Ste. Michelle
## 7306 Chateau Ste. Michelle
## 7307 Château Tour de Mirambeau
## 7308 Château Vircoulon
## 7309 Child's Play
## 7310 Domaine Charles Frey
## 7311 Domaine du Petit Clocher
## 7312 Domaine Gérard Neumeyer
## 7313 Domaine Pfister
## 7314 Martin & Weyrich
## 7315 Montevina
## 7316 Esser Cellars
## 7317 Quinta do Casal Branco
## 7318 Señorío de Sarria
## 7319 Lucas Vineyards
## 7320 Cinnabar
## 7321 Standing Stone
## 7322 Tenuta Sette Ponti
## 7323 José Maria da Fonseca
## 7324 Kadesh Barnea
## 7325 Fortant
## 7326 Barkan
## 7327 Valsanzo
## 7328 Wellington
## 7329 Brotherhood
## 7330 Damiani
## 7331 La Capilla
## 7332 Esser Cellars
## 7333 Eleusis
## 7334 Esser Cellars
## 7335 Vina Robles
## 7336 Avignonesi
## 7337 Talley
## 7338 Occasio
## 7339 Peachy Canyon
## 7340 Langtry
## 7341 Leth
## 7342 Maior de Mendoza
## 7343 Market Vineyards
## 7344 Mastrojanni
## 7345 Pacific Rim
## 7346 Palazzo
## 7347 Paso a Paso
## 7348 Patterson
## 7349 Piccini
## 7350 Pietroso
## 7351 Poseidon
## 7352 Radius
## 7353 San Giacomo
## 7354 Syncline
## 7355 Trapiche
## 7356 Cameron Hughes
## 7357 Château Bibian
## 7358 Château Cap Léon Veyrin
## 7359 Château de Braude
## 7360 Helix by Reininger
## 7361 Heron Hill
## 7362 Il Poggiolo
## 7363 La Rasina
## 7364 Zarate
## 7365 Del Dotto
## 7366 Eleven
## 7367 Elsom Cellars
## 7368 Fayolle Fils & Fille
## 7369 Finca Albret
## 7370 Insania
## 7371 Jean Daneel
## 7372 Kendall-Jackson
## 7373 La Rochelle
## 7374 Kendall-Jackson
## 7375 Kirchmayr
## 7376 Lynmar
## 7377 Maggy Hawk
## 7378 Pride Mountain
## 7379 Rabl
## 7380 Ken Forrester
## 7381 Maurodos
## 7382 AntoLin Cellars
## 7383 Babcock
## 7384 Bernardus
## 7385 Black Kite
## 7386 Domaines Ott
## 7387 Elyse
## 7388 Clarendon Hills
## 7389 Domaine du Grand Montmirail
## 7390 Walla Walla Vintners
## 7391 Agricola Punica
## 7392 Cellers Sant Rafel
## 7393 Jarvis
## 7394 Lynmar
## 7395 Lynmar
## 7396 Cantina Terlano
## 7397 Sobon Estate
## 7398 Sogevinus
## 7399 Testarossa
## 7400 Valdez
## 7401 XYZin
## 7402 Elements of Sonoma
## 7403 Forchini
## 7404 Gallo Family Vineyards
## 7405 Gary Farrell
## 7406 Marc Kreydenweiss
## 7407 Abacela
## 7408 Abacela
## 7409 Blandy's
## 7410 Buena Vista
## 7411 Ca' del Solo
## 7412 Cloudline
## 7413 Dão Sul
## 7414 Francis Ford Coppola
## 7415 Hazlitt 1852 Vineyards
## 7416 Macari
## 7417 Marqués de Cáceres
## 7418 Pierre Sparr
## 7419 Trentadue
## 7420 Scala Dei
## 7421 Koenig Vineyards
## 7422 Meadowcroft
## 7423 Domaines Schlumberger
## 7424 Plaisir De Merle
## 7425 Elk Cove
## 7426 Firestone
## 7427 Havana Hills
## 7428 J. Lohr
## 7429 Thelema
## 7430 Mas Nicolas
## 7431 Mendocino Gold
## 7432 Hardys
## 7433 Sokol Blosser
## 7434 Abacela
## 7435 New World
## 7436 Niel Joubert
## 7437 Perry Creek
## 7438 Glenora
## 7439 Imagery
## 7440 Torres
## 7441 Maddalena
## 7442 Ken Forrester
## 7443 Hugel
## 7444 Imagery
## 7445 Rosenblum
## 7446 Omaka Springs
## 7447 Redwood
## 7448 Yering Station
## 7449 Bodegas Concavins
## 7450 Viña Maipo
## 7451 Wild Pig
## 7452 Barton & Guestier
## 7453 Cantina del Nebbiolo
## 7454 CarlindePaolo
## 7455 Cascina Radice
## 7456 Castello di Neive
## 7457 Clos Pons
## 7458 Coleccion Privada
## 7459 Cuyen
## 7460 Dante Rivetti
## 7461 Domaine Gueguen
## 7462 Domaine Pascal et Mireille Renaud
## 7463 Hosmer
## 7464 J. Bouchon
## 7465 Albert Bichot
## 7466 TerraNoble
## 7467 Kestrel
## 7468 Kestrel
## 7469 Kestrel
## 7470 La Spinetta
## 7471 Le Grand Noir
## 7472 Loron et Fils
## 7473 Maryhill
## 7474 Maryhill
## 7475 Muddy Boot
## 7476 Napa Cellars
## 7477 Pietro Rinaldi
## 7478 Punset
## 7479 Cascina Radice
## 7480 French Hill
## 7481 Grgich Hills
## 7482 Bridgeview
## 7483 Castoro Cellars
## 7484 Vin Nostro
## 7485 Kalbarri
## 7486 Harveys
## 7487 Septima
## 7488 Erath
## 7489 Bridgeview
## 7490 Snake River
## 7491 Vivác Winery
## 7492 Bridgeview
## 7493 Cartlidge & Browne
## 7494 Celler La Bollidora
## 7495 Chaddsford
## 7496 Pacific Oasis
## 7497 Shannon Ridge
## 7498 Norman
## 7499 Funky Llama
## 7500 Michel Torino
## 7501 Bridgeview
## 7502 Melville
## 7503 Panthea
## 7504 Kitá
## 7505 LaStella
## 7506 Lorenzi Estate
## 7507 Loring Wine Company
## 7508 Lucien Lardy
## 7509 Andeluna
## 7510 Barone Pizzini
## 7511 Billecart-Salmon
## 7512 Bodega Catena Zapata
## 7513 Ca' dei Zago
## 7514 Cave Spring
## 7515 Cedarville Vineyard
## 7516 D.R. Stephens
## 7517 Ehlers Estate
## 7518 Giant Steps
## 7519 Henriet-Bazin
## 7520 Jean Laurent
## 7521 Louis Roederer
## 7522 Quinta das Carvalhas
## 7523 A.R. Lenoble
## 7524 Bergström
## 7525 Corte Moschina
## 7526 McEvoy Ranch
## 7527 Meadowcroft
## 7528 Melville
## 7529 Mercy
## 7530 Merryvale
## 7531 Metz Road
## 7532 Starborough
## 7533 Wellington
## 7534 Kokomo
## 7535 Vignamaggio
## 7536 Manzoni
## 7537 Piccini
## 7538 Simi
## 7539 St. Supéry
## 7540 Tenuta di Trecciano
## 7541 Textbook
## 7542 Banfi
## 7543 Bellini
## 7544 Blue Rock
## 7545 Juan Gil
## 7546 Juan Gil
## 7547 Montes
## 7548 Heron Hill
## 7549 Sterling
## 7550 Aia Vecchia
## 7551 Atmosphere
## 7552 Bacalhôa Wines of Portugal
## 7553 Bodegas Mähler-Besse
## 7554 Calera
## 7555 Cipriana
## 7556 Eucaliptus
## 7557 Wines & Winemakers
## 7558 Ànima Negra
## 7559 Borges
## 7560 Chamisal Vineyards
## 7561 Château de Minière
## 7562 Château Fonguillon
## 7563 Château La Rame
## 7564 King Estate
## 7565 Lynmar
## 7566 Pascal & Nicolas Reverdy
## 7567 Bernardus
## 7568 Byzantium
## 7569 Chrysorroyiatissa
## 7570 Cramele Recas
## 7571 Frank Cornelissen
## 7572 Gnarly Head
## 7573 Yali
## 7574 Yvon Mau
## 7575 One Hope
## 7576 Paradise Ridge
## 7577 Pasion de Tango
## 7578 Simone
## 7579 Bellenda
## 7580 Château Lamothe-Vincent
## 7581 Montresor
## 7582 Domaine Costa Lazaridi
## 7583 Dutch Bill Creek
## 7584 Heavenly Retreat
## 7585 Alpataco
## 7586 Aresti
## 7587 Black Box
## 7588 Château Lamothe-Vincent
## 7589 Pommery
## 7590 Protopapas
## 7591 Rancho Sisquoc
## 7592 Domaines Barons de Rothschild (Lafite)
## 7593 San Giuseppe
## 7594 Zenaida Cellars
## 7595 Morandé
## 7596 Calama
## 7597 Casa Rivas
## 7598 Cantina Terlano
## 7599 Santi
## 7600 Pepperwood Grove
## 7601 Piccini
## 7602 Viña Casas del Bosque
## 7603 La Palma
## 7604 Calama
## 7605 Guelbenzu
## 7606 San Pedro
## 7607 MacMurray Ranch
## 7608 Quinta da Romeira
## 7609 L.A. Cetto
## 7610 Bartenura
## 7611 Château Los Boldos
## 7612 Quinta da Aveleda
## 7613 Vino de Eyzaguirre
## 7614 Collet
## 7615 Domaine François Schmitt
## 7616 Domaine Michel Fonne
## 7617 Fetzer
## 7618 Freja
## 7619 Gino Fasoli
## 7620 Miklus
## 7621 Muddy Boot
## 7622 Nga Waka
## 7623 North 42 Degrees
## 7624 Portalupi
## 7625 Schlumberger Wein- und Sektkellerei
## 7626 Shooting Star
## 7627 Township 7
## 7628 Jean Laurent
## 7629 Krupp Brothers
## 7630 La Tordera
## 7631 Lasseter
## 7632 Louis Chalvon
## 7633 Mailly Grand Cru
## 7634 Wilderotter
## 7635 Yamhill Valley
## 7636 Apolloni
## 7637 Bellenda
## 7638 Borgoluce
## 7639 Humberto Canale
## 7640 Indaba
## 7641 Althéa
## 7642 Andreola
## 7643 Bellenda
## 7644 eco.love
## 7645 Fondo Antico
## 7646 Frank Family
## 7647 Henry Fessy
## 7648 Tamber Bey
## 7649 Tenuta di Serramarrocco
## 7650 Viña Bujanda
## 7651 Viticultori Associati Canicatti
## 7652 Zarate
## 7653 Vignerons de Bel Air
## 7654 Windsor Sonoma
## 7655 Y Rousseau
## 7656 Smasne Cellars
## 7657 Tasca d'Almerita
## 7658 Thirsty Owl Wine Company
## 7659 Château Tanunda
## 7660 Cornellana
## 7661 Corvo
## 7662 Corvo
## 7663 Di Giovanna
## 7664 Domaine Marc Jambon
## 7665 Duca di Salaparuta
## 7666 Hangtime
## 7667 Hosmer
## 7668 Hosmer
## 7669 J. Garcia Carrion
## 7670 Knapp
## 7671 Markham
## 7672 Murganheira
## 7673 Allure
## 7674 Wrath
## 7675 Adams Bench
## 7676 Animale
## 7677 Argyros
## 7678 Castellroig
## 7679 Testarossa
## 7680 Thymiopoulos
## 7681 Va Piano
## 7682 Jean-Claude Debeaune
## 7683 Louis Latour
## 7684 Mano A Mano
## 7685 Ousterhout
## 7686 Suvla
## 7687 Ceuso
## 7688 Decoy
## 7689 Domaine Carneros
## 7690 Domaine La Soufrandise
## 7691 Finca La Mata
## 7692 Hauner
## 7693 Mulderbosch
## 7694 Amador Foothill Winery
## 7695 Antonino Tringali-Casanuova
## 7696 Château Toumilon
## 7697 Courtney Benham
## 7698 Eventide Cellar
## 7699 Bonneau
## 7700 Valsanzo
## 7701 Hunter Ashby
## 7702 Nicholls
## 7703 Southern Right
## 7704 Stephen Ross
## 7705 Pago de Larrainzar
## 7706 Pago de los Capellanes
## 7707 Vergelegen
## 7708 Viña Albali
## 7709 Judd's Hill
## 7710 L'Egrégoire
## 7711 Loring Wine Company
## 7712 Old Well House
## 7713 De Bortoli
## 7714 Dr. H. Thanisch (Erben Thanisch)
## 7715 Beau Joubert
## 7716 Beau Joubert
## 7717 Bodegas Franco-Españolas
## 7718 Bodegas Leza García
## 7719 Bernard Magrez
## 7720 Boatique
## 7721 Campolargo
## 7722 Cerulean
## 7723 Charles Smith
## 7724 Château Abelyce
## 7725 Château Bellevue Peycharneau
## 7726 Château Haut Bertinerie
## 7727 Château le Prieuré
## 7728 Château Marquis de Terme
## 7729 Château Moncets
## 7730 Château Moulin de Blanchon
## 7731 Clarendelle
## 7732 DENO
## 7733 Domaine de la Bonne Tonne
## 7734 Quevedo
## 7735 Quinta Nova de Nossa Senhora do Carmo
## 7736 Sextant
## 7737 Sweet Cheeks
## 7738 Telaya
## 7739 Von Schleinitz
## 7740 Winc
## 7741 Kooyong
## 7742 L. Tramier & Fils
## 7743 Laurelwood
## 7744 Lion des Aubrots
## 7745 Mamete Prevostini
## 7746 Messias
## 7747 Pacific Rim
## 7748 Donati
## 7749 Iron Horse
## 7750 Jalits
## 7751 Levendi
## 7752 Lincourt
## 7753 Luna
## 7754 Markus Huber
## 7755 Markus Huber
## 7756 Matthews
## 7757 Michael Mondavi Family Estate
## 7758 Morell-Peña
## 7759 Parusso
## 7760 Ramey
## 7761 Rasa
## 7762 Rasa
## 7763 Ron Rubin
## 7764 Saintsbury
## 7765 Saracina
## 7766 Sequel
## 7767 Stadlmann
## 7768 Stevens
## 7769 Stift Klosterneuburg
## 7770 Toccata
## 7771 Türk
## 7772 Umathum
## 7773 Umathum
## 7774 Ferraton Pere et Fils
## 7775 Mas Champart
## 7776 Sonsierra
## 7777 Tardieu-Laurent
## 7778 Morell-Peña
## 7779 Jada Vineyard & Winery
## 7780 Laughing Stock
## 7781 Leth
## 7782 Manzone Fratelli
## 7783 Markus Huber
## 7784 Michael Gill Cellars
## 7785 Ca' Viola
## 7786 D'Arenberg
## 7787 Darioush
## 7788 Dürnberg
## 7789 Georges Vigouroux
## 7790 Gordon Estate
## 7791 Prinsi
## 7792 Jardin
## 7793 Mascarello Giuseppe e Figlio
## 7794 Alzinger
## 7795 Anton Bauer
## 7796 Arndorfer
## 7797 Barden
## 7798 J & J
## 7799 Jurtschitsch
## 7800 Unger
## 7801 Vasse Felix
## 7802 Vista d'Oro
## 7803 Walla Walla Vintners
## 7804 Waterbrook
## 7805 Col d'Orcia
## 7806 Companhia das Quintas
## 7807 Eliseo Silva
## 7808 Enkidu
## 7809 Flinders Run
## 7810 Frostwatch
## 7811 Glen Fiona
## 7812 Guarachi Family
## 7813 Hightower
## 7814 Maximo
## 7815 Mirassou
## 7816 Villa San Juliette
## 7817 Viña Albali
## 7818 Wild Horse
## 7819 Bleasdale
## 7820 Bouchaine
## 7821 Fournier Père et Fils
## 7822 Magnificent Wine Company
## 7823 Grant Burge
## 7824 Columbia Crest
## 7825 Coto de Imaz
## 7826 Pontin del Roza
## 7827 Peirano
## 7828 Ste. Chapelle
## 7829 Stefano Lubiana
## 7830 Kangarilla Road
## 7831 Marchesi de' Frescobaldi
## 7832 Hollick
## 7833 Hollick
## 7834 Huguet de Can Feixes
## 7835 Sariah Cellars
## 7836 Rutz
## 7837 Mayo
## 7838 Mayoral
## 7839 Craneford
## 7840 Columbia Winery
## 7841 Columbia Winery
## 7842 Chateau Ste. Michelle
## 7843 Yorkville Cellars
## 7844 Arbor Crest
## 7845 Gordon Brothers
## 7846 Columbia Crest
## 7847 Condes de Albarei
## 7848 Gallo of Sonoma
## 7849 Gargiulo
## 7850 Oliverhill
## 7851 II Moons
## 7852 Alta Vista
## 7853 Alta Vista
## 7854 Asuncion Ridge
## 7855 B Cellars
## 7856 Billecart-Salmon
## 7857 Ca' del Bosco
## 7858 Chimney Rock
## 7859 Joseph Perrier
## 7860 Ruinart
## 7861 Domaine Drouhin Oregon
## 7862 Maso Martis
## 7863 Mount Eden Vineyards
## 7864 Robert Biale
## 7865 Rosenhof
## 7866 Taittinger
## 7867 Viña Cobos
## 7868 Viña Cobos
## 7869 Von Strasser
## 7870 Mvemve Raats
## 7871 Von Strasser
## 7872 Mvemve Raats
## 7873 Paul Hobbs
## 7874 Spell
## 7875 Thomas Fogarty
## 7876 Pol Roger
## 7877 Beaulieu Vineyard
## 7878 Ca' del Bosco
## 7879 Cave Spring
## 7880 Ch.igai Takaha
## 7881 Gary Farrell
## 7882 Petite Sirène
## 7883 Plungerhead
## 7884 Quinta do Casal Branco
## 7885 Quinta do Casal Branco
## 7886 Ventisquero
## 7887 Viña Casablanca
## 7888 Laird
## 7889 Louis Chavy
## 7890 Santa Barbara Winery
## 7891 Sweet Cheeks
## 7892 Tinazzi
## 7893 Cru
## 7894 Dão Sul
## 7895 Domaine de Pajot
## 7896 Guyomar
## 7897 Herdade do Rocim
## 7898 Vigneti Villabella
## 7899 Château la Petite Roque
## 7900 Château le Castellot
## 7901 Chilcas
## 7902 Collection 35
## 7903 Due Cani
## 7904 Fleury
## 7905 Grochau
## 7906 Gunsight Rock
## 7907 Quinta das Arcas
## 7908 Sanglier Cellars
## 7909 Stama
## 7910 The Full
## 7911 The Federalist
## 7912 Tofanelli Family
## 7913 Ugo Lequio
## 7914 Vallana
## 7915 Vigne Surrau
## 7916 Vite Colte
## 7917 Wirra Wirra
## 7918 Albert Bichot
## 7919 Angove
## 7920 Animale
## 7921 Anselmo Mendes
## 7922 Argiolas
## 7923 Artesa
## 7924 August Briggs
## 7925 Azamor
## 7926 Azamor
## 7927 Beni di Batasiolo
## 7928 Benvenuto de la Serna
## 7929 Bodega Tacuil
## 7930 Fenestra
## 7931 Fess Parker
## 7932 Herdade de São Miguel
## 7933 Yalumba
## 7934 Bulgariana
## 7935 Canyon Wind
## 7936 Cascina Saria
## 7937 Castello di Verduno
## 7938 Cave des Grands Crus Blancs
## 7939 Chateau Burgozone
## 7940 Christophe Cordier
## 7941 Airfield Estates
## 7942 Wakefield
## 7943 Woodinville Wine Cellars
## 7944 Barberani
## 7945 Château de Tracy
## 7946 Adelaida
## 7947 Arbor Crest
## 7948 Syncline
## 7949 Tandem
## 7950 Mojon's Bench
## 7951 Mossback
## 7952 Oliverhill
## 7953 Fattoria Fibbiano
## 7954 La Playa
## 7955 Le Caniette
## 7956 Te Awa
## 7957 F X Pichler
## 7958 Stony Lonesome
## 7959 The Farm Winery
## 7960 Trump
## 7961 Two Paddocks
## 7962 Guicciardini Strozzi
## 7963 Guicciardini Strozzi
## 7964 Henry Earl
## 7965 Jamieson Ranch
## 7966 Landhaus Mayer
## 7967 Original House Wine
## 7968 Paradise Springs
## 7969 Pear Valley
## 7970 Cantina Altarocca
## 7971 Château Coussin
## 7972 The Boneyard
## 7973 Château Paradis
## 7974 Coyote Creek
## 7975 Domaine Parigot
## 7976 Domaine Thierry Drouin
## 7977 Frei Brothers
## 7978 Fulkerson
## 7979 Marlborough Estate Reserve
## 7980 Via Giusti
## 7981 Wood Family Vineyards
## 7982 Ingleside
## 7983 Iter
## 7984 Kamiak
## 7985 Lunadoro
## 7986 Millton
## 7987 Guidi 1929
## 7988 Ca' Rugate
## 7989 Cantina di Soave
## 7990 Casa de Santa Vitoria
## 7991 Château Routas
## 7992 Conn Creek
## 7993 Dão Sul
## 7994 Domaine Sainte Lucie
## 7995 Sanguinhal
## 7996 Signorello
## 7997 Stomping Girl
## 7998 Tablas Creek
## 7999 Talbott
## 8000 Valentin Bianchi
## 8001 Williams Selyem
## 8002 Château La Nerthe
## 8003 Clerget
## 8004 Domaine Pierre Usseglio et Fils
## 8005 Alente
## 8006 Inama
## 8007 Incognito
## 8008 L'Antica Quercia
## 8009 Lynmar
## 8010 Raymond
## 8011 Domaine Lafond
## 8012 Charles Clément
## 8013 Château le Breton
## 8014 Château Siaurac
## 8015 Antica Fratta
## 8016 Balverne
## 8017 Boëté
## 8018 Briceland
## 8019 C.H. Berres
## 8020 Henri de Villamont
## 8021 Herdade de São Miguel
## 8022 Herdade Grande
## 8023 Herzog
## 8024 J. Lohr
## 8025 J. Lohr
## 8026 Wattle Creek
## 8027 Whitehall Lane
## 8028 Wines & Winemakers
## 8029 Wines & Winemakers
## 8030 Il Mosnel
## 8031 Kings Ridge
## 8032 Korbel
## 8033 Korbel
## 8034 Lucas & Lewellen
## 8035 Oak Grove
## 8036 Obelisco Estate
## 8037 Palazzo
## 8038 Refugio Ranch
## 8039 Rodriguez Sanzo
## 8040 San Polo
## 8041 Santa Carolina
## 8042 Anakena
## 8043 Auclair
## 8044 Bliss
## 8045 Walla Faces
## 8046 Vignerons de Bel Air
## 8047 Viña Casablanca
## 8048 Henry Fessy
## 8049 Segura Viudas
## 8050 Cantine Lanzavecchia
## 8051 Château de Nages
## 8052 Coldisole
## 8053 Dante Robere
## 8054 Dealy Lane
## 8055 Domaine de Ménard
## 8056 Domaine des Marrans
## 8057 Domaine Dupeuble Père et Fils
## 8058 Domaine Lagneau
## 8059 Epiphany
## 8060 Fattoria del Cerro
## 8061 Fornacina
## 8062 Influence
## 8063 14 Hands
## 8064 Casa Larga
## 8065 Jean Becker
## 8066 Kiona
## 8067 Murphy-Goode
## 8068 R2
## 8069 Santa Ema
## 8070 Sparkling Pointe
## 8071 Alessandro Rivetto
## 8072 Brown Estate
## 8073 Viña San Vicente
## 8074 Woodward Canyon
## 8075 Herdade Paço do Conde
## 8076 Château Haut Bertinerie
## 8077 Errazuriz
## 8078 Estampa
## 8079 Château Joanin Bécot
## 8080 Château la Croix Saint-Pierre
## 8081 Clos du Val
## 8082 Côtes de Ciel
## 8083 Dry Creek Vineyard
## 8084 Fess Parker
## 8085 Quinta de la Rosa
## 8086 Quinta do Monte d'Oiro
## 8087 Quivira
## 8088 Ram's Gate
## 8089 Ixsir
## 8090 J. Portugal Ramos
## 8091 Lombardi
## 8092 Martin Lane Winery
## 8093 Campolargo
## 8094 Chasseur
## 8095 Stack House
## 8096 Tenet
## 8097 Brian Benson
## 8098 Clos Henri
## 8099 Domaine Chevillon-Chezeaux
## 8100 Domaine Julie Belland
## 8101 Giesen
## 8102 Lynmar
## 8103 Olivier Leflaive
## 8104 Olivier Leflaive
## 8105 Roux Père et Fils
## 8106 Storm
## 8107 Testarossa
## 8108 Venturini Massimino
## 8109 Gary Farrell
## 8110 Masi
## 8111 Mendel
## 8112 Mumm Napa
## 8113 Rocca
## 8114 Le Salette
## 8115 Kanonkop
## 8116 Laurel Glen
## 8117 Leonetti Cellar
## 8118 Anglim
## 8119 Comartin
## 8120 Craggy Range
## 8121 Domaine de Bellene
## 8122 Domaine Henri Delagrange
## 8123 Escarpment
## 8124 Gård
## 8125 Grevino
## 8126 Hart
## 8127 Inama
## 8128 Innocent Bystander
## 8129 J. Dumangin Fils
## 8130 Auclair
## 8131 La Berrière
## 8132 Walla Walla Vintners
## 8133 King Vintners
## 8134 Marie Copinet
## 8135 Miklus
## 8136 Nicolas Feuillatte
## 8137 Nieto Senetiner
## 8138 Ornella Molon
## 8139 Papapietro Perry
## 8140 Pinord
## 8141 Ricardo Santos
## 8142 Rutherford Ranch
## 8143 Sineann
## 8144 Spangler
## 8145 Stella Rosa
## 8146 Tamber Bey
## 8147 Terrazas de Los Andes
## 8148 Tinhorn Creek
## 8149 Urlar
## 8150 Villa Maria
## 8151 Beresini Vineyards
## 8152 Cave de Cleebourg
## 8153 Claude Baron
## 8154 Concannon
## 8155 Château le Grand Verdus
## 8156 Château Mont-Pérat
## 8157 Château Petit Moulin
## 8158 Cono Sur
## 8159 Coquelicot
## 8160 Cow Bell
## 8161 Curto
## 8162 DFJ Vinhos
## 8163 Quintas de Melgaço
## 8164 Re Manfredi
## 8165 Santa Rita
## 8166 Siegel
## 8167 Spicerack
## 8168 Taverna
## 8169 The White Knight
## 8170 Three Rivers
## 8171 Van Ardi
## 8172 Wines & Winemakers
## 8173 Lambert
## 8174 Le Casque
## 8175 Lion-Gri
## 8176 Manuel Manzaneque Suárez
## 8177 McWilliam's
## 8178 Minkov Brothers
## 8179 Minkov Brothers
## 8180 Mount Veeder
## 8181 Gorman
## 8182 Hightower
## 8183 J. Scott Cellars
## 8184 14 Hands
## 8185 Montes
## 8186 Alzinger
## 8187 Errazuriz
## 8188 Errazuriz
## 8189 Château Mont-Pérat
## 8190 Jacquart
## 8191 Kendall-Jackson
## 8192 Maple Creek
## 8193 Sunstone
## 8194 Rotari
## 8195 Louis Roederer
## 8196 Cinnabar
## 8197 Brancott
## 8198 Château Couhins
## 8199 Château Thieuley
## 8200 Viansa
## 8201 Heintz
## 8202 Terre Rouge
## 8203 Alzinger
## 8204 Alzinger
## 8205 Château Cantelys
## 8206 Château d'Yquem
## 8207 Château Ferrande
## 8208 Château Moncontour
## 8209 Foxen
## 8210 Mouchão
## 8211 Swanson
## 8212 Terlato
## 8213 Trisaetum
## 8214 Joh. Jos. Prüm
## 8215 Rheingraf
## 8216 Pascal Bouchard
## 8217 Patrick Javillier
## 8218 Patrick Javillier
## 8219 Renieri
## 8220 Rutherford Hill
## 8221 Trisaetum
## 8222 Damien et Romain Bouchard
## 8223 Demetria
## 8224 DFJ Vinhos
## 8225 Domaine Chandon
## 8226 Foxen
## 8227 Barone Pizzini
## 8228 J. Dumangin Fils
## 8229 Jarvis
## 8230 Zaca Mesa
## 8231 Stratus
## 8232 Thiénot
## 8233 Trisaetum
## 8234 Antiyal
## 8235 Inniskillin
## 8236 Knights Bridge
## 8237 Lamiable
## 8238 Cà La Bionda
## 8239 Concha y Toro
## 8240 Damiani
## 8241 Raats Family
## 8242 Spier
## 8243 Lamoreaux Landing
## 8244 Morgenhof
## 8245 Höpler
## 8246 Hovey
## 8247 Kiona
## 8248 Wolfberger
## 8249 Domaine de la Tour du Bon
## 8250 Fattoria Laila
## 8251 Ferrari-Carano
## 8252 Grace Lane
## 8253 Les Belles Collines
## 8254 Longboard
## 8255 Mannina Cellars
## 8256 Marchetti
## 8257 Accadia
## 8258 Arboleda
## 8259 Birgit Braunstein
## 8260 Buehler
## 8261 Atwater
## 8262 Bellangelo
## 8263 Hafner
## 8264 Hazlitt 1852 Vineyards
## 8265 Cave de Kientzheim-Kaysersberg
## 8266 Château de Calavon
## 8267 Colli Ripani
## 8268 Crossbarn by Paul Hobbs
## 8269 Hook & Ladder
## 8270 Damilano
## 8271 Domaine de la Croix Senaillet
## 8272 Domaine Dujac
## 8273 Frei Brothers
## 8274 Haras
## 8275 Joseph Drouhin
## 8276 Korta Katarina
## 8277 La Playa
## 8278 Lost Canyon
## 8279 Louis Latour
## 8280 Lyrarakis
## 8281 Monchiero Carbone
## 8282 Paradise Ridge
## 8283 Paul Dolan
## 8284 Punset
## 8285 Robert Mondavi
## 8286 Stickybeak
## 8287 Villadoria
## 8288 Portola Vineyards
## 8289 Ram's Gate
## 8290 Rendarrio Vineyards
## 8291 Tardieu-Laurent
## 8292 Trinity Hill
## 8293 Türk
## 8294 Two Paddocks
## 8295 Wrights Station
## 8296 Ziata
## 8297 Allram
## 8298 Alyris
## 8299 Artezin
## 8300 Blackbird Vineyards
## 8301 Brandl
## 8302 Ingrid Groiss
## 8303 Iron Horse
## 8304 Jäger
## 8305 Jäger
## 8306 Château d'Aqueria
## 8307 Fattoria La Lecciaia
## 8308 Ottimino Vineyards
## 8309 Palencia
## 8310 R&A; Pfaffl
## 8311 Rosenblum
## 8312 Salomon-Undhof
## 8313 Stags' Leap Winery
## 8314 Steininger
## 8315 Tenuta di Biserno
## 8316 Thirty-Seven Wines
## 8317 Mauritson
## 8318 Yao Family Wines
## 8319 Markowitsch
## 8320 Alta Maria
## 8321 Apex
## 8322 Apex
## 8323 Ascension Cellars
## 8324 Basalt
## 8325 Bergevin Lane
## 8326 Boomtown
## 8327 Boomtown
## 8328 Bott Frères
## 8329 Anakena
## 8330 Terra Valentine
## 8331 Terra Valentine
## 8332 Two Mountain
## 8333 Vignamato
## [ reached 'max' / getOption("max.print") -- omitted 121638 rows ]
winedata <- winedata %>%
mutate(year = str_extract(title, "(\\d){4}"))
winedata <- winedata %>%
type_convert(col_types = cols(year = col_integer())) %>%
filter(year > 0, year < 2020, price > 0)
winedata <- winedata %>%
group_by(variety, year, winery, province, region_1, country) %>%
summarize(avg_price = mean(price), avg_rating = mean(points))
winedata
## # A tibble: 91,260 x 8
## # Groups: variety, year, winery, province, region_1 [?]
## variety year winery province region_1 country avg_price avg_rating
## <fct> <int> <fct> <fct> <fct> <fct> <dbl> <dbl>
## 1 "" 1999 Carmen Maipo Va… "" Chile 17 88
## 2 Abouriou 2012 Cave du… Southwes… Côtes du… France 15 87
## 3 Abouriou 2012 Cerridw… Californ… Russian … US 75 85
## 4 Abouriou 2014 Lionel … Southwes… Côtes du… France 15 91
## 5 Agiorgi… 2003 Papaioa… Nemea "" Greece 26 88
## 6 Agiorgi… 2003 Tsantali Nemea "" Greece 16 87
## 7 Agiorgi… 2004 Estate … Nemea "" Greece 22 87
## 8 Agiorgi… 2004 Katogi … Nemea "" Greece 20 87
## 9 Agiorgi… 2004 Nemeion… Nemea "" Greece 45 85
## 10 Agiorgi… 2004 Palivou Nemea "" Greece 35 85.7
## # … with 91,250 more rows
Now, we are going to plot some data to learn some things about our dataset. First, we need to include the ggplot2 library to use some of the ggplot methods. Then, we are going to create a new column for the ratio between the average rating and the average price for each wine. This ratio will be higher if the wine is rated high and is cheap and it will be lower if the wine is rated low and expensive. Overall, the more efficient wine will be rated higher. Next, we start the wine plot by grouping by country, summarizing the average rating to price ratio for each country, and summarizing the total number of wines for each country. We find the total number of wines in order to remove any countries that have less than 50 wine reviews. This is because some countries, like Ukraine, only have a small number of reviews and become an outliar in the graph. Lastly, we need to plot the data as a bar graph using ggplot. By looking at the graph, we can see that Romania has the best rating to price ratio and Canada has the lowest ratio.
library(ggplot2)
winedata <- winedata %>%
mutate(ratingpriceratio = avg_rating/avg_price)
wineplot <- winedata %>%
group_by(country) %>%
summarize(avg_ratingpriceratio = mean(ratingpriceratio), wine_count = n()) %>%
filter(wine_count > 50) %>%
ggplot(mapping = aes(x = country, y = avg_ratingpriceratio)) +
geom_bar(stat = "identity", fill = "steelblue") +
theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
labs(title="Average Rating to Price Ratio by Country",
x = "Country",
y = "Average Rating to Price Ratio")
wineplot
We can pose the question of whether the rating affects the price of the wine. We assume expensive wine would rank higher than innexpensive wine, but we can plot some linear regression lines ourselves to see the difference. First, we only use countries with a significant amount of data collected for them - in this case, Chile, France, Italy, Spain, and the US have an abundance of wine data that will lead to an indisputable conclusion. Next, after filtering, we can plot the average price over the average rating of each wine. We then use a facet grid which creates a seperate plot for each country. Lastly, we can add geom_smooth(method = lm) to create a line of best fit for our data for each country.
winedata %>%
filter(country %in% c("Chile","US","Spain","France","Italy")) %>%
ggplot(aes(x=avg_price, y=avg_rating)) +
facet_grid(. ~country, scales = "free") +
geom_point() +
geom_smooth(method=lm, se = FALSE) +
ylab("Rating") +
xlab("Average Rating") +
ggtitle("Affect of Average Price on Rating")
What do we notice here? We can see that our resulting graphs do not look very meaningful because we have outliers that skew the resulting axis for price. We need to remove these outliers in order to generate a graph we have confidence in. In order to do this we can examine our entire data set and find the mean and standard deviation of the avg_price. A general rule of thumb is an outlier can be determined if it is mean +- 3*standard_deviation. We use that boundary below and determine that we must filter out all wines priced at greater than $157.4. For more information on outliers and how to find them visit https://www.statisticshowto.datasciencecentral.com/find-outliers/. We then filter to remove the outliers from the data set.
winedata %>%
ungroup() %>%
summarize(mean_price=mean(avg_price), sd_price = sd(avg_price)) %>%
slice(rep(1, 4)) %>%
mutate(multiplier = c(-2, -1.5, 1.5, 2)) %>%
mutate(outlier_limit = mean_price + multiplier * sd_price)
## # A tibble: 4 x 4
## mean_price sd_price multiplier outlier_limit
## <dbl> <dbl> <dbl> <dbl>
## 1 34.1 41.1 -2 -48.1
## 2 34.1 41.1 -1.5 -27.5
## 3 34.1 41.1 1.5 95.8
## 4 34.1 41.1 2 116.
winedata <- winedata %>%
filter(avg_price <= 157)
We now repeat the operation we did above but with our filtered dataset with outlier prices removed.
winedata %>%
filter(country %in% c("Chile","US","Spain","France","Italy")) %>%
ggplot(aes(x=avg_price, y=avg_rating)) +
facet_grid(. ~country) +
geom_point() +
geom_smooth(method=lm) +
ylab("Rating") +
xlab("Average Rating") +
ggtitle("Affect of Average Price on Rating")
Based on the previous graphs, we became suspicious of a significant relationship between rating, price, and country. We now hypothesize that there is a linear relationship between the interaction of price and country on the outcome of rating. When doing hypothesis testing we first assume the null hypothesis that there is no relationship. We will now observe the interaction between these two predictors in our linear model that shall predict rating. In order to do this we must use the broom package! For more information about this very powerful package please visit https://cran.r-project.org/web/packages/broom/vignettes/broom.html. We use tidy() from the broom package to get nice summary statistics. If we have low p values, we can reject the null hypothesis of no relationship.
library(broom)
winedata = ungroup(winedata)
filter_winedata <- winedata %>%
filter(country %in% c("Chile","US","Spain","France","Italy"))
fit <- lm(avg_rating~avg_price*country, data=filter_winedata)
fit <- fit %>%
tidy()
fit
## # A tibble: 10 x 5
## term estimate std.error statistic p.value
## <chr> <dbl> <dbl> <dbl> <dbl>
## 1 (Intercept) 84.5 0.0652 1297. 0.
## 2 avg_price 0.0928 0.00257 36.0 7.15e-282
## 3 countryFrance 1.70 0.0746 22.8 2.89e-114
## 4 countryItaly 1.74 0.0761 22.9 1.59e-115
## 5 countrySpain 0.627 0.0851 7.37 1.72e- 13
## 6 countryUS 1.32 0.0693 19.1 6.63e- 81
## 7 avg_price:countryFrance -0.0258 0.00273 -9.47 2.98e- 21
## 8 avg_price:countryItaly -0.0317 0.00273 -11.6 3.09e- 31
## 9 avg_price:countrySpain -0.0197 0.00304 -6.48 9.49e- 11
## 10 avg_price:countryUS -0.0212 0.00264 -8.03 9.88e- 16
We can see that out p values are all very low, this means that all parameters are statistically significant. This is really exciting! Now lets see on average how much wine rating increases per dollar for each country. Below we extract the values from the table. All the values are relative to our baseline parameter which happens to be Chile in this case. Out of these five top wine producing countries, Chile gives you the most additional rating increase for each additonal dollar spent.
Chile <- as.numeric(fit[fit$term=="avg_price", 2])
France <- as.numeric(fit[fit$term=="avg_price", 2] + fit[fit$term=="avg_price:countryFrance", 2])
Italy <- as.numeric(fit[fit$term=="avg_price", 2] + fit[fit$term=="avg_price:countryItaly", 2])
Spain <- as.numeric(fit[fit$term=="avg_price", 2] + fit[fit$term=="avg_price:countrySpain", 2])
US <- as.numeric(fit[fit$term=="avg_price", 2] + fit[fit$term=="avg_price:countryUS", 2])
data.frame (
country = c('Chile', 'France', 'Italy', 'Spain', 'US'),
estimate = c(Chile, France, Italy, Spain, US))
## country estimate
## 1 Chile 0.09277537
## 2 France 0.06694332
## 3 Italy 0.06104759
## 4 Spain 0.07308096
## 5 US 0.07157604
As we have demonstrated with the above graphs, a picture is worth a thousand words. So lets see how valuable a map will be! Specifically, let’s make an interactive map displaying the origins of the wines in our dataset. To accomplish this task, we use the leaflet library (“https://rstudio.github.io/leaflet/shapes.html”), which allows for excellent interactive plotting in R. Depicting the countries is a little trickier however, we will need to import another third-party dataset that describes country borders. This information is available at “http://thematicmapping.org/downloads/TM_WORLD_BORDERS_SIMPL-0.3.zip” and we load it into a special object called a “Spatial Polygons Data Frame.”
# Download .shp file on the web:
download.file("http://thematicmapping.org/downloads/TM_WORLD_BORDERS_SIMPL-0.3.zip" , destfile="world_shape_file.zip")
unzip("world_shape_file.zip", overwrite = FALSE)
# Read the file with the rgdal library in R
library(rgdal)
## Loading required package: sp
## rgdal: version: 1.4-3, (SVN revision 828)
## Geospatial Data Abstraction Library extensions to R successfully loaded
## Loaded GDAL runtime: GDAL 2.1.3, released 2017/20/01
## Path to GDAL shared files: /Library/Frameworks/R.framework/Versions/3.5/Resources/library/rgdal/gdal
## GDAL binary built with GEOS: FALSE
## Loaded PROJ.4 runtime: Rel. 4.9.3, 15 August 2016, [PJ_VERSION: 493]
## Path to PROJ.4 shared files: /Library/Frameworks/R.framework/Versions/3.5/Resources/library/rgdal/proj
## Linking to sp version: 1.3-1
world_spdf=readOGR( dsn= getwd() , layer="TM_WORLD_BORDERS_SIMPL-0.3")
## OGR data source with driver: ESRI Shapefile
## Source: "/Users/nickbottiglieri/Documents/Sophomore/CMSC 320/FinalProject/CMSC320-Final-Project", layer: "TM_WORLD_BORDERS_SIMPL-0.3"
## with 246 features
## It has 11 fields
## Integer64 fields read as strings: POP2005
Now have our dataset that describes wines, and another dataset that describes countries and their locations on the map. We need to join these two together using the almighty join command! It is important to note that we join on the attribute “country”, which is shared among both datasets, in order to combine them together.
#Count the number of wines from each country
wine_country = winedata %>%
dplyr::group_by(country) %>%
dplyr::summarize(wine_count=n())
#prepare the wine data for joining
wine_country$country = as.character(wine_country$country)
wine_country$country[wine_country$country == "US"] ="United States"
#prepare the world data for joining
world_spdf@data = dplyr::rename(world_spdf@data,country=NAME)
world_spdf@data$country = as.character(world_spdf@data$country)
#Join!
winemap = right_join(wine_country, world_spdf@data, by="country")
world_spdf@data = winemap
Now that we have the combined wine and world data set, we are ready to create our map! Our map will have certain characteristics: A color palette depicted the number of wines from that area, labels identifying each country on the map and displaying the number of wines from there, and a legend that clearly explains this information.
pal <- colorNumeric(
palette = "YlOrRd",
domain = world_spdf@data$wine_count,
na.color = "transparent"
)
country_label=paste(world_spdf@data$country,"<br/>", "Number of wines: ", world_spdf@data$wine_count) %>%
lapply(htmltools::HTML)
# Final Map
leaflet(world_spdf) %>%
#Tiles are how the map is displayed. We also want to limit the zoom.
addTiles(options = tileOptions(minZoom = 2)) %>%
#Initialize the view
setView(lat=10,
lng=0,
zoom=2) %>%
#Display the countries and make them interactive on highlight
addPolygons(
fillColor = ~pal(wine_count),
stroke = FALSE,
fillOpacity = 0.9,
color="white",
weight = 0.3,
highlight = highlightOptions(weight = 5,
color = "white",
fillOpacity = 0.3,
bringToFront = TRUE),
label = country_label,
labelOptions = labelOptions(style = list("font-weight" = "normal", padding = "3px 8px"),
textsize = "13px",
direction = "auto")
) %>%
addLegend( pal=pal, values=~wine_count, opacity=0.9, title = "Wine count", position = "bottomleft")
Fantastic! This map clearly and visually shows where the wines in our dataset originated from. The country with the greatest number of wines in this dataset appears to be the US, with 42472 wines! This makes sense, considering that our dataset comes from a US company. France and Italy are also huge producers of wine, as are Chile and Argentina. Other countries, such as India and China, are very minimally represented in our dataset.